Argument expansion of objects
Project description
argspander
====
Python package that provides argument expansion of objects.
Why:
----
It was created to enable a sane way of entering arguments gathered from
argparse into your program, without the need to pass round an arguments object.
Usage:
----
>>> import argspander
>>> @argspander.expand
... def f(a, b, c):
... print "a: %s, b: %s, c: %s" % (a, b, c)
>>> f(3, 2, 1)
a: 3, b: 2, c: 1
>>> class Args(): # similar to the object return by argparse
... a = 3
... b = 2
... c = 1
>>> f(Args(), expand=True)
a: 3, b: 2, c: 1
====
Python package that provides argument expansion of objects.
Why:
----
It was created to enable a sane way of entering arguments gathered from
argparse into your program, without the need to pass round an arguments object.
Usage:
----
>>> import argspander
>>> @argspander.expand
... def f(a, b, c):
... print "a: %s, b: %s, c: %s" % (a, b, c)
>>> f(3, 2, 1)
a: 3, b: 2, c: 1
>>> class Args(): # similar to the object return by argparse
... a = 3
... b = 2
... c = 1
>>> f(Args(), expand=True)
a: 3, b: 2, c: 1
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
argspander-0.1.3.tar.gz
(2.9 kB
view details)
File details
Details for the file argspander-0.1.3.tar.gz
.
File metadata
- Download URL: argspander-0.1.3.tar.gz
- Upload date:
- Size: 2.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2165eef0dcacc47483b53624865b39227cfa94ad1019719172393e6353a752e0 |
|
MD5 | 9c6dea41c8658053bdb4dd3fb996da55 |
|
BLAKE2b-256 | 673cad0d295f1e5ea39c91d42d99935da50a09dff0d8a397fd77315358756b53 |