Metadata-Version: 2.1
Name: FPL-data-loader
Version: 0.0.3
Summary: Tools for working with Fantasy Premier League data
Author-email: James Leslie <contactjamesleslie@gmail.com>
Project-URL: Homepage, https://github.com/James-Leslie/fpl-data
Project-URL: Bug Tracker, https://github.com/James-Leslie/fpl-data/issues
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: tqdm (==4.65.0)
Requires-Dist: jsonschema (>=4.17.3)
Requires-Dist: requests (>=2.29.0)

# FPL data loader
Python package for loading and transforming data from the Fantasy Premier Leage API.

## Local development
Make a virtual environment
```bash
cd fpl-data
conda env create -f environment.yml --prefix ./.env
```

Activate your environemt with:
```bash
conda activate ./.env
```

Create an editable install of the package
```bash
pip install --editable .
```
