DEV Community

Discussion on: How do you make arguments in bash with python?

Collapse
 
orenovadia profile image
orenovadia

Not sure if your question is Django specific or not.
Either way, One of the best libraries out there to build command line applications/scripts in python is click. It is succinct, elegant and way more easy to learn than Python's builtin ArgumentParser.

Collapse
 
12944qwerty profile image
12944qwerty

No, it wasn't Django specific but click answered my question. Thanks!