A Python wrapper for the Sportradar APIs
Project description
Sportradar APIs
This is a Python wrapper for the sports APIs provided by Sportradar. You'll need to sign up for an API key to use the service. Sportradar provides a free trial evaluation that provides 1,000 API queries at up to 1 query per second.
Supported APIs
Sport | API Wrapper | Unit Tests |
---|---|---|
Soccer :soccer: | :heavy_check_mark: | :heavy_check_mark: |
NBA :basketball: | :heavy_check_mark: | :heavy_check_mark: |
WNBA :basketball: | :heavy_check_mark: | :heavy_check_mark: |
NCAAMB :basketball: | :heavy_check_mark: | :heavy_check_mark: |
NFL :football: | :heavy_check_mark: | :heavy_check_mark: |
NHL :trophy: | :heavy_check_mark: | :heavy_check_mark: |
Tennis :tennis: | :heavy_check_mark: | :heavy_check_mark: |
MLB :baseball: | :heavy_check_mark: | :heavy_check_mark: |
Darts :dart: | :heavy_check_mark: | :heavy_check_mark: |
Beach volleyball :palm_tree: | :heavy_check_mark: | :heavy_check_mark: |
Golf :golf: | :heavy_check_mark: | :heavy_check_mark: |
NASCAR :red_car: | :heavy_check_mark: | :heavy_check_mark: |
LoL :video_game: | :heavy_check_mark: | :heavy_check_mark: |
Dota2 :video_game: | :heavy_check_mark: | :heavy_check_mark: |
Cricket :cricket: | :heavy_check_mark: | :heavy_check_mark: |
Rugby :rugby_football: | :heavy_check_mark: | :heavy_check_mark: |
Installation
The easiest way to start using this package is via PyPI using pip
:
$pip install sportradar
If you'd prefer to clone the repository and install the package manually, follow these steps:
- Clone this repo:
$git clone https://github.com/johnwmillr/SportradarAPIs.git
- Enter the cloned directory:
$cd SportradarAPIs
- Install:
$python setup.py install
Usage
Below is a brief demonstration of how to use the package to download data for the 2018 FIFA World Cup.
from sportradar import Soccer
# Create an instance of the Sportradar Soccer API class
sr = Soccer.Soccer("paste your api key here")
# Get a list of all tournaments
tournaments = sr.get_tournaments().json()
# Get info on the 2018 World Cup (Teams, Rounds, etc.)
worldcup = sr.get_tournament_info(tournaments['tournaments'][4]['id']).json()
# Get more information on each team in the World Cup
teams = []
team_counter = 0
for group in worldcup['groups']:
for team in group['teams']:
team_counter += 1
team_id = team['id']
team_name = team['name']
print("({}): {}, {}".format(team_counter, team_name, team_id))
try:
teams.append(sr.get_team_profile(team_id).json())
except Exception as e:
print("Error: {}".format(e))
time.sleep(5) # wait 5 seconds before next API call
# Save the team data to a .json file
print("Saving the data...", end="", flush=True)
with open("world_cup_team_data.json", "w") as outfile:
json.dump(teams, outfile)
print(" Done.")
Example projects
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file sportradar-1.6.0.tar.gz
.
File metadata
- Download URL: sportradar-1.6.0.tar.gz
- Upload date:
- Size: 14.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.1.2 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
c737ead138cdb8850ebb1609b2bc27e244ea5d8189f121c2cb1895811e1975db
|
|
MD5 |
b273ea213ded2dd416533dba01f14bb2
|
|
BLAKE2b-256 |
aef1a87f9552ca6b977bffff70e48f0408b4ab7bc55a9191a8cd5fbbefe8938b
|
File details
Details for the file sportradar-1.6.0-py3-none-any.whl
.
File metadata
- Download URL: sportradar-1.6.0-py3-none-any.whl
- Upload date:
- Size: 23.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.1.2 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
90e8ccd1502b72f3ecb1157fcdff5abcca9f75f576b03675a15cadf96c0f4dda
|
|
MD5 |
dde8710704d23dab636626c747a41296
|
|
BLAKE2b-256 |
24178ea1dadd354afc20f583cd998ae0725ab477fe45ce94ea4416a5463cda9f
|