Python Wrapper for Bet365 API
Project description
pybet365
Python Wrapper for Bet365 API
Free software: MIT license
Documentation: https://pybet365.readthedocs.io.
Installation
From source
$ git clone https://github.com/leonkozlowski/pybet365.git
$ cd pybet365
$ python3.8 -m venv venv
$ source venv/bin/activate
$ pip install -e .
# For test dependencies
$ pip install -r requirements_dev.txt
From build
$ pip install pybet365
Features
GET Request to Upcoming Events Endpoint
from pybet365 import Bet365
client = Bet365(api_host="someHost", api_key="someKey")
upcoming_events = client.upcoming_events(sport_id="49")
print(upcoming_events)
Response
{
"success": 1,
"pager": {
"page": 1,
"per_page": 50,
"total": 102
},
"results": [
{
"id": "88107197",
"sport_id": "92",
"time": "1586480400",
"time_status": "0",
"league": {
"id": "10036652",
"name": "Moscow Liga Pro"
},
"home": {
"id": "10423098",
"name": "Evgenii Kryuchkov"
},
"away": {
"id": "10433218",
"name": "Aik Lulikyan"
},
"ss": null,
"our_event_id": "2297143",
"updated_at": "1586478473"
}
]
}
Access response objects with dot notation
from pybet365 import Bet365
client = Bet365(api_host="someHost", api_key="someKey")
upcoming_events = client.upcoming_events(sport_id="49")
print(upcoming_events.success)
>>> 1
Access of array type results objects
from pybet365 import Bet365
client = Bet365(api_host="someHost", api_key="someKey")
upcoming_events = client.upcoming_events(sport_id="49")
print(upcoming_events.results[0].id)
>>> "88107197"
Environment Variables
- BET365_HOST
$ export BET365_HOST=yourHost
- BET365_KEY
$ export BET365_KEY=yourSecretKey
Testing
# Test with pytest
make tests
# Lint with flake8
make lint
Credits
This package was created with Cookiecutter and the audreyr/cookiecutter-pypackage project template.
History
0.1.0 (2020-07-25)
First release on PyPI.
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
pybet365-0.1.1.tar.gz
(23.1 kB
view details)
Built Distribution
File details
Details for the file pybet365-0.1.1.tar.gz
.
File metadata
- Download URL: pybet365-0.1.1.tar.gz
- Upload date:
- Size: 23.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 53ac7c811372e885e4a9c7b34882d2f15ee8079fa67908f81236b3202e3dc1ce |
|
MD5 | 48b2b33db62f0adace743665cc5b7483 |
|
BLAKE2b-256 | c4d4572cb46ceffe2962e8458c8166aaef86e09b4df937f3121aea7d406fe0e0 |
File details
Details for the file pybet365-0.1.1-py2.py3-none-any.whl
.
File metadata
- Download URL: pybet365-0.1.1-py2.py3-none-any.whl
- Upload date:
- Size: 16.9 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 34377f968b9f4bdd2980f940525294259b94162aa874dc8e222ecd6211adb156 |
|
MD5 | 57403b0f46e8198c5a580f70b049142b |
|
BLAKE2b-256 | d7060a69b0a49979b1b234f33c042ab3ee7a2b98f514927be751a9e92f47d6dd |