Last updated:
0 purchases
clops 0.1.1
Installation
pip install clops
Usage
#! /usr/bin/env python3
"""Sample module docstring.
Args:
foo: The number of foos.
bar: The number of bars.
baz: The number of bazs.
"""
from clops import cli
_defaults = {
foo: 1,
bar: 2,
baz: 3,
}
@cli.UpdateDict(_defaults, __doc__)
def main():
pass
if __name__ == '__main__':
main()
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.