Re: cool things: python-fire

2018-11-16 Thread Edward K. Ream
On Sun, Nov 4, 2018 at 12:10 PM Matt Wilkie wrote: > Drop this in the "cool things seen out there" and "probably room for this > in my toolkit" bins: > > *Python-fire -* > *a library for automatically generating command line interfaces (CLIs) > from

Re: cool things: python-fire

2018-11-14 Thread john lunzer
Very interesting. Sounds like it removes a lot of the effort for a process I execute all the time. Another "one liner" I use for code disection is: from IPython.terminal.embed import InteractiveShellEmbed; ips = InteractiveShellEmbed(); ips() Although if I have pudb available I'll often

cool things: python-fire

2018-11-04 Thread Matt Wilkie
Drop this in the "cool things seen out there" and "probably room for this in my toolkit" bins: *Python-fire -* *a library for automatically generating command line interfaces (CLIs) from absolutely any Python object. * *...call Fire in your library,