Skip to main content

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

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

argspander-0.1.3.tar.gz (2.9 kB view hashes)

Uploaded Source

Supported by

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