KO
|
EN
gitlite — search
Search
#python
#java
#python3
#arduino
#golang
#machine-learning
#rust
#html
#flask
#javascript
#seismology
#nodejs
consoleargs
★ 13
Open GitHub ↗
Pythonic argument parser for humans
Download README (.md)
Explore Similar Repositories
ZK_Practice
:
projects of zk practice
joule
:
No description available.
pyobjc_examples
:
Examples of using PyObjC to create Mac-native Python apps
instantgallery
:
Beautiful photo gallery for the web in one Unix command line. Generates static html and javscript files.
Backbone.apex
:
Backbone.js plugin for salesforce.com Apex REST
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
consoleargs
?
Download (.md)
Argument parser for humans ========================== This library implements simple argument parser, based on function signature and docstring messages Usage ===== Usage example: >>> from consoleargs import command >>> @command >>> def main(destination, name=None, verbose=0): >>> """ >>> :param destination: Where to look >>> :param name: Whot to search >>> :param verbose: How much to talk >>> """ >>> print destination, name, verbose