Metadata-Version: 2.1
Name: xgpy
Version: 0.0.1
Summary: A Python package to fetch xG data from understat.
Home-page: https://github.com/rkaahean/xgpy
Author: Ranjan Srinivas
Author-email: ranjan310151997@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: pytest
Requires-Dist: requests
Requires-Dist: pandas
Requires-Dist: beautifulsoup4


<p align="center">
  <h1 align="center">
    xgpy: a powerful python wrapper for football data
  </h1>
</p>
<p align="center">
   <a href="https://travis-ci.com/rkaahean/xgpy"><img src="https://travis-ci.com/rkaahean/xgpy.svg?branch=main"></a>
   <a href="https://xgpy.readthedocs.io/en/latest/"><img src="https://readthedocs.org/projects/xgpy/badge/?version=latest"></a>
</p>

## What is it?

**xgpy** is a Python package that aims to aggregate multiple football data sources into a single python module.
Using a single function, one can retrieve data from multple places, compare and perform a more complete analysis.


| Source | Status |
| -------|--------|
| understat.com | In Progress |
| fbref.com | Next |
| fantasy.premierleague.com | Planned |
| whoscored.com | Planned |

## Installation

The source code is currently [here.](https://github.com/rkaahean/xgpy)

The simplest way to install the package is by pip.
```
pip install xgpy
```

### Troubleshooting

There is a known issue of pandas not installing correctly. Please make sure you have pandas
installed before installing xgpy.

```
pip install pandas
pip install xgpy
```


