Skip to main content

Python library that simplifies parsing and creating Toml configuration files.

Project description

toml_config

Python library that simplifies parsing and creating Toml configuration files. Wrapper on toml

installation

To install a module run the command:

pip install toml_config

Using

To get started, import the module. Create an instance of the Config class by passing as a parameter the path to an existing file or the path where this file will be created.And then you can read parameters from the file and write parameters to the file.

Example. Creating a file and writing values.

main.py:

from toml_config.core import Config

my_config = Config('app.config.toml')
my_config.add_section('app').set(key='value',other_key=[1,2,3])

app.config.toml:

[app]
key = "value"
other_key = [ 1, 2, 3,]

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

toml_config-0.1.3.tar.gz (2.8 kB view hashes)

Uploaded Source

Built Distribution

toml_config-0.1.3-py3-none-any.whl (3.8 kB view hashes)

Uploaded Python 3

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