Metadata-Version: 2.1
Name: pynenv
Version: 0.2.6
Summary: General helper functions for environments
Author: Nik Sheridan
Author-email: niksheridan@duck.com
Requires-Python: >=3.12,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: loguru (>=0.7.2,<0.8.0)
Requires-Dist: pyaml (>=24.4.0,<25.0.0)
Requires-Dist: pyjson (>=1.4.1,<2.0.0)
Description-Content-Type: text/markdown

# Pynenv

A collection of common helper functions for your environment.

## Install

```bash
pip install pynenv
```

## Example Useage

```python
from pynenv.environment import get_environment_variable, json2dict, yaml2dict

my_env_var = get_environment_variable('HOME')
json_dict = json2dict('test_json.json')
yaml_dict = yaml2dict('test_yaml.yaml')
```

## Build

* Adjust version in ```pyproject.toml```
* Run ```poetry build```
* Run ```poetry publish```

