environment
Project description
python-sync-env
easy load environment methods for python
basic usage
environment
NONE=のん
python file
from sync_env import SyncEnv
class Env(SyncEnv):
TEST = "test"
VALUE = None
NONE = None
env = Env()
any file
from any.file import env
assert env.NONE == "なん"
output
# ~~
if __name__ == "__main__":
print(env.TEST)
print(env.VALUE)
print(env.NONE)
test
None
のん
generate
generate script
from sync_env import SyncEnv, GenerateEnv
class EnvA(SyncEnv):
one = None
two = None
class EnvB(SyncEnv):
two = None
three = None
ge = GenerateEnv([
EnvA,
EnvB
])
ge.generate()
output
.env
one=
two=
three=
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
sync_env-1.0.4.tar.gz
(5.2 kB
view details)
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 sync_env-1.0.4.tar.gz.
File metadata
- Download URL: sync_env-1.0.4.tar.gz
- Upload date:
- Size: 5.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a0bef4700c60511a26fb91877a82ca161598bfbb3ad2736c2c8308db90642b90
|
|
| MD5 |
dd920c2c879630500450cd2cf585d1cc
|
|
| BLAKE2b-256 |
eed61dc31f7649120d7c79212363cdf8e11aa6837f8b59ac5e3476703112e30a
|
File details
Details for the file sync_env-1.0.4-py3-none-any.whl.
File metadata
- Download URL: sync_env-1.0.4-py3-none-any.whl
- Upload date:
- Size: 3.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
648e6b2dfca56370d91e13a7b3bd1ccbaa34264196964e40b238862b1fc92f20
|
|
| MD5 |
a0d1800b96f0cf137e698c3ccde44952
|
|
| BLAKE2b-256 |
ad280d60532b65b660e43c11650ce25e99f6b89537cc831730fcd5d3f0f449c7
|