Skip to main content
Pre-release

This release is a pre-release and may not be stable for production use.

user_config

Manage user configuration for python projects.

For easy and well-documented user-defined configuration.

Badges

Fallback order

  1. command line arguments

  2. user config files in ~/.config/<app>/config.<extension>

  3. global config files in /etc/xdg/<app>/config.<extension>

  4. default values

For directories on operating systems than linux, see: https://github.com/ActiveState/appdirs

Config format

Supported out of the box: ini

Other config formats can be supported via plug-ins.

Requirements

  • Linux, or Os X, or Windows (but not Windows Vista)

  • python 2.7 or newer (python 3.6 supported)

  • relatively new versions of setuptools and pip (version requirement to follow)

Examples

Simple configuration example

"""Usage example for user_config."""
from user_config import Config, Section, StringOption, IntegerOption

class MyConfig(Config):

    """This will be displayed in the configuration documentation."""

    application = "my_application"
    author = "me"

    class GeneralSection(Section):
        """General information."""
        name = StringOption(
            doc="your name",
            default="unknown person")
        age = IntegerOption(
            doc="your age",
            required=True)
    general = GeneralSection()
    class AddressSection(Section):
        """shipping address"""
        street = StringOption(
            doc="street including house number",
            required=True)
        city = StringOption(required=True)
    address = AddressSection(required=False)

if __name__ == "__main__":
    CONFIG = MyConfig()
    print("hello there, {}!".format(CONFIG.general.name))

Command line help text:

$ python examples/simple_example.py -h
usage: my_application [-h] [--generate-config] [--city CITY] [--street STREET]
                      [--age AGE] [--name NAME]

This will be displayed in the configuration documentation. Command line
arguments overwrite configuration found in:
/root/.config/my_application/config.cfg /etc/xdg/my_application/config.cfg

optional arguments:
  -h, --help         show this help message and exit
  --generate-config  print a complete configuration file with current settings
  --city CITY
  --street STREET    street including house number
  --age AGE          your age
  --name NAME        your name

Command line use with default value:

$ python examples/simple_example.py --age 211
hello there, unknown person!

Command line use without required value:

$ python examples/simple_example.py
Traceback (most recent call last):
  File "examples/simple_example.py", line 29, in <module>
    CONFIG = MyConfig()
  File "/git/user_config/user_config/user_config/__init__.py", line 622, in __init__
    self._elements[element].validate_data(self._data)
  File "/git/user_config/user_config/user_config/__init__.py", line 464, in validate_data
    self._elements[element].validate_data(self._data)
  File "/git/user_config/user_config/user_config/__init__.py", line 380, in validate_data
    self.element_name))
user_config.MissingData: no value was provided for required option age

Command line use:

$ python examples/simple_example.py --age 211 --name mystery_user
hello there, mystery_user!

Generate configuration file:

$ python examples/simple_example.py --generate-config
## This will be displayed in the configuration documentation.

[general]
## General information.

## your name
# name = unknown person
name = tamara

## your age
## REQUIRED
# age =
age =


[address]
## shipping address
## OPTIONAL_SECTION

## street including house number
## REQUIRED
# street =
street =

## REQUIRED
# city =
city =

Documentation

$ pip install -e ".[doc]"
$ python setup.py build_sphinx

Testing

  • pytest

  • pytest-cov

  • coverage

  • codacy-coverage

$ python -m pytest --cov=user_config --cov-report xml

Planned features

  • multi matching sections / wildcard sections

  • yaml config format

  • json config format

  • hook for overwriting config from database or other storage function

Release files for user-config 1.0a10

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for user-config 1.0a10
File Size Uploaded
user_config-1.0a10.tar.gz 17.9 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for user-config 1.0a10
File Interpreter ABI Platform
user_config-1.0a10-py2.py3-none-any.whl Python 3, Python 2 none any Details

Total release size: 31.7 kB

Release files / user_config-1.0a10.tar.gz

Download URL user_config-1.0a10.tar.gz
Size 17.9 kB
Tags Source
SHA-256 checksum
How to use checksums
fad55ef57d0970bdcb9601bd0b20736b6a78973acd55b9d4abda03631f6d2407
BLAKE2b-256 checksum
How to use checksums
7f6ef078de405c7a0a3e19f831e893f991fb4165a1700726af33cab9729c3998
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / user_config-1.0a10-py2.py3-none-any.whl

Download URL user_config-1.0a10-py2.py3-none-any.whl
Size 13.8 kB
Tags Python 2 Python 3
SHA-256 checksum
How to use checksums
31e1219e0db112627bcf561676f05578ce168d96429f61891850261bef851234
BLAKE2b-256 checksum
How to use checksums
2b881eb3baaf0ad10a1ce99f9be094228d3c097b289a13d22dc0e432e4d23768
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page