Skip to main content

A package to streamline constant loading and initialisation

Project description

constload

Tests

constload is a package designed to simplify the process of loading settings into Python applications by providing certain functionality that is frequently reimplemented from project to project. This includes the ability to set defaults and set certain parameters as required.

Usage examples

When loading settings, you have a couple of options. You can provide pre-parsed data in a dictionary, or you have have data parsed for you from a filepath or from a string.

from constload import ConstantLoader

# Loading JSON from file
c = ConstantLoader("/path/to/settings/file.json")

# Loading JSON from string
c = ConstantLoader("{'hello': 'world'}")

# Using preloaded dict
c = ConstantLoader(your_dict)

It's also trivial to write your own loaders.

def my_loader(data):
    # Basic CSV loader
    my_dict = {}
    lines = data.split("\n")
    for line in lines:
        vals = line.split(",")
        my_dict[vals[0]] = vals[1:]
    return my_dict

c = ConstantLoader("/path/to/file.csv", loader=my_loader)

When you've got your data loaded, you can begin to extract values.

This is done by using tuples that contain paths to your values.

# ("user", "name") is equivalent to ["user"]["name"]
USER_NAME = c.required(("user", "name"))
USER_PETS = c.default(("user", "pets"), [])

Any changes made by c.default are automatically mirrored to the dictionary as they're being made. This means you can work directly with the dictionary, if you so choose.

c.default(("user", "pets"), [])
c.data["user", "name"]  # -> []

Installing

  • With YAML support - pip install constload[yaml]
  • Otherwise - pip install constload

Licence

Licenced under the Mozilla Public Licence 2.0. Licence text.

Support

If you need help, feel free to open an issue.

Contributing

Issues/pull requests are welcome. :)

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

constload-1.0.1.tar.gz (4.2 kB view details)

Uploaded Source

Built Distribution

constload-1.0.1-py3-none-any.whl (10.3 kB view details)

Uploaded Python 3

File details

Details for the file constload-1.0.1.tar.gz.

File metadata

  • Download URL: constload-1.0.1.tar.gz
  • Upload date:
  • Size: 4.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for constload-1.0.1.tar.gz
Algorithm Hash digest
SHA256 b0e22536a3568b64afbc994a59536125e0e8f4d129d5c80c1a0cdd161715cce8
MD5 10e5f0cff7b19f4b8a72dbdf2c6cfff7
BLAKE2b-256 216aa8343cb05b08651489f17c81e421a40d8aaa6cb2de50976dfdf7ebbf52b3

See more details on using hashes here.

File details

Details for the file constload-1.0.1-py3-none-any.whl.

File metadata

  • Download URL: constload-1.0.1-py3-none-any.whl
  • Upload date:
  • Size: 10.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for constload-1.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 c74803ed8c395b65e01cc617635c0d4797040a27b2b972fd726b616509b0bcaa
MD5 92d607ea508ac482a144a94332c6491b
BLAKE2b-256 4d575ac888732b609d396daf7236b6d49f1bf3733dec243c7f7d07b5db4035ff

See more details on using hashes here.

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