https://github.com/reppon97/soccer-data-api
An easy-to-use python web-scrap package that gets json soccer (football) data/stats.
https://github.com/reppon97/soccer-data-api
beautifulsoup football football-data leagues python python3 soccer webscraper webscraping
Last synced: 4 days ago
JSON representation
An easy-to-use python web-scrap package that gets json soccer (football) data/stats.
- Host: GitHub
- URL: https://github.com/reppon97/soccer-data-api
- Owner: reppon97
- License: mit
- Created: 2020-08-16T11:08:26.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-11-04T14:03:42.000Z (almost 4 years ago)
- Last Synced: 2025-09-14T08:18:42.303Z (24 days ago)
- Topics: beautifulsoup, football, football-data, leagues, python, python3, soccer, webscraper, webscraping
- Language: Python
- Homepage:
- Size: 28.3 KB
- Stars: 8
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# soccer-data-api
An easy-to-use python web-scrap package that gets json soccer (football) 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()
>>>soccer_data.eredivisie()
>>>soccer_data.russian_premier()
>>>soccer_data.english_championship()
```Leagues available: English Premier League, Spanish La Liga, French Ligue 1, German Bundesliga, Italian Serie A, Dutch Eredivisie, Russian Premier League, English Championship.