David Bieber
David Bieber
Possible entry points for configs: - fire.Fire's **kwargs - fire.Fire(name='example') - Flags - `example -- --verbose` - Decorators - @fire.decorators.SetParseFn(str)
#220 requests the ability to exclude certain objects from Fire's help, e.g. imported modules, and local variables. This could be accomplished through fire.Fire(excludes=[fire, logging]) or fire.Fire(commands_only=True). (Same as #47, or...
https://github.com/google/python-fire/issues/231 suggests being able to disable the printed output for use cases where the developer wants to do something with the returned component from Fire.
Adding to the list the ability to configure the order functions are displayed in the help screens https://github.com/google/python-fire/issues/298 PR: https://github.com/google/python-fire/pull/310
Thanks for the contribution! This looks good. What Python versions does this support?
We don't need the improvement to apply to Python 2, but we do need to make sure we don't break fire for Python 2.7.
Thanks for noticing the discrepancy. How about if we make Pipeline.run return a list [ingestion_output, digestion_output]. Then the stage outputs will be displayed on consecutive lines as in the guide's...
Thanks for opening the issue. Could you please provide a simple example?
Yes, you can work on this.
You're all set; it's merged.