Metadata-Version: 2.4
Name: aemo_to_tariff
Version: 0.7.2
Summary: Convert spot prices from $/MWh to c/kWh for different networks and tariffs
Author: Ian Connor
Author-email: Ian Connor <ian@powston.com>
License: MIT
Project-URL: Homepage, https://github.com/powston/aemo_to_tariff
Project-URL: Repository, https://github.com/powston/aemo_to_tariff
Project-URL: Issues, https://github.com/powston/aemo_to_tariff/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pytz
Dynamic: author
Dynamic: license-file
Dynamic: requires-python

# AEMO to Tariff

This is a Python library that converts AEMO (Australian Energy Market Operator) data to tariff data for various Australian energy distributors.

## Supported Distributors
- Ausgrid
- Endeavour Energy
- Energex
- Evoenergy
- SA Power Networks
- TasNetworks

## Installation
You can install the library using pip:

```
pip install aemo-to-tariff
```

## Usage
Here's an example of how to use the library:

```python
from aemo_to_tariff import convert

# Convert AEMO data to Ausgrid tariff data
ausgrid_tariff = convert('ausgrid', aemo_data)

# Convert AEMO data to Energex tariff data 
energex_tariff = convert('energex', aemo_data)
```

## Contributing
If you would like to contribute to this project, please feel free to submit a pull request. We welcome contributions of all kinds, including bug fixes, new features, and documentation improvements.

## License
This project is licensed under the MIT License. See the [LICENSE](LICENSE) file for more information.
