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)]),
'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.9.1.tar.gz
(8.8 kB
view details)
Built Distribution
File details
Details for the file pipen_annotate-0.9.1.tar.gz
.
File metadata
- Download URL: pipen_annotate-0.9.1.tar.gz
- Upload date:
- Size: 8.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.5.1 CPython/3.10.6 Linux/5.15.0-1038-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a04a851fa11d2b9c3edca860203084719465d160b558576bb29c23079ee387dc |
|
MD5 | f8d46fd9082b65bd171ef37163856509 |
|
BLAKE2b-256 | f32d1c81c3ebdea39fe302835947d2aa9912d7d8bce4fc9362f1fa5bb311c9c7 |
File details
Details for the file pipen_annotate-0.9.1-py3-none-any.whl
.
File metadata
- Download URL: pipen_annotate-0.9.1-py3-none-any.whl
- Upload date:
- Size: 9.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.5.1 CPython/3.10.6 Linux/5.15.0-1038-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d59a2cad34f4ce7bd8f0dba5c4ca43d5c128328685dab742628705dc2bb11732 |
|
MD5 | f619b1cf32ef0ac90e641049544dda5b |
|
BLAKE2b-256 | 408f66658df218a663af9ed34a8e491156595c596874e4cd872802872e3006a3 |