Python framework for commandline applications
Project description
Python framework for commandline applications
Quickstart
Feeling impatient? I like your style.
$ pip install battalion
In mycli.py script:
from battalion.api import *
class DB(object):
def __init__(self, state):
self.msg = state.msg
def myfunc(self):
return self.msg
@fixture
def db(state):
return DB(state)
class mycli(CLI):
"""
Toplevel program - mycli
"""
class State:
version = '0.0.1'
msg = ""
@command
def normal_function(cli, db, data=None): # NOTE: the "db" arg will be populated from the "db" fixture function
"""Takes in data and outputs new data"""
if data is None:
return db.myfunc()
else:
return data
@command
def greeting(cli, name="Hello"):
"""
Prints "Hello {name}!"
"""
print "Hello {0}!".format(name)
class myhandler(Handler):
"""
Organizational container of commands which can also add state variables
"""
class State:
version = '0.0.2' # Handlers can have their own versioning
cli = 'mycli'
msg = "World"
@command
def validate(cli, data):
return data
@command
def hello(cli, msg=None):
"""
Prints "Hello World!"
"""
name = cli.normal_function(data=msg)
name = cli.myhandler.validate(data=name)
cli.greeting(name=name)
if __name__ == "__main__":
mycli.main()
Then on the commandline
$ python mycli.py myhandler hello
> Hello World!
$ #or if installed as a console script via setuptools
$ mycli myhandler hello
> Hello World!
$ #also
$ mycli myhandler hello "Josh"
> Hello Josh!
$ mycli --help
> Toplevel program - mycli
>
> Usage:
> mycli [options] <command> [<args>...]
> mycli [options]
>
> Options:
> -h, --help Show this screen.
> --version Show version.
> -d, --debug Show debug messages
> --config=<CONFIG> The config filepath [default: ~/.mycli.cfg]
>
> Commands:
> greeting Prints "Hello {name}!"
> myhandler Organizational container of commands which can also add state variables
>
$ mycli myhandler hello --help
> Prints "Hello World!"
>
> Usage:
> hello [options]
> hello <msg>
>
> Options:
> --msg=<MSG> [default: None]
>
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
battalion-0.5.6.tar.gz
(9.2 kB
view details)
Built Distribution
File details
Details for the file battalion-0.5.6.tar.gz
.
File metadata
- Download URL: battalion-0.5.6.tar.gz
- Upload date:
- Size: 9.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4cec6ceeab9bd2084f2246e7d30e82466347e580c26d02bafa134b7f6e7b0f72 |
|
MD5 | 0a17281232ef493b77f82de4e8f1dbb9 |
|
BLAKE2b-256 | f80098431d3b9911f16d4d395d09773615b6866ae2b8d2528cef6cef889d5940 |
File details
Details for the file battalion-0.5.6-py2.py3-none-any.whl
.
File metadata
- Download URL: battalion-0.5.6-py2.py3-none-any.whl
- Upload date:
- Size: 14.4 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 33c6f58e647ab123781a9843f4728832f61d4d45bf6e67becc3ab8082c0b52be |
|
MD5 | 72d305778e60aa16b751aaafb1b2130b |
|
BLAKE2b-256 | 70b25d8ee10424c864d88c2a7d6b5399e25806c3dc048b48fd517cf3b1f64fec |