Metadata-Version: 2.4
Name: EasyWorkEnv
Version: 0.3.2
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

myEnv = config.ENV
myAPiKey = config.APIKEY

# Nested information

myBddHost = config.BDD.Host
myBddDatabaseName = config.BDD.DATABASENAME
```
