Turns Python functions into CLI via Python annotations
Project description
GearUp
Have you ever had a moment, when the code is ready, you are eager to launch it,
you want to know if your new and shiny method works or not, just to realize you need to write
100+ lines of argparse
or click
?
Gear up and get ready to go!
Quick intro
Assume your project contains main.py
script with the following functions:
### main.py
def train(method: str, dataset: str, alpha: float):
<do stuff>
def test_accuracy(method: str, dataset: str):
<do testing>
def test_robustness(method: str):
<do testing>
Just add:
if __name__ == '__main__':
from gearup import gearup
gearup(train, test=dict(accuracy=test_accuracy, robustness=test_robustness))()
and you are ready to go!
> python main.py train method=resnet dataset=mnist alpha=0.01
> python main.py test accuracy method=resnet dataset=mnist
> python main.py test robustness method=resnet
Installation
As usual:
pip install gearup
or
pip install git+https://gitlab.com/craynn/gearup.git
How it works
gearup
, applied to a function, reads the signature of the function
and infers which arguments should be passed to it:
def f(x: int, y: int):
return x + y
When gear-uped function is called without arguments it reads sys.argv
,
alternatively, it can be called with a list of strings:
gearup(f)(['1', '2']) ### result = 3
gearup(f)() ### read from console arguments
gearup
relies on omegaconf
and PyYAML
:
- arguments are converted according to YAML rules, e.g.,
1
is parsed as an integer,1.0
--- as a float,'1'
--- as a string; - keyword arguments, like
classifier.alpha=1.0
, are parsed as adot-list
; - positional arguments (ones that do not contain
=
sign) are always passed to the function.
After that the underlying function is called: f(*args, **kwargs)
, passing only the arguments required by the function...
Yes, no flags, no aliases, just launch script like a python function (Haskell style)...
> python main.py 1 y=2
Notes:
- spaces should not appear between argument name,
=
and argument value:a=x
sets value of argumenta
tox
;a = x
is interpreted as three separate arguments: two positional:a
andx
, and a keyword one (with empty name and value);
- if you need to supply a value with a space character in it, use quotes:
python main.py x='a b c'
; - if you need to supply a value with
=
character in it, just specify argument name:python main.py x=a=b
or, better,python main.py x='a=b'
; - it is impossible to set one of variational positional arguments (
*args
) to a value, that contains=
character; - lists are valid values:
python main.py x=[1,2,3,4]
or (in case you want to add spaces)python main.py 'x=[1, 2, 3, 4]'
.
As a bonus, gearup.apply(f)(*args, **kwargs)
provides a Python-friendly way to pass down a subconfig.
import gearup
def method1(x: int, y: int): return x + y
def method2(x: int, z: float): return x / z
def main(method, x: int, **kwargs):
if method == 'method1':
method = method1
elif method == 'method2':
method = method2
else:
raise ValueError()
gearup.apply(method, x, **kwargs)
if __name__ == '__main__':
gearup.gearup(main)()
Commands
Sometimes you need to pack several functions into one script:
gearup(train, test)()
### or
gearup(train=train, test=test)()
### or
gearup(train, test=test)()
> python main.py train <arguments for train>
> python main.py test <arguments for test>
More precisely, if supplied with more than one argument or at least one keyword argument,
gearup
consumes the first CLI argument and
switches between provided functions.
Bonus: it is recursive!
def train(...): pass
def test_fast(...): pass
def test_slow(...): pass
gearup(
train,
test=dict(
fast=test_fast,
slow=test_slow
)
)()
> python main.py train method=resnet alpha=0.1
> python main.py test slow method=resnet
Note: when a non-keyword argument is passed to gearup
,
it reads __name__
attribute of this argument. For example, gearup(f1, f2)
is equivalent to
gearup(f1=f1, f2=f2)
.
Help
Just add help
:
> python examples/main.py help
Available commands:
train -> (method, power, alpha: float = 0.001, flag: bool = False)
Trains method with alpha.
test -> a -> (method)
Tests method...
b -> (method)
Undocumented test function.
The helper keyword can be overriden (or turned off) with:
gearup(...).without_helper()
gearup(...).with_helper(helper=None)
gearup(...).with_helper(helper='helpme')
Configuration file
gearup()
can be supplied with a configuration file.
gearup(...).with_config('/path/to/config.yaml')
The config will be merged with CLI arguments, with the latter having priority:
### config.yaml
point:
x: 1
y: 4
### main.py
def norm(point):
import math
return math.sqrt(point['x'] ** 2 + point['y'] ** 2)
if __name__ == '__main__':
import gearup
result = gearup(norm).with_config('config.yaml')()
print(result)
> python main.py
4.123105625617661
> python main.py point.x=3
5.0
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
Built Distribution
File details
Details for the file gearup-0.4.1.tar.gz
.
File metadata
- Download URL: gearup-0.4.1.tar.gz
- Upload date:
- Size: 8.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | be2fe51b86de48897d42c2f5f6ef85e009ed51e557feac46d3c49c23a96d2fb5 |
|
MD5 | 547f1c29374c30e4193f73895333d4be |
|
BLAKE2b-256 | 4cd0b77c1af1830555aa2d0666f6fc89bd3a0b5cdf469bc9d36cd86fe7cdd26d |
File details
Details for the file gearup-0.4.1-py3-none-any.whl
.
File metadata
- Download URL: gearup-0.4.1-py3-none-any.whl
- Upload date:
- Size: 8.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | da9a169f90e0f830e84434cb83a5101c16ec305ee6da156076e80511371613a2 |
|
MD5 | a094f45f42eec5f375a2be4eb9c0e198 |
|
BLAKE2b-256 | 36ac3d87f447fede2d8ccb579effc635041849920c0f7e33dc75699d3fa84cef |