Replies: 2 comments 1 reply
-
Hey, thanks for the kind words! It's been awesome seeing people using what started as a couple functions for my scripts. |
Beta Was this translation helpful? Give feedback.
0 replies
-
I like what I've seen so far but development is looking pretty quiet lately -- is this project being developed? I notice it's not mentioned here: https://github.com/shadawck/awesome-cli-frameworks?tab=readme-ov-file#python |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
After 8 years writing Python, I'm still using argparse. Click never convinced me, nor did Typer (or Fire). They ask me to learn how they work, they change the objects I decorate with, they make it hard or impossible to call the original functions programmatically (in Python, not from the CLI). They force system exits. They are not flexible enough for some of my use-cases.
argparse is super simple and flexible but makes my code quite verbose, I admit.
arguably seems like it fixes most of these pain points 🙂 I'll be sure to give it a try! Great job, and thanks for sharing with the community! 🚀
Beta Was this translation helpful? Give feedback.
All reactions