Skip to main content

A tool that makes creating command line flags super easy.

Project description

https://travis-ci.com/karx1/ezflags.svg?branch=master PyPI package Documentation Status

A tool that makes creating command line flags super easy.

Built on argparse, switching is no problem at all! You can even use the FlagParser as if it were a normal ArgumentParser for full integration with existing arguments.

Install with:

pip install ezflags

Here’s a simple example:

# main.py
import ezflags

parser = ezflags.FlagParser()
parser.add_flag('--flag', '-f', action=True, help="A demo flag.")

flags = parser.parse_flags()
print(flags.flag)

To integrate with ArgumentParser:

import ezflags

parser = ezflags.FlagParser()
parser.add_flag('--flag', '-f', action=True, help="A demo flag.")
parser.add_argument('--arg', '-a', help="A demo argument.")

args = parser.parse_args() # Flags are included, too!
print(args.flag)
print(args.arg)

This can be invoked as such:

python main.py --flag
# With ArgumentParser()
python main.py --flag --arg arg

View the full documentation here.

Supports

Supports Python 3.2 and up.

License

MIT license. See the LICENSE file for more details.

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

ezflags-1.1.4.tar.gz (2.8 kB view hashes)

Uploaded Source

Built Distribution

ezflags-1.1.4-py3-none-any.whl (3.5 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