Metadata-Version: 2.4
Name: EasyWorkEnv
Version: 0.2.0
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
Dynamic: license-file

# EasyWorkEnv

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

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

## Example usage

```python
from EasyWorkEnv import Config

config = Config(".env")

# Variables retrieved from the environment

myEnv = config.ENV
myAPiKey = config.APIKEY

# Nested information

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