Super Simple Processing of Environmental Variables
Project description
simple-env
Simple Processing of Environmental Variables
features
- automatic removal of quotes (
"
and'
) - automatic conversion of Booleans (
"true"
,"True"
, and"TRUE"
are converted intoTrue
) - automatic conversion of Integers
- automatic suggestion of typo corrections
usage
get variable
import simple_env as se
email_host = se.get("EMAIL_HOST")
# email_host is "smtp.gmail.com"
email_use_tls = se.get("EMAIL_USE_TLS")
# email_use_tls is True
email_port = se.get("EMAIL_PORT")
# email_port is 8080
suppress warnings
By default, simple env warns when it can't find a variable and offers an alternative suggestion if possible.
email_use_tls = se.get("USE_TLS")
prints
[simple-env] could not find "USE_TLS", did you mean "EMAIL_USE_TLS"?
check if environmental variable is set
import simple_env as se
hasState = se.has("STATE")
# hasState is True if the variable is set to null
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
simple-env-0.4.0.tar.gz
(3.0 kB
view details)
File details
Details for the file simple-env-0.4.0.tar.gz
.
File metadata
- Download URL: simple-env-0.4.0.tar.gz
- Upload date:
- Size: 3.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.50.0 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 17b107e64dd6be5bb4163bb47ba39bf48adac426f2682687436d3f3e8f9b4e6f |
|
MD5 | de005bb0b721d0972762c33a339fb15a |
|
BLAKE2b-256 | 167c99b21e80d9eb0f87241dc0e85c3c1656358c660594b801320d8ef3bdfb22 |