Metadata-Version: 2.1
Name: soccer-data-api
Version: 0.4.8
Summary: A Python web-scrap package to get soccer data/stats.
Home-page: https://github.com/reppon97/soccer-data-api
Author: Rejep Mammedov
Author-email: reppon97@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Description-Content-Type: text/markdown
Requires-Dist: beautifulsoup4 (==4.9.1)
Requires-Dist: chardet
Requires-Dist: idna
Requires-Dist: requests
Requires-Dist: urllib3

# soccer-data-api

A Python web-scrap package to get json soccer data/stats. All data belongs to https://www.sports-reference.com/

## Installation

python3 -m pip install soccer-data-api

### or

pip3 install soccer-data-api

### Usage

```
>>>from soccer_data_api import SoccerDataAPI

>>>soccer_data = SoccerDataAPI()

>>>soccer_data.english_premier()
>>>soccer_data.la_liga()
>>>soccer_data.ligue_1()
>>>soccer_data.bundesliga()
>>>soccer_data.serie_a()
```

Leagues available: English Premier League, Spanish La Liga, French Ligue 1, German Bundesliga, Italian Serie A


