Metadata-Version: 2.4
Name: milwaukee-mmsd-parser
Version: 0.1.3
Summary: Parses MMSD current statuses, including Deep Tunnel and water treatement plant capacities
Author-email: Jason Fry <your.email@example.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.txt
Requires-Dist: beautifulsoup4>=4.6.1
Requires-Dist: aiohttp>=3.6.0
Dynamic: license-file

# Milwaukee, Wisconsin Milwaukee Metropolitan Sewerage District Parser

Parses MMSD current statuses, including Deep Tunnel and water treatement plant capacities

### Installation

`python3 -m venv .venv`

`source .venv/bin/activate`

`pip3 install .`

### Run

`python mke_mmsd_parser.py`

```
[MMSDFacilityInformation(name='Deep Tunnel', current_million_gallons=8, maximum_million_gallons=432), MMSDFacilityInformation(name='South Shore Water Reclamation Facility', current_million_gallons=61, maximum_million_gallons=150), MMSDFacilityInformation(name='Jones Island Water Reclamation Facility', current_million_gallons=63, maximum_million_gallons=330)]
```

### Publishing

Get API key from [PyPI](https://pypi.org/)

`source .venv/bin/activate`

`python3 -m pip install --upgrade build twine`

`python3 -m build`

`python3 -m twine upload dist/*`, using your API key

