Classy Env is a lightweight python package for managing environment variables in OOP way.
Project description
Classy Env
About
Classy Env is a lightweight Python package for managing environment variables in an OOP way.
Requirements
This package requires Python 3.11 or higher.
Installation
Classy Env is available on PyPI and can be installed by running the following command:
pip install classy-env
Usage
Create a ClassyEnv subclass and declare its attributes using the EnvVar function:
from classyenv import ClassyEnv, EnvVar
class Settings(ClassyEnv):
database_user = EnvVar("DB_USER")
database_password = EnvVar("DB_PASSWORD")
api_secret_key = EnvVar("SECRET_KEY")
The EnvVar function takes the name of the environment variable as an argument.
The Value of that variable will be assigned to the corresponding attribute.
Then, create an object of your subclass and access the environment variables through the object's attributes:
settings = Settings()
database_connection = connect(
user=settings.database_user,
password=settings.database_password,
)
At the object's creation, Classy Env will check if the environment variables
provided to the EnvVar functions are defined. If not, an exception will be raised.
Runtime validation
added in version 1.1.0
The validation mentioned above can also be triggered at class creation using the runtime_check class argument:
from classyenv import ClassyEnv, EnvVar
class Settings(ClassyEnv, runtime_check=True):
database_user = EnvVar("DB_USER")
database_password = EnvVar("DB_PASSWORD")
api_secret_key = EnvVar("SECRET_KEY")
Converters
added in version 1.2.0
The EnvVar function accepts an optional converter argument.
Converter must be a callable that accepts a string value.
If provided, converter will be called with the environment variable value when the attribute is being accessed, and the returned by converter value will be returned as attribute value:
from classyenv import ClassyEnv, EnvVar
class Settings(ClassyEnv):
database_port: int = EnvVar("DB_PORT", converter=int)
settings = Settings()
assert isinstance(settings.database_port, int)
Defaults
added in version 1.3.0
The EnvVar function accepts an optional default argument, which allows for specifying a default value, when corresponding environment variable is not defined:
import os
from classyenv import ClassyEnv, EnvVar
if "DB_PORT" in os.environ:
os.environ.pop("DB_PORT")
class Settings(ClassyEnv):
database_port = EnvVar("DB_PORT", default=3306)
settings = Settings()
assert settings.database_port == 3306
Mutating the ClassyEnv instances and subclasses
At this moment, mutating instances of the ClassyEnv class is not supported:
settings.database_user = "Roe_Jogan123" # this will raise an exception
Similarly, mutating the class attributes of the ClassyEnv subclasses is not supported:
Settings.database_user = "Roe_Jogan123" # this will raise an exception
License
This project is licensed under the terms of the MIT license.
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
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 classy_env-1.3.1.tar.gz.
File metadata
- Download URL: classy_env-1.3.1.tar.gz
- Upload date:
- Size: 6.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.12.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1d4afa8227c915b7acad2de0851c00d4cee466c72342927b67236bca5977cd29
|
|
| MD5 |
74eadba9578d8d7dfe8380813af0b882
|
|
| BLAKE2b-256 |
6ccd1aa0020ff8c85108c505bfb0522402e91d67c03398b1349465295a6d1121
|
File details
Details for the file classy_env-1.3.1-py3-none-any.whl.
File metadata
- Download URL: classy_env-1.3.1-py3-none-any.whl
- Upload date:
- Size: 6.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.12.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8d517be7e6932f9f334879522a69f64329274783d193dab43947771658d5a66d
|
|
| MD5 |
5c74751503e647b5e71e733fcbe3325a
|
|
| BLAKE2b-256 |
d73f0d2acfd4a588b1ff8094fb50f0c0b5b459c62df119e3c5737134cf5c8686
|