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
@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}
print(Process.annotated)
# prints:
{'Envs': {'ncores': {'attrs': OrderedDiot([('default', 1), ('atype', 'int')]),
'help': 'Number of cores',
'terms': OrderedDiot([])}},
'Input': {'infile': {'attrs': {'action': 'append',
'itype': 'file',
'nargs': '+'},
'help': 'An input file',
'terms': OrderedDiot([])},
'invar': {'attrs': {'action': 'append',
'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.1.0.tar.gz
(4.7 kB
view details)
Built Distribution
File details
Details for the file pipen_annotate-0.1.0.tar.gz
.
File metadata
- Download URL: pipen_annotate-0.1.0.tar.gz
- Upload date:
- Size: 4.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.3.2 CPython/3.10.6 Linux/5.15.0-1033-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c6761c216b0e6e8a41f2a10c107cee5c029d9e737d836c917aa47ae699eacc57 |
|
MD5 | b2ed1f2af5b903a887145172e856cd70 |
|
BLAKE2b-256 | 6a6cdeacff725bf7e96ada7b60266a108742d294b02d1d23b4143218d6fd8c72 |
File details
Details for the file pipen_annotate-0.1.0-py3-none-any.whl
.
File metadata
- Download URL: pipen_annotate-0.1.0-py3-none-any.whl
- Upload date:
- Size: 4.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.3.2 CPython/3.10.6 Linux/5.15.0-1033-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0d3cb8dce23d454d6a9d6e907d57669bcd8aefc31f8ee68721007a4db2169913 |
|
MD5 | 0911971574aef9e392a4c4af3c30cba5 |
|
BLAKE2b-256 | 1ec9db4d045477abf31fe09200718a41b61c02908bc30183bfc022c6ae784e26 |