Metadata-Version: 2.4
Name: milwaukee-restaurant-parser
Version: 0.1.3
Summary: Gets Milwaukee restaurant grades
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.14.3
Requires-Dist: python-dateutil>=2.9.0
Dynamic: license-file

# Milwaukee Restaurant Grade Parser

Gets Milwaukee restaurant grades

### Installation

`python3 -m venv .venv`

`source .venv/bin/activate`

`pip3 install .`

### Run

`python mke_restaurant_parser.py`

```
[MilwaukeeFacilitySearch(facility_id='4202335458016E20862581AA0054068E', name="WY'EAST PIZZA", address='5601 W VLIET ST', sub_type='Retail Food - Serving Meals')]
MilwaukeeFacilityInformation(facility_id='4202335458016E20862581AA0054068E', name="WY'EAST PIZZA", address='5601 W VLIET ST, MILWAUKEE, WI 53208-2123', score=99, last_inspection_date=datetime.date(2025, 10, 15), status='Permitted')
```

### 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

