Metadata-Version: 2.4
Name: as_envhelper
Version: 1.0.0
Summary: Enterprise-ready Python .env loader
Home-page: https://github.com/<username>/as_envhelper
Author: Aswin Kumar K
Author-email: aswinkumar06k@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# as_envhelper

Python library to load `.env` files with validation, multiline support, large file handling, Flask/Django integration.

## Quick Start
```python
from as_envhelper import load_env, get_env
load_env([".env"])
PORT = get_env("PORT",5000)
