A simple python package for extracting real-time soccer/football data from diverse online sources, providing essential statistics and insights.
pip install EasySoccerData
git clone https://github.com/manucabral/EasySoccerData.git
cd EasySoccerData
pip install -e .[dev]
import esd
client = esd.SofascoreClient()
events = client.get_events(live=True)
for event in events:
print(event)How to search for matches, teams, tournaments, and players
How to get tournament brackets
How to get live match statistics
Check out Sofascore module examples
Warning
FBRef is not available in the latest PyPI release yet.
It is currently available only in the development version from the repository.
Check out FBref module examples
import esd
client = esd.PromiedosClient()
events = client.get_events()
for event in events:
print(event)Check out Promiedos module examples
Simple demonstration of a live table using Sofascore module (see source code)
For the full documentation, please visit the Documentation Page
If you have any questions or need further assistance, feel free to open an issue.
| Name | PyPI version | Repository version |
|---|---|---|
| Sofascore | ✅ | ✅ |
| Promiedos | ✅ | ✅ |
| FBRef | ❌ | 🚧 In development |
| Goaloo | ❌ | 🚧 In development |
Keep in mind that it is still under active development.
The data provided in this repository is gathered from various external sources and is intended solely for informational purposes. This software is distributed "as-is," without any warranties or guarantees. Users are solely responsible for ensuring that their use of this data complies with the terms of service of the respective data sources and all applicable laws.
The developers of this project assume no liability for any misuse, legal issues, or damages arising from the use of the data or software.
All contributions, bug reports, fixes, and ideas are welcome.
