Async cli application builder.
Project description
precept
Toolbox to create async command line applications.
Install
Install with pip: $ pip install precept
Usage
Basic:
from precept import Precept, Command, Argument
class MyCli(Precept):
"""
The name of the command will be the name of the class.
Class docstring is added as cli description.
"""
@Command(Argument('argument', type=str))
async def my_command(self, argument):
print(argument)
def cli():
MyCli().start()
if __name__ == '__main__':
cli()
For local testing: Set entry_points.console_script
to my-cli = my_package.my_cli:cli
in setup.py
and $ pip install -e .
Then call: $ my-cli my-command hello
-> print hello
License
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
precept-0.3.1.tar.gz
(14.4 kB
view details)
File details
Details for the file precept-0.3.1.tar.gz
.
File metadata
- Download URL: precept-0.3.1.tar.gz
- Upload date:
- Size: 14.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.28.1 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6e8549cb3629415e79fb24508a4dfeab7a524e2b0b170e21c897b67127f9ea8d |
|
MD5 | eadafbf494c082a400ccd4feef256bf1 |
|
BLAKE2b-256 | 9cf3106b98fdfb9b38e80a0ee5d4322b025c6a2dc755c6a43bcea9f3c5d9f5e1 |