A Python package to easily work with environment variables, inspired by the method used in Laravel framework to read the .env file.
Project description
EnvEase
A Python package to easily work with environment variables, inspired by the method used in Laravel framework to read the .env
file.
Installation
You can install envease
via pip:
pip install envease
Usage
if you only want to use a single .env
file where the python file is located then you can import the package like this:
from envease import env
then the usage is gonna be simple:
# inside the .env file
KEY="Hello, World"
print(env('KEY')) # prints the "Hello, World" message
else if you want to use other environment variable files than .env
you can use the package like this:
from envease import *
load_env_file('file_name')
print('KEY') # this prints the value inside the 'KEY' inside the 'file_name' file
you can even dynamically call different environment variable files
from envease import *
env_files = {
"first": ".first.env",
"second": ".second.env",
"third": ".third.env",
}
load_multiple(env_files)
print(dynamic_env('first', 'KEY')) # this will print the value addressed with 'KEY' inside the .first.env file
Notice: you can as well handle default values if the returned value is null!
print('KEY', 'default value') # this prints the value addressed with 'KEY' inside the environment variables. if it was null it will print 'default value' as a string
print(dynamic_env('first', 'KEY'), 'default value') # this prints the value addressed with 'KEY' inside the environment variables addressed with 'first' key in the dictionary. if it was null it will print 'default value' as a string
Contributing
Contributions are welcome! If you have any suggestions, feature requests, or bug reports, please open an issue or submit a pull request.
License
This project is licensed under the MIT License - see the LICENSE file for details.
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
File details
Details for the file envease-1.0.0.tar.gz
.
File metadata
- Download URL: envease-1.0.0.tar.gz
- Upload date:
- Size: 3.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e5bd63871a11822d6b46387739a314762a44dcda5c0e1fad27b79c1712867c92 |
|
MD5 | 5e996385907e361d02ec34b89fbe2ca2 |
|
BLAKE2b-256 | 998bdf0c8137d143df23b2f4fd394b33df9859bcd1dd73a02f7ab0d76d4c4045 |
File details
Details for the file envease-1.0.0-py3-none-any.whl
.
File metadata
- Download URL: envease-1.0.0-py3-none-any.whl
- Upload date:
- Size: 3.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a9327d2b06e1116c3844c941351899da0d078821f0a3cf4ba137ca83af394166 |
|
MD5 | 8df9944c5838d993504e38d7e8698019 |
|
BLAKE2b-256 | 406427f3c440af5d8ed3f5836b180cce2c02cbf15caac2f2a9216c527befa885 |