An easy and Pythonic way to create your POSIX command line interface
Project description
An easy and Pythonic way to create your POSIX command line
ChangeLog
version 0.4.4:
change auto balance function, fix the issue that won’t work for this case
"""
Usage:
cp [options] <source>... <target>
Options:
-R
"""
Summary
How do you define your command line interface? Write a parse by yourself or spend hours learning optparse / argparse , and modify both code side and document every time you update the interface?
Life is short, man! You can simply do it this way:
"""
My copy script
Usage:
cp.py [options] <source_file> <target_file>
cp.py [options] <source_file>... <target_directory>
Options:
-h -? --help print this screen
--version print the version of this script
-v --verbose print more information while running
"""
from docpie import docpie
args = docpie(__doc__)
print(args)
Now run it
$ python cp.py a.txt b.txt c.txt /tmp
{'--': False,
'--help': False,
'--verbose': False,
'--version': False,
'-?': False,
'-h': False,
'-v': False,
'<source_file>': ['a.txt', 'b.txt', 'c.txt'],
'<target_directory>': '/tmp',
'<target_file>': None}
Write a __doc__, pass it to a function, DONE! Isn’t it simple?
Installation
Install release version:
pip install docpie
Install nightly/dev version:
pip install git+https://github.com/TylerTemp/docpie.git@dev
docpie has been tested with Python:
2.6, 2.7, pypy-2.0, pypy-2.6
3.2, 3.3, 3.4, 3.5, pypy3-2.4
You can run test suit by python setup.py test
Get Start!
Interested? Visit Wiki and get start!
Or you can try it in your browser
Why docpie?
docpie can greatly reduce the work you need to be done for command-line interface. What you see is what you get. Every time you only need to update your document, and keep the code unchanged.
See here for more reasons.
Reference
the code in bashlog.py is taken from tornado, and tracemore.py is from python Cookbook
Many examples & tests are from docopt.
License
docpie is released under MIT-License
Donate
If you like this project, you can buy me a beer so I can make it better!
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
Built Distribution
File details
Details for the file docpie-0.4.4.tar.gz
.
File metadata
- Download URL: docpie-0.4.4.tar.gz
- Upload date:
- Size: 66.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c17cad09698a03e00174df1cc21090af88668f07ba854954fe81065873258bb6 |
|
MD5 | 6972788270fd18bb37ffd38805e9f3f0 |
|
BLAKE2b-256 | 83429b0b88affd76778b2dd88a15d930c8d84e45e20fe843c5305ec5b35bc443 |
File details
Details for the file docpie-0.4.4-py2.py3-none-any.whl
.
File metadata
- Download URL: docpie-0.4.4-py2.py3-none-any.whl
- Upload date:
- Size: 70.1 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c868a465dfc69b8b71a564761ff69d42652268672fafd58f0f596a47e481e809 |
|
MD5 | 82721dae5635cc0a5349c32462cf45fd |
|
BLAKE2b-256 | 200787705358040cdedef5c79463f756798be498a88de43096b6e07362158e0b |