Skip to main content

argunparse is intended to perform approximate reverse of argparse

Project description

package version from PyPI build status from Travis CI build status from AppVeyor grade from Codacy test coverage from Codecov license

The argunparse is intended to perform an approximate reverse of what argparse does. In short: generating string of command-line arguments from a dict and/or a list.

requirements

Python >= 3.5.

No other runtime dependencies.

However, building and running tests requires packages listed in test_requirements.txt.

Tested on Linux, OS X and Windows.

installation

For simplest installation use pip:

pip3 install argunparse

usage

Simple example of how argunparse works:

import argunparse

options = {
    'v': True,
    'long-flag': True,
    'o': 'out_file.txt',
    'log': 'log_file.txt'
    }
args = {
    'in_file.txt'
    }

unparser = argunparse.ArgumentUnparser()
print(unparser.unparse(*args, **options))

for more examples see examples.ipynb notebook.

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

argunparse-0.1.0.tar.gz (13.3 kB view hashes)

Uploaded Source

Built Distribution

argunparse-0.1.0-py3-none-any.whl (5.6 kB view hashes)

Uploaded Python 3

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