Skip to content
forked from DasIch/argvard

Python framework for command line applications

License

Notifications You must be signed in to change notification settings

untitaker/argvard

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

About

Python framework for command line applications

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 88.6%
  • Shell 11.4%