Metadata-Version: 2.4
Name: env-easy
Version: 0.0.4
Summary: Environment variables, but easy
License-File: LICENSE
Author: danialcala94
Author-email: danielalcalavalera@gmail.com
Requires-Python: >=3.8,<3.14
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Dist: python-dotenv (>=1.0.1)
Project-URL: Homepage, https://github.com/Implosiv3/env-easy
Project-URL: Issues, https://github.com/Implosiv3/env-easy/issues
Description-Content-Type: text/markdown

# Environment variables, but easy

The easiest way to load and handle the environment variables.

Usage:

- `Environment.get_variable_from_dotenv(var)` 
  - Read the variable `varsimps` from the dotenv file, but not load it.
- `Environment.set_variable(var, 33)`
  - Set the value `33` in the `var` variable in our environment variables dict.
- `Environment.remove_variable(var)`
  - Remove the `var` variable from our environment variables dict.
- `Environment.get_variable(var)`
  - Get the value of the `var` variable in our environment variables dict.

See the `tests/test_env.py` for more examples.
