Python module for integration to Atrium Sports APIs
Project description
Atrium Sports API SDK
Python module to make use of the Atrium Sports Datacore API
Datacore REST API
from atriumsports import AtriumSports
atrium = AtriumSports({
'sport': 'basketball',
'credential_id': 'XXXXX',
'credential_secret': 'YYYY',
'organizations': ['b1e34'],
})
datacore = atrium.client('datacore')
response = datacore.get('/o/b1a23/competitions', limit=500)
for data in response.data():
print(data)
Datacore Streaming API
from atriumsports import AtriumSports
atrium = AtriumSports({
'sport': 'basketball',
'credential_id': 'XXXXX',
'credential_secret': 'YYYY',
"environment": "sandpit",
})
stream_api = atrium.client('datacore-stream')
def on_connect_callback_function(client):
""" example callback when connected """
print("connected")
def on_read_callback_function(client, topic, message):
""" example callback when message read """
print("{}: {}".format(topic, message))
connected = stream_api.connect({
"fixture_id": 'f71dfdd6-51f1-11ea-8889-22953e2ee7e2', #fixture_id
"scopes": [ # Scopes
"write:stream_events",
"read:stream_events"
],
"on_read": on_read_callback_function,
"on_connect": on_connect_callback_function
})
if not connected:
print(stream_api.error())
else:
stream_api.publish(
"write:stream_events",
{
"type": "event",
"data": {
"eventClass": "sport",
"eventId": "c2404cc0-9f75-11e8-98d0-529269fb1459",
"entityId": "c24048a6-9f75-11e8-98d0-529269fb1459",
"personId": "c2405b2a-9f75-11e8-98d0-529269fb1459",
"eventType": "2pt",
"subType": "jumpshot",
"clock": "PT08:23",
"shotClock": "PT12.3",
"periodId": 2,
"success": True,
"timestamp": "2018-08-14T16:45:34.34",
"clientId": "c2408302-9f75-11e8-98d0-529269fb1459",
"clientType": "TestApi:1.1.2"
}
}
)
time.sleep(40)
stream_api.disconnect()
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file atriumsports_sdk-0.0.6.tar.gz.
File metadata
- Download URL: atriumsports_sdk-0.0.6.tar.gz
- Upload date:
- Size: 5.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/42.0.2 requests-toolbelt/0.9.1 tqdm/4.40.2 CPython/3.6.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
33d817fecd588e097165f29bc42108857965646e7b01dda558d3c6afd53907e0
|
|
| MD5 |
59453a4ceef70f7fb665623f8181d9f0
|
|
| BLAKE2b-256 |
cd196ddf1572225b2c77bdf6da378e732b715d3d1d9476ff324a20b939cffd26
|
File details
Details for the file atriumsports_sdk-0.0.6-py3-none-any.whl.
File metadata
- Download URL: atriumsports_sdk-0.0.6-py3-none-any.whl
- Upload date:
- Size: 7.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/42.0.2 requests-toolbelt/0.9.1 tqdm/4.40.2 CPython/3.6.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c46130d4c0e7072c5ba8f2082eae3dbf4c09ec094bc84d7938c04f4d81098e6c
|
|
| MD5 |
2cafcb82e29195e63c3ba79361aa654b
|
|
| BLAKE2b-256 |
7840da632a7af3f37bfca04329d297c6a78307715ade1b5b5ae31c38c847edaa
|