Drop-in substitute for argparse that reads config files
Project description
configparse
Summary
configparse is a drop-in-place replacement for python's argparse module
which reads configuration files in addition to command line arguments.
Features
If the configuration directory exists, all of files in <config_directory>/<prog>/ are read.
All files matching ~/.<prog>* are read.
Files are treated according to their extension: config.json will be parsed as JSON,
myconf.yml will be parsed as YAML.
If a file does not have an extension, it will be parsed according to the default file format. This is preset to JSON, but can be changed by applications.
Configuration Directory
On Windows, the configuration directory looked up in %AppData%.
On any other OS, it is looked up from $XDG_CONFIG_HOME.
If the variable is not present (on any OS), files are read from ~/.config.
Supported Formats
The following file formats are currently supported:
- JSON (.json)
- YAML (.yml)
- INI (.ini)
- TOML (.toml)
Feel free to submit a pull request adding more formats. See CONTRIBUTING.md for an overview, if you already have a parser it should be very simple.
Using configparse
As a library
If you are an application developer who wants to use the library,
there is one entry point: the ConfigParser class,
which is also aliased to Parser for convenience.
You can treat a ConfigParser instance exactly as you would an ArgumentParser
instance (as long as you pass prog to the constructor).
Note that this means that parse_args will parse sys.argv
in addition to parsing configuration files. If you don't want this behavior,
pass an empty list to parse_args like this: args = parser.parse_args([]).
If you want to change the default file format (e.g. for files named ~/.myprog
without an extension), use parser.set_default_ext(ext), where 'ext' is the
file extension for your format.
Differences from argparse
The only API differences are as follows:
- the name of the parser is
ConfigParser, notArgumentParser - the
progkeyword is required for initializingConfigParser(so that it knows where to look for configuration files)
That's it. Everything else is done automatically.
Example
from configparse import Parser
parser = Parser(prog='myprogram')
parser.add_argument('--short', '-s', help='use short format')
args = parser.parse_args()
As an end user
You can put a configuration file in any of the following locations:
~/.config/<prog>/~/.<prog>*
See Features for a full overview.
Example
Assume that the program basic takes the arguments '--short' and '--long'.
$ cat ~/.config/basic/config.yml
short: true
$ basic
You chose the 'short' option.
$ rm ~/.config/basic/config.yml
$ echo 'long: true' > ~/.basic.yml
$ basic
You chose the 'long' option.
Limitations
- Only long options will be applied. If a short option is present in a config file,
it will be treated as if it were a long option, i.e. not looked up.
For example, assuming some backend returns the dictionary
{'s': 'some value'}:
from configparse import Parser
p = Parser(prog='myprog')
p.add_argument('-s', '--short')
args = p.parse_args()
assert args.short is None
assert args.s == 'some value'
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file configparse-0.1.5.tar.gz.
File metadata
- Download URL: configparse-0.1.5.tar.gz
- Upload date:
- Size: 6.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/42.0.1 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
60c13a99aaa76207425f00ad997d7849894596ab8c21c6b7e7c3cbf75135932c
|
|
| MD5 |
ce9f2f52ce602134aa3393036e54e26e
|
|
| BLAKE2b-256 |
ec1b78550818f8cae3a9bae3e1e4632e849c6e1edb9917746b05dcc2827c0baa
|
File details
Details for the file configparse-0.1.5-py3-none-any.whl.
File metadata
- Download URL: configparse-0.1.5-py3-none-any.whl
- Upload date:
- Size: 7.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/42.0.1 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ddeb41045dc2fa1fe34f4c52ade06dbb69e0c8822256f43522b6fe2e29bec57a
|
|
| MD5 |
5aeddbe7ded8baf86de10b5fcbb2100f
|
|
| BLAKE2b-256 |
5bee0bf6d28248c0cf5b5820405693952f611ce6696b65d289cd1bc1781969f7
|