Argvard

Framework for command line applications


License
Apache-2.0
Install
pip install Argvard==0.1.0-dev

Documentation

Argvard

https://travis-ci.org/DasIch/argvard.png?branch=master https://coveralls.io/repos/DasIch/argvard/badge.png?branch=master https://badge.fury.io/py/Argvard.png

Argvard is a framework for command line applications inspired by Flask and docopt, available under the Apache License, Version 2.0. It is designed to be simple and intuitive to use without being constraining.

from argvard import Argvard

application = Argvard()

@application.main('name')
def main(context, name):
    print(u'Hello, %s!' % name)

if __name__ == '__main__':
    application()

If you want to learn more take a look at the documentation.