Metadata-Version: 2.1
Name: snowpredictor
Version: 1.0.1
Summary: A Python package to predict snow day chances using snowdaypredictor.com
Home-page: https://github.com/Roreos/SnowDayPredictor-API
Author: Rorello Development
Author-email: rorellodevelopment@gmail.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
Requires-Dist: fastapi>=0.104.1
Requires-Dist: uvicorn>=0.24.0
Requires-Dist: selenium>=4.15.2
Requires-Dist: pydantic>=2.5.1
Requires-Dist: pydantic-settings>=2.1.0
Requires-Dist: python-dotenv>=1.0.0
Requires-Dist: httpx>=0.25.2

# Snow Day Predictor API

A simple Python package that tells you if you're gonna get a snow day tomorrow by checking snowdaypredictor.com

## Getting Started

### What You Need
1. Windows computer (that's all we support right now, sorry Mac/Linux folks!)
2. Python 3.8 or newer
3. Google Chrome browser

### Installing the Package

Just run this in your command prompt:

```
pip install snowpredictor
```

# Basic Implementation:

```
from snowpredictor import predict

result = predict("13036")
print(result)
```
