Skip to main content

Yet Another Python Configuration

Project description

Yapconf

https://img.shields.io/pypi/v/yapconf.svg https://img.shields.io/travis/loganasherjones/yapconf.svg https://codecov.io/gh/loganasherjones/yapconf/branch/master/graph/badge.svg Documentation Status Updates

Yet Another Python Configuration. A simple way to manage configurations for python applications.

Yapconf allows you to easily manage your python application’s configuration. It handles everything involving your application’s configuration. Often times exposing your configuration in sensible ways can be difficult. You have to consider loading order, and lots of boilerplate code to update your configuration correctly. Now what about CLI support? Migrating old configs to the new config? Yapconf can help you.

Features

Yapconf helps manage your python application’s configuration

  • JSON/YAML config file support

  • Argparse integration

  • Environment Loading

  • Bootstrapping

  • Migrate old configurations to new configurations

Quick Start

To install Yapconf, run this command in your terminal:

$ pip install yapconf

Then you can use Yapconf yourself!

from yapconf import YapconfSpec

# First define a specification
my_spec = YapconfSpec({"foo": {"type": "str", "default": "bar"}}, env_prefix='MY_APP_')

# Then load the configuration in whatever order you want!
# load_config will automatically look for the 'foo' value in
# '/path/to/config.yml', then the environment, finally
# falling back to the default if it was not found elsewhere
config = my_spec.load_config('/path/to/config.yml', 'ENVIRONMENT')

print(config.foo)
print(config['foo'])

You can also add these arguments to the command line very easily

import argparse

parser = argparse.ArgumentParser()

# This will add --foo as an argument to your python program
my_spec.add_arguments(parser)

cli_args = vars(parser.parse_args(sys.argv[1:]))

# Now you can load these via load_config:
config = my_spec.load_config(cli_args, '/path/to/config.yml', 'ENVIRONMENT')

For more detailed information and better walkthroughs, checkout the documentation!

Documentation

Documentation is available at https://yapconf.readthedocs.io

Credits

This package was created with Cookiecutter and the audreyr/cookiecutter-pypackage project template.

History

0.2.2 (2018-03-28)

  • Fixed Python2 compatibility error (#35)

0.2.1 (2018-03-11)

  • Added item to YapconfItemNotFound (#21)

  • Removed pytest-runner from setup_reuires (#22)

0.2.0 (2018-03-11)

  • Added auto kebab-case for CLI arguments (#7)

  • Added the flag to apply environment prefixes (#11)

  • Added choices to item specification (#14)

  • Added alt_env_names to item specification (#13)

0.1.1 (2018-02-08)

  • Fixed bug where None was a respected value.

0.1.0 (2018-02-01)

  • First release on PyPI.

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

yapconf-0.2.2.tar.gz (38.3 kB view details)

Uploaded Source

Built Distribution

yapconf-0.2.2-py2.py3-none-any.whl (19.9 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file yapconf-0.2.2.tar.gz.

File metadata

  • Download URL: yapconf-0.2.2.tar.gz
  • Upload date:
  • Size: 38.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for yapconf-0.2.2.tar.gz
Algorithm Hash digest
SHA256 552ef96ca201e153d00eca133962ad1993f2ca08cbd4b81095903d74a88a9275
MD5 840b0a0f7409bb1858daa1259ef21a30
BLAKE2b-256 aa55ae307be61d9aba3c0b0776bf2ae54d9b90bd0af188ceecf5f3f1f211812e

See more details on using hashes here.

File details

Details for the file yapconf-0.2.2-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for yapconf-0.2.2-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 fe7a0fbfd738e1d18505d42f7bae53ce5b0fa62e5d3573bf342d7780a37f6321
MD5 741cc5eabf33bab7bdb446097f19c801
BLAKE2b-256 ddc0f2ad78442b35861693dd3ada243229d6314b68402213f28ffe71c5c0c701

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page