Environment Wrapped TOML
Project description
TOMLenv
Environment wrapped TOML.
Getting Started
Install the library
Using pip:
$ pip install tomlenv
Using pipenv:
$ pipenv install tomlenv
Using poetry:
$ poetry add tomlenv
Basic Usage
Assuming you have a config.toml
file in your project root:
token = "dev"
debug = false
And this environment set:
TOMLENV_DEBUG=true
Create your configuration dataclass and parse configuration into it:
import tomlenv
class Config:
token: str = ""
enabled: bool = False
config = Config()
parser = tomlenv.Parser()
parser.load(config)
# You can now access the fields of your fully typed Config class
# that contains values from a TOML config file and the environment.
#
# For example:
token = config.token
debug = config.debug
print(token) # prints "dev"
print(debug) # prints True
Configuration
To configure the location of your toml file, set TOMLENV_CONF_FILEPATH
.
For example if your config file is in configs/config.toml
relative to the project root, then set TOMLENV_CONF_FILEPATH=configs/config.toml
Tests
This project uses Poetry and GNU Make.
Run tests from the project root with:
$ make test
To get a coverage report:
$ make cov
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
tomlenv-0.2.1.tar.gz
(4.3 kB
view hashes)