Metadata-Version: 2.4
Name: EasyWorkEnv
Version: 0.3.4
Summary: This is a package that simplifies environment variable management.
Author-email: Galley Hugo <galleyhugo@icloud.com>
License: GPL-3.0-or-later
Project-URL: HomePage, https://github.com/Hugo-Galley/EasyWorkEnv
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: PyYAML>=6.0.2
Dynamic: license-file

# EasyWorkEnv

This is a Python package that simplifies the management of environment variables.

## Compatibility
### Supported environment file formats
- `.json`
- `.env`
- `.yaml`

## Example usage

```python
from EasyWorkEnv import Config

# Creation of the object containing all your environment variables

config = Config(".env")

# Variables retrieved from the environment

my_env = config.ENV
my_api_key = config.API_KEY

# Nested information

my_bdd_host = config.BDD.Host
my_bdd_database_name = config.BDD.DATABASE_NAME
```
