Python package to store your application settings. Validators are built-in!
Reason this release was yanked:
Not maintaned. Consider use https://pypi-hypernode.com/project/pydantic-settings/
Project description
pysettings
Pysettings is a Python package to store your application settings. Compared to some settings managers, this package has been inspired by Django Rest Frameworks validators where you can validate the user input beforehand.
That simplifies your code because settings don't need to be validated in your application logic. Available features are:
- Store your application settings without using global objects.
- Extend your settings using a
BaseSettings
class. The resulting class can be validated using asettings.is_valid()
method. - Fields are represented with an
Option
field that takesvalidators
as parameter. It's possible to set adefault
value if the option is not set by users. - Out of the box validators:
not_null
,is_https_url
. - It's possible to add custom validators as functions.
Requirements
- Python 3.7+
Getting Started
pysettings
is available on PyPI:
$ pip install pysettings-validator
Create your Settings
from pysettings.base import BaseSettings
from pysettings.options import Option
from pysettings.validators import is_https_url
# Class definition
class Settings(BaseSettings):
url = Option(validators=[is_https_url])
description = Option()
# Use settings in your application
settings = Settings()
settings.url = "https://example.com"
settings.description = "A shiny Website!"
settings.is_valid() # returns (True, [])
Settings API
settings
instance doesn't allow to set attributes not defined as Option
. If you
try to set a setting that is not defined, a OptionNotAvailable
exception is raised:
class Settings(BaseSettings):
description = Option()
# Use settings in your application
settings = Settings()
settings.url = "https://example.com" # raise `OptionNotAvailable`
is_valid()
exposes a raise_exception=True
kwarg in case you prefer to not raise
exceptions in your code:
class Settings(BaseSettings):
url = Option(validators=[is_https_url])
# Use settings in your application
settings = Settings()
settings.url = "http://example.com"
settings.is_valid() # raise ConfigNotValid exception
settings.is_valid(raise_exception=False) # return (False, [{'url': [{'is_https_url': 'The schema must be HTTPS'}]}])
Create a Custom Validator
# app/validators.py
from pysettings.exceptions import ValidationError
def is_a_boolean(value):
if isinstance(value, bool):
return True
else:
raise ValidationError("The value must a Boolean")
# app/settings.py
from .validators import is_a_boolean
class Settings(BaseSettings):
dry_run = Option(validators=[is_a_boolean])
description = Option()
# app/main.py
settings = Settings()
settings.dry_run = "Yes"
settings.description = "Dry run mode!"
settings.is_valid() # raises ConfigNotValid exception
Test your Settings (pytest)
If you need to change some of your settings during tests, you can use the following snippet to restore the previous settings after each test:
# tests/fixtures/settings.py
from pysettings.base import BaseSettings
from pysettings.options import Option
from pysettings.validators import is_https_url
# Class definition
class TestSettings(BaseSettings):
url = Option(validators=[is_https_url])
description = Option()
# Use settings in your application
settings = TestSettings()
settings.url = "https://example.com"
settings.description = "A shiny Website!"
settings.is_valid()
# tests/conftest.py
import copy
import pytest
from .fixtures import settings as config
@pytest.fixture
def settings():
previous_config = copy.deepcopy(config.settings)
yield config.settings
config.settings = previous_config
# tests/test_settings.py
def test_settings_changes_1(settings):
assert settings.description == "A shiny Website!"
settings.description = "Test 1"
assert settings.description == "Test 1"
def test_settings_changes_2(settings):
assert settings.description == "A shiny Website!"
settings.description = "Test 2"
assert settings.description == "Test 2"
Development
We accept external contributions even though the project is mostly designed for personal needs. If you think some parts can be exposed with a more generic interface, feel free to open a GitHub issue and to discuss your suggestion.
Coding Guidelines
We use flake8 as a style guide enforcement. That said, we also use black to
reformat our code, keeping a well defined style even for quotes, multi-lines blocks and other.
Before submitting your code, be sure to launch black
to reformat your PR.
Testing
tox
is used to execute the following test matrix:
lint
: launchesflake8
andblack --check
to be sure the code honors our style guidelinepy{3.7,3.8,3.9,3.10,3.11}
: launchespy.test
to execute tests with different Python versions.
To launch the full test matrix, just:
$ tox
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
File details
Details for the file pysettings-validator-0.3.0.tar.gz
.
File metadata
- Download URL: pysettings-validator-0.3.0.tar.gz
- Upload date:
- Size: 9.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e25c1c30e4fd217035955e0ff52a306b26b6a04449ced7ac46134ddb4e2340ae |
|
MD5 | af1753c209884ec52a5b08e7aaef53d2 |
|
BLAKE2b-256 | c7de6f3d915989a8f5b7f95a73793fec466454abc97dd5edeb562d0a887c47db |
File details
Details for the file pysettings_validator-0.3.0-py3-none-any.whl
.
File metadata
- Download URL: pysettings_validator-0.3.0-py3-none-any.whl
- Upload date:
- Size: 7.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a52a0bbd3f35fa9f079a7b951d661857f44f2bec24d783d6c014593035875fbf |
|
MD5 | 3fc2dcc08b337ff8cb6026b9e4684e92 |
|
BLAKE2b-256 | 9cbf0a91ef0db3ba350ada317e035d2becd765373654c1a4ed90d4d2050bcc38 |