A python module that help you have a type safety on enviroment variable
Project description
typed-env
A python module that help you have a type safety on enviroment variable (on runtime)
Documentation
timelessnesses.TypedEnv
A parent class that will help you ensure type safetiness on your enviroment variable.
Usage:
from timelessnesses import typed_env
import datetime
class MyDotEnv(typed_env.TypedEnv):
# define your enviroment variable name and it's type (default value is optional and typing.Optional is also supported)
AMONG_US: bool = True
DISCORD_TOKEN: str
DATETIME: datetime.datetime = datetime.datetime.now()
NICE_DICTIONARY: typing.Dict[str, int] = {"a": 1, "b": 2}
DAMN_LIST: typing.List[int] = [1, 2, 3]
BALLS_KIND: BallsEnum # oh no! TypedEnv doesn't support my custom class!
# don't worry you can implement your own converter!
a = MyDotEnv()
a.add_validator(BallsEnum, lambda x: BallsEnum(int(x)))
a.configure(typed_env.Method.dotenv, dotenv=".env") # you have options to either get only from dotenv or os.environ or both!
"""
a.get_env(typed_env.Method.all, dotenv="path_to_.env") # this fetch all the variable from both dotenv and os.environ
a.get_env(typed_env.Method.env) # this fetch all the variable from os.environ
a.get_env(typed_env.Method.dotenv, dotenv="path_to_.env") # this fetch all the variable from dotenv
NOTE: for dotenv/all method you have to supply dotenv argument
"""
a.raise_error_on_unknown_env = False # if this set to true any excessive enviroment variable will raise an error (default is True)
a.load() # let it do the work!
TypedEnv supports normal types like str or int and also typing.Dict and typing.List etc. But it also supports custom type by adding a validator, you are also allowed to overwrite the default validator by using TypedEnv.add_validator method.
Check out more examples at tests folder!
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 timelessnesses_typed_env-1.0.3.tar.gz.
File metadata
- Download URL: timelessnesses_typed_env-1.0.3.tar.gz
- Upload date:
- Size: 4.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.11.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
962c53dc4343f8c0122e3162df7f5669fc6973fa73c5717bd1eed1fd2be08c76
|
|
| MD5 |
d118ebad9f2e8b29f17a035c65927d06
|
|
| BLAKE2b-256 |
312b57b1ca46a069c38264ad9a10cf5abdacdd8d4445f7068aa0256a8ddc28f6
|
File details
Details for the file timelessnesses_typed_env-1.0.3-py3-none-any.whl.
File metadata
- Download URL: timelessnesses_typed_env-1.0.3-py3-none-any.whl
- Upload date:
- Size: 5.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.11.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3994e8a33a9db6cbc1d0324dcbfcaa4f5e7260924f312119822ec6c77bf40b9f
|
|
| MD5 |
d47ac0f2da2f312d3babaa0e7a5f4534
|
|
| BLAKE2b-256 |
282b70e73a545bdd94e15381948a35277b60350b86e46a8eccf64dce445ad642
|