Metadata-Version: 2.4
Name: poolish-ds-data
Version: 0.1.1
Summary: Data files for Peddie School data science course
Author-email: Mark Sawula <msawula@peddie.org>
License: MIT
Project-URL: Homepage, https://sawula.github.io
Project-URL: Repository, https://github.com/sawula/ds-course-data
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: pandas
Requires-Dist: requests

# poolish-ds-data

Data files for the Peddie School data science course.

## Installation

```bash
pip install poolish-ds-data
```

## Usage

```python
import poolish_ds_data as ds

# Load a CSV as a pandas DataFrame
df = ds.load("epl2122.csv")

# See all available datasets
ds.list_datasets()

# Get the raw URL for any file (useful for images, GeoJSON, etc.)
url = ds.get_url("south-korea-with-regions_1516.geojson")
```
