Skip to main content

A helper function for setting up an argparse parser.

Project description

Provides some common setup actions for argparse. Import and be happy.

Specifically: init_parser() sets up help, version, and docstring options for a program. Help and version are easy to get with argparse normally; printing your docstring is the interesting part. It returns a parser with these basic options configured. After that, you’ll want to your application-specific customizations.

print_and_exit() is an argparse action for printing an arbitrary string - specifically, in this case, a program’s docstring.

Usage

>>> __version__ = "1.0"
>>> __date__ = "Date of this version's release"
>>> #__doc__ is your docstring, which almost every module should have
>>> import basic_argparse
>>> parser = basic_argparse.init_parser("my awesome program", __version__,
>>>                                     __date__, __doc__)

======== Versions ========

  • Version 1.1: Added sample usage to readme

  • Version 1.0: Extracted from UNT_to_IPA.py

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

basic_argparse-1.1.zip (5.9 kB view hashes)

Uploaded Source

Built Distribution

basic_argparse-1.1-py27-none-any.whl (3.8 kB view hashes)

Uploaded Python 2.7

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