Smart Settings
Project description
Smart Settings
Easy to use, flexible and versitile settings.
It can be serialized to json format, and even encrypted.
The updatable
feature makes it suitable for value bindings.
Installation
pip install smartsettings
Usage
Use SmartSettings
directly
Code
import smartsettings as ss
# Add attributes on initialization
settings = ss.SmartSettings(name="settings", first_value=100)
# Add attribute directly
settings.second_value = 3.14
# Add attribute with indexing operator
settings["third_value"] = True
# Add subsettings
settings.fourth_value = ss.SmartSettings(name="subsettings", value=200)
print(f"{settings = }")
# Serialize settings to json string
# The `indent` keyword argument is passed to `jsonpickle.encode`
settings_string = ss.to_string(settings, indent=2)
print("settings_string =", settings_string)
# Deserialize settings from json string
loaded_settings = ss.from_string(settings_string)
print(f"{loaded_settings = }")
# The 2 settings are equal
print(loaded_settings == settings)
# Non-existing attribute with indexing operator returns `None`
print(f"{settings['fifth_value'] = }")
# Non-existing attribute raises `AttributeError`
try:
print(f"{settings.fifth_value = }")
except AttributeError as ae:
print(ae)
Output
settings = {'name': 'settings', 'first_value': 100, 'second_value': 3.14, 'third_value': True, 'fourth_value': {'name': 'subsettings', 'value': 200}}
settings_string = {
"py/object": "smartsettings.smartsettings.SmartSettings",
"name": "settings",
"first_value": 100,
"second_value": 3.14,
"third_value": true,
"fourth_value": {
"py/object": "smartsettings.smartsettings.SmartSettings",
"name": "subsettings",
"value": 200
}
}
loaded_settings = {'name': 'settings', 'first_value': 100, 'second_value': 3.14, 'third_value': True, 'fourth_value': {'name': 'subsettings', 'value': 200}}
True
settings['fifth_value'] = None
'SmartSettings' object has no attribute 'fifth_value'
Subclass SmartSettings
Code
import smartsettings as ss
class ChildSettings(ss.SmartSettings):
def __init__(self, name: str, value: int) -> None:
self.name = name
self.value = value
class ParentSettings(ss.SmartSettings):
def __init__(self, name: str, children: list[ChildSettings]) -> None:
self.name = name
self.children = children
parent_settings = ParentSettings(
name="parent",
children=[
ChildSettings(name="first child", value=100),
ChildSettings(name="second child", value=200),
ChildSettings(name="third child", value=300),
],
)
print(f"{parent_settings = }")
# Serialize settings to json string
# The `indent` keyword argument is passed to `jsonpickle.encode`
parent_settings_string = ss.to_string(parent_settings, indent=2)
print("parent_settings_string =", parent_settings_string)
# Deserialize settings from json string
loaded_parent_settings = ss.from_string(parent_settings_string)
print(f"{loaded_parent_settings = }")
# The 2 settings are equal
print(loaded_parent_settings == parent_settings)
Output
parent_settings = {'name': 'parent', 'children': [{'name': 'first child', 'value': 100}, {'name': 'second child', 'value': 200}, {'name': 'third child', 'value': 300}]}
parent_settings_string = {
"py/object": "__main__.ParentSettings",
"name": "parent",
"children": [
{
"py/object": "__main__.ChildSettings",
"name": "first child",
"value": 100
},
{
"py/object": "__main__.ChildSettings",
"name": "second child",
"value": 200
},
{
"py/object": "__main__.ChildSettings",
"name": "third child",
"value": 300
}
]
}
loaded_parent_settings = {'name': 'parent', 'children': [{'name': 'first child', 'value': 100}, {'name': 'second child', 'value': 200}, {'name': 'third child', 'value': 300}]}
True
With encryption
Code
import smartsettings as ss
# Add attributes on initialization
settings = ss.SmartSettings(name="settings", value=100)
print(f"{settings = }")
# Serialize and encrypt settings to string
settings_string = ss.to_string(settings, crypto_key="secret")
print("settings_string =", settings_string)
# Decrypt and deserialize settings from string
loaded_settings = ss.from_string(settings_string, crypto_key="secret")
print(f"{loaded_settings = }")
# The 2 settings are equal
print(loaded_settings == settings)
Output
settings = {'name': 'settings', 'value': 100}
settings_string = GmllNjgIP9KhgWIWiv8pva6r9vVCFldz3NKv9sbAdy+gpRDU1MuO4Rcs9NoooD/yXudNWWPTbWmjbfIaxRv/VZ6bIy6Gsn/LAZJl6K3PgWHcIP3v6rZWZGMuH9yquTHf
loaded_settings = {'name': 'settings', 'value': 100}
True
Json settings file
Code
from pathlib import Path
import smartsettings as ss
# Settings file path
JSON_SETTINGS_FILE_PATH = Path("settings/settings.json")
# Default settings
default_settings = ss.SmartSettings(name="default_settings", value=0)
# Add attributes on initialization
settings = ss.SmartSettings(name="settings", value=100)
print(f"{settings = }")
# Serialize settings to json file
# The `backup_num` keyword argument controls the number of backup files
# When `backup_num=None` (default), the number of backup files is unlimited
# When `backup_num=0`, there is no backup file at all
# The `indent` keyword argument is passed to `jsonpickle.encode`
ss.to_file(
settings,
JSON_SETTINGS_FILE_PATH,
backup_num=2,
indent=2,
)
# Deserialize settings from json file
# In case the settings file does not exist, the `default_settings` is loaded.
loaded_settings = ss.from_file(
JSON_SETTINGS_FILE_PATH,
default_settings=default_settings,
)
print(f"{loaded_settings = }")
# The 2 settings are equal
print(loaded_settings == settings)
Output
settings = {'name': 'settings', 'value': 100}
loaded_settings = {'name': 'settings', 'value': 100}
True
Encrypted settings file
Code
from pathlib import Path
import smartsettings as ss
# Encrypted settings file path
ENCRYPTED_SETTINGS_FILE_PATH = Path("settings/settings.txt")
# Default settings
default_settings = ss.SmartSettings(name="default_settings", value=0)
# Add attributes on initialization
settings = ss.SmartSettings(name="settings", value=100)
print(f"{settings = }")
# Serialize and encrypt settings to text file
# The `backup_num` keyword argument controls the number of backup files
# When `backup_num=None` (default), the number of backup files is unlimited
# When `backup_num=0`, there is no backup file at all
ss.to_file(
settings,
ENCRYPTED_SETTINGS_FILE_PATH,
crypto_key="secret",
backup_num=2,
)
# Decrypt and deserialize settings from text file
# In case the settings file does not exist, the `default_settings` is loaded.
loaded_settings = ss.from_file(
ENCRYPTED_SETTINGS_FILE_PATH,
crypto_key="secret",
default_settings=default_settings,
)
print(f"{loaded_settings = }")
# The 2 settings are equal
print(loaded_settings == settings)
Output
settings = {'name': 'settings', 'value': 100}
loaded_settings = {'name': 'settings', 'value': 100}
True
Settings update
Code
import smartsettings as ss
# Settings
settings = ss.SmartSettings(name="settings", value=100)
print(f"{settings = }")
# New settings
new_settings = ss.SmartSettings(name="new_settings", value=200)
print(f"{new_settings = }")
# Update `settings` with `new_settings`
# `<<` operator has the same effect as `_update_with` method
# `settings._update_with(new_settings)`
settings << new_settings
print(f"{settings = }")
# The 2 settings are equal
print(settings == new_settings)
Output
settings = {'name': 'settings', 'value': 100}
new_settings = {'name': 'new_settings', 'value': 200}
settings = {'name': 'new_settings', 'value': 200}
True
Dictionary settings
Code
import smartsettings as ss
# Dictionary settings
settings = dict(name="settings", first_value=100)
settings["second_value"] = 3.14
settings["third_value"] = True
# Dictionary subsettings
settings["fourth_value"] = dict(name="subsettings", value=200)
print(f"{settings = }")
# Serialize settings to json string
# The `indent` keyword argument is passed to `jsonpickle.encode`
settings_string = ss.to_string(settings, indent=2)
print("settings_string =", settings_string)
# Deserialize settings from json string
loaded_settings = ss.from_string(settings_string)
print(f"{loaded_settings = }")
# The 2 settings are equal
print(loaded_settings == settings)
Output
settings = {'name': 'settings', 'first_value': 100, 'second_value': 3.14, 'third_value': True, 'fourth_value': {'name': 'subsettings', 'value': 200}}
settings_string = {
"name": "settings",
"first_value": 100,
"second_value": 3.14,
"third_value": true,
"fourth_value": {
"name": "subsettings",
"value": 200
}
}
loaded_settings = {'name': 'settings', 'first_value': 100, 'second_value': 3.14, 'third_value': True, 'fourth_value': {'name': 'subsettings', 'value': 200}}
True
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
smartsettings-0.2.0.tar.gz
(9.4 kB
view details)
Built Distribution
File details
Details for the file smartsettings-0.2.0.tar.gz
.
File metadata
- Download URL: smartsettings-0.2.0.tar.gz
- Upload date:
- Size: 9.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | db26ed3f3493b182eeb82d25487b3d94c4d3f992b4aa455b567f1d1d7a93e032 |
|
MD5 | 9b2ea8803892fc1994a4be52c0ff2eea |
|
BLAKE2b-256 | 3b7e4fc152d0f8d0e19fd77e7e15def44c88321764df49e43ac96f98b8cbc8b7 |
File details
Details for the file smartsettings-0.2.0-py3-none-any.whl
.
File metadata
- Download URL: smartsettings-0.2.0-py3-none-any.whl
- Upload date:
- Size: 7.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 05de892b045302ffc669c658ec50477004e54c2ff99221b4ce1a4e986bf2c174 |
|
MD5 | 9da41e57ed4e17a53f434744726e0e06 |
|
BLAKE2b-256 | b19e23ea4ca29d74f4883ec58232e26d53a229f684825db427e2a168af6a9979 |