Skip to main content

The tiny opinionated config loader.

Project description

NanoConf

NanoConf is a tiny, opinionated, and easy to use configuration library for Python. It is designed to be used in small to medium sized projects where a full blown configuration library is overkill.

Installation

pip install nanoconf

Usage

from nanoconf import NanoConf
# or if NanoConf if too long of a name
from nanoconf import NC

# Create a new configuration object
config = NanoConf("/path/to/config.nconf")

# Access config values using dictionary-style access
print(config["key"])

# Or use dotted attribute access (recommended for cleaner code)
print(config.key)

# Both methods work interchangeably
assert config["key"] == config.key

# Nested values support both access methods too
print(config.database.host)  # attribute access
print(config["database"]["host"])  # dictionary access

# Convert to plain Python dict (recursively)
plain_dict = config.to_dict()
# All nested NanoConf objects become regular dicts

Configuration File Format

NanoConf uses a simple configuration file format that is easy to read and write. Each File is YAML formatted and contains a single top-level dictionary. Even though the top-level must be a dictionary, you can nest dictionaries and lists as deep as you want. Each config file also must have the .nconf extension. This ensures that NanoConf will only load files that are meant to be configuration files.

key: value
test: 1
overriden: false
things:
    - thing1
    - thing2
    - thing3
top:
    v1: 1
    middle:
        v2: 2
        inner:
            v3: 3
            deep:
                v4: 4

If you have multiple config files you want to load into a single config object, you can put them all in the same directory and pass that directory to NanoConf. NanoConf will automatically place sub-files by their filename as an attribute of the parent file. The contents of that file will be accessible as you'd expect under the corresponding filename attribute.

<project root>
conf_dir
  |__ cfg1.nconf
  |__ cfg2.nconf
  |__ cfg3.nconf
# load an entire directory
proj_config = NanoConf("/path/to/conf_dir")
print(proj_config.cfg1.test)

Or you can import additional files or directories from within any config file by using the _import keyword.

# main.nconf
_import:
    - /path/to/project/more_config
key: value
test: 1
<project root>
main.nconf
more_config
  |__ subcfg1.nconf
  |__ subcfg2.nconf
  |__ subcfg3.nconf
# loading the main config file will also load the sub-configs
proj_config = NanoConf("/path/to/project/main.nconf")
print(proj_config.more_config.subcfg1.test)

Notice how the directory structure was also maintained in the attribute path. This makes it easier to find the file that a value came from.

Environment Variables

NanoConf supports environment variables either as overrides to existing values or as additions to the loaded config. Envars are evaluated on a per-file basis, so you can have different envars for different config files. The way we manage this is by having a special _envar_prefix key in the config file. Note: NanoConf will not modify the case of any environment varable name or value. It is up to you to ensure that the case is correct.

_envar_prefix: myapp
key: value
overrideme: original
export myapp_overrideme=changed
config = NanoConf("/path/to/config.nconf")
print(config.overrideme)

You can also pass complex data structures as JSON strings in environment variables.

export myapp_abc='{"a": 1, "b": 2, "c": 3}'
config = NanoConf("/path/to/config.nconf")
print(config.abc.b)

Converting to Plain Dictionaries

NanoConf objects can be recursively converted to plain Python dictionaries using the to_dict() method. This is useful for serialization, passing to libraries that expect plain dicts, or API responses.

config = NanoConf("/path/to/config.nconf")

# Convert entire config to plain dict
plain = config.to_dict()

# All nested NanoConf objects become regular dicts
assert isinstance(plain, dict)
assert not isinstance(plain, NanoConf)

# Works with deeply nested structures
if "database" in config:
    db_dict = config.database.to_dict()
    # Can now be serialized to JSON, YAML, etc.

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

nanoconf-1.1.0.tar.gz (9.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

nanoconf-1.1.0-py3-none-any.whl (4.8 kB view details)

Uploaded Python 3

File details

Details for the file nanoconf-1.1.0.tar.gz.

File metadata

  • Download URL: nanoconf-1.1.0.tar.gz
  • Upload date:
  • Size: 9.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for nanoconf-1.1.0.tar.gz
Algorithm Hash digest
SHA256 46974962b776761b50996b35463fdfcd3e4262650d0aa44b69c69feb5895b4cb
MD5 5c3462bba34b77d1b3336af4a7aa93d0
BLAKE2b-256 98da5c0b45b58930e9624e7d0308a9e011e76bac1f3ec7b39acc41aad86476ea

See more details on using hashes here.

File details

Details for the file nanoconf-1.1.0-py3-none-any.whl.

File metadata

  • Download URL: nanoconf-1.1.0-py3-none-any.whl
  • Upload date:
  • Size: 4.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for nanoconf-1.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 d3c72059ad0c7609dadb87834b8f92ba1c5fcaa6631422e68a8214a86f0a8d07
MD5 754c2aec97b81a67e04d7f1d9bec54e3
BLAKE2b-256 e2a3a6d2939d1a7a3a505bbe2b3e5b047710927b6887bf3f880c5a8105ef236e

See more details on using hashes here.

Supported by

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