Created
February 15, 2021 00:45
-
-
Save dbieber/ab8ed63ebbd7afad3c1f19c70028ae31 to your computer and use it in GitHub Desktop.
A simple Python Fire CLI using a shebang line
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env -S python3 -m fire | |
def hello(name): | |
return f'Hello {name}!' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment