Use docstring to annotate pipen processes
Project description
pipen-annotate
Use docstring to annotate pipen processes
Installation
pip install -U pipen-annotate
Usage
from pprint import pprint
from pipen import Proc
from pipen_annotate import annotate
class Process(Proc):
"""Short description
Long description
Input:
infile: An input file
invar: An input variable
Output:
outfile: The output file
Envs:
ncores: Number of cores
"""
input = "infile:file, invar"
output = "outfile:file:output.txt"
args = {'ncores': 1}
annotated = annotate(Process)
# prints:
{'Envs': {'ncores': {'attrs': OrderedDiot([('default', 1), ('atype', 'int')]),
'help': 'Number of cores',
'terms': OrderedDiot([])}},
'Input': {'infile': {'attrs': {'action': 'extend',
'itype': 'file',
'nargs': '+'},
'help': 'An input file',
'terms': OrderedDiot([])},
'invar': {'attrs': {'action': 'extend',
'itype': 'var',
'nargs': '+'},
'help': 'An input variable',
'terms': OrderedDiot([])}},
'Output': {'outfile': {'attrs': {'default': 'output.txt',
'otype': 'file'},
'help': 'The output file',
'terms': OrderedDiot([])}},
'Summary': {'long': 'Long description\n',
'short': 'Short description'}}
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
pipen_annotate-0.5.2.tar.gz
(6.8 kB
view details)
Built Distribution
File details
Details for the file pipen_annotate-0.5.2.tar.gz
.
File metadata
- Download URL: pipen_annotate-0.5.2.tar.gz
- Upload date:
- Size: 6.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.4.1 CPython/3.10.6 Linux/5.15.0-1034-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9effecea55da2b0475a81653c83a2780ffbae8bad5e9f4796ecc4e732a30b3e0 |
|
MD5 | 4a21126d28bf1165e301c8aba699be0e |
|
BLAKE2b-256 | 1057b1e8ddcc631fdd44a433d245809eac9b9c6ac0459aa5f8afede56681d2e0 |
File details
Details for the file pipen_annotate-0.5.2-py3-none-any.whl
.
File metadata
- Download URL: pipen_annotate-0.5.2-py3-none-any.whl
- Upload date:
- Size: 7.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.4.1 CPython/3.10.6 Linux/5.15.0-1034-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c4522d49b6404d3d2fffca9b34bf82a631f4090ce4c6d5b8ebb9b5fc90c3e369 |
|
MD5 | 31136c2449d50afad2cc981f0fe7f30c |
|
BLAKE2b-256 | a306e0330cdf94552a17e76728a9ee553edf8028ba50603bcd42a053421b1c80 |