Simple python package to use a json file as a configuration file
Project description
PyConfigurathon
A python package for making it easy to use and manage configuration files in your python applications.
Installation
Using poetry
`poetry add pyconfigurathon`
Using pip
`pip install pyconfigurathon`
How to use
The recommended way to use this module is to have a module dedicated to your configuration. Eg. config.py
Use with an absolute path to the configuration file:
from pyconfigurathon.configurator import configurator
def get_config(config_name, file_path="/path/to/file/settings.json"):
cf = configurator(file_path)
return cf.get(config_key=config_name)
Use with a path to the configuration file relative to the config.py file
import os
from pyconfigurathon.configurator import configurator
def get_config(config_name, file="settings.json"):
conf = configurator(os.path.join(os.path.dirname(__file__), file))
return conf.get(config_key=config_name)
Please note that these are only examples to help you get started faster. There are other ways to use this package.
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pyconfigurathon-0.1.2.tar.gz.
File metadata
- Download URL: pyconfigurathon-0.1.2.tar.gz
- Upload date:
- Size: 3.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.0.10 CPython/3.8.6 Linux/5.8.0-7630-generic
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8ce65c8300d3acfa9010c237239d1386f81da64e7581ad1b5c32b868876d4c64
|
|
| MD5 |
49e1636fc1bf6b6a7b99a23f31861dee
|
|
| BLAKE2b-256 |
242a0160019ae38cee214798faf111921a793d329dd2af6ab3514756153abbfb
|
File details
Details for the file pyconfigurathon-0.1.2-py3-none-any.whl.
File metadata
- Download URL: pyconfigurathon-0.1.2-py3-none-any.whl
- Upload date:
- Size: 3.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.0.10 CPython/3.8.6 Linux/5.8.0-7630-generic
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b8ddc9dc384d4a086f63a41779de8a649598e332f2094f320bafe9343d838ee1
|
|
| MD5 |
e9b47d579ea577fa2d1529933030d062
|
|
| BLAKE2b-256 |
6f12ea65edf42b531a694f273729aab350f7897923f1eedfe069832c179b3303
|