Skip to main content

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 a dot-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 argument a to x;
    • a = x is interpreted as three separate arguments: two positional: a and x, 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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

gearup-1.1.0.tar.gz (12.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

gearup-1.1.0-py3-none-any.whl (9.5 kB view details)

Uploaded Python 3

File details

Details for the file gearup-1.1.0.tar.gz.

File metadata

  • Download URL: gearup-1.1.0.tar.gz
  • Upload date:
  • Size: 12.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.2

File hashes

Hashes for gearup-1.1.0.tar.gz
Algorithm Hash digest
SHA256 50852060b6a1a610684005b31f3207a345b6f1fc0ad41dc7b5ea5f44690d823b
MD5 65953f5a374ff0dfeb754d154bec950f
BLAKE2b-256 9f915db362f940fd54773e40906051f1854fa62b8d0d83ec781275d2943f460c

See more details on using hashes here.

File details

Details for the file gearup-1.1.0-py3-none-any.whl.

File metadata

  • Download URL: gearup-1.1.0-py3-none-any.whl
  • Upload date:
  • Size: 9.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.2

File hashes

Hashes for gearup-1.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 dc5101cee571dfbc81d8c953b5feefac69dfa3fc829ace1a262fd9325a070f85
MD5 9b2b026ae3bdc603c94aa1b936140fec
BLAKE2b-256 d1a28db4ede3ff8462a3088c4e7799654205f56fed28a33d566e287b71af4baa

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page