Metadata-Version: 2.2
Name: snowday-calculator
Version: 0.1.0
Summary: A package for calculating snow day predictions.
Home-page: https://github.com/danielkorkin/snowday-calculator
Author: Daniel Korkin
Author-email: daniel.d.korkin@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests
Provides-Extra: dev
Requires-Dist: sphinx; extra == "dev"
Requires-Dist: sphinx-rtd-theme; extra == "dev"
Requires-Dist: sphinx-autodoc-typehints; extra == "dev"
Requires-Dist: pytest; extra == "dev"
Requires-Dist: pre-commit; extra == "dev"
Requires-Dist: ruff; extra == "dev"
Requires-Dist: black; extra == "dev"
Requires-Dist: yamlfmt; extra == "dev"
Requires-Dist: doc8; extra == "dev"
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: provides-extra
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# snowday-calculator

A Python package to predict the chance of a snow day based on zipcode, snow days, and school type.

## Installation

```bash
pip install snowday-calculator
```

## Usage

```python
from snowday_calculator import predict, SchoolType

# Example: Predict the chance for zipcode "12345"
result = predict("12345", snowdays=2, schooltype=SchoolType.PUBLIC)
print("Chance today:", result.chance_today())
print("Chance tomorrow:", result.chance_tmrw())
```
