Metadata-Version: 2.1
Name: dotenvplus
Version: 0.0.1
Summary: Python library that handles interactions from Discord POST requests.
Author-email: AlexFlipnote <root@alexflipnote.dev>
License: MIT
Keywords: discord,http,api,interaction,quart,webhook,slash
Requires-Python: >=3.6.0
Description-Content-Type: text/markdown
License-File: LICENSE
Provides-Extra: dev
Requires-Dist: pyright; extra == "dev"
Requires-Dist: flake8; extra == "dev"
Requires-Dist: toml; extra == "dev"
Provides-Extra: maintainer
Requires-Dist: twine; extra == "maintainer"
Requires-Dist: wheel; extra == "maintainer"
Requires-Dist: build; extra == "maintainer"

# dotenvplus
Reads key-value pairs from a .env file and supports multiple values with dynamic interpolation.

The values returned by the DotEnv object is treated like a dictionary, so you can use it like a normal dictionary.
Some of the usual dictionary methods are also supported like `.items()`, `.keys()`, `.values()`, etc.

Goal is to make it easy to use environment variables in your code, while also supporting multiple values.

## Installing
> You need **Python >=3.6** to use this library.

```bash
pip install dotenvplus
```

## Usage
```env
# .env

KEY=value
```

```python
# main.py

from dotenvplus import DotEnv

# Create a DotEnv object
env = DotEnv()

Call it like a dictionary
env["KEY"]
>>> "value"
```
