A package with functions for getting Betfair Exchange odds on upcoming Premier League matches.
Project description
betfair_ex_connection
A package that allows an easy connection to the Betfair Exchange API, provided valid credentials are given. The package contains a class which stores the credentials provided, and allows the user to get basic delayed (~3mins) market odds information on premier league matches. The current version of the package only allows getting odds for matches that are listed on the betfair exchange at the time of running the function. There is no featuure for getting odds on historical matches yet.
For more information on getting started with the betfair api read through the getting started docs.
This package was created to be used as a subpackage in a wider project - PSUSANNX.
Package Functions
- list_upcoming_pl_matches()
- get_betfair_exchange_odds()
Installation
pip install betfair_ex_connection
Usage
# Import the class object from the package
from betfair_ex_connection.betfair_ex_conn_class import BetfairExchangeConnection
# Get some info about the class object
help(BetfairExchangeConnection)
Once the class has been imported and you've read the help, you can create an instance of the class to allow you to interact with your betfair account. Make sure you have the required credentials at hand. You need the following information to use the class properly:
- Betfair username
- Betfair password
- Betfair Application Key
- Certificate Keys
# Create an instance of the class with all the credentials
betfair_ex_conn = BetfairExchangeConnection(
username="<betfair-username>",
password="<betfair-password>",
app_key="<application-key",
crt_path="<path-to-crt-key>",
pem_path="<path-to-pem-key>"
)
The betfair_ex_conn object can now be used to call the above functions and get delayed (~3mins) match odds on the exchange.
list_upcoming_pl_matches function
# Use the betfair_ex_conn to get the upcoming premier league matches listed on the betfair exchange
upcoming_matches_df = betfair_ex_conn.list_upcoming_pl_matches()
# Print out the next 5 matches, their ID's on the exchange and their kickoff times
upcoming_matches_df.head()
get_betfair_exchange_odds function
# Get the delayed exchange odds for an upcoming premier league match
match_odds_df = betfair_ex_conn.get_betfair_exchange_odds(
home_team='<home-team>',
away_team='<away-team>'
)
# Lood at the odds dataframe
match_odds_df
If the <home-team> Vs <away-team> match isn't available to bet on on the betfair exchange then the function will return a dataframe with NA values for the odds.
Notes
- The package is quite restricted in what it can do, but it only needs to do things that are required by the parent project so there won't be much development.
- A potential new feature to add to the package is the ability to get odds on matches that are not currently listed on the betfair exchange on runtime. This would require storing historical odds information in a public place.
- If you want to develop similar functions for other leagues/sports I highly recommend using the API Demo Tools for testing out & generating API requests in your browser. It is hard to navigate through requests on your won so these tools allow you to use an interface to find your selections, then you can go into developer tools in your browser and copy the exact request that generated the results from your browser and use it in our code.
Project details
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
Hashes for betfair_ex_connection-0.1.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | f328758cbecb21ab8c7b7c1721d081b78cac508f28c1c663d5be5c2aafe59ee0 |
|
MD5 | a8b0c943c670607f18e99926da577171 |
|
BLAKE2b-256 | b85c273d70d5bfe7693f451b4724e59b03a8f4504104a3ebb4def116966fffff |
Hashes for betfair_ex_connection-0.1.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | cd4013cd02221e7d1321ecc32b234d2293bee149f8b0bf07e9ce775118d6b6af |
|
MD5 | b58d00a242fb36f665f1708fb9a0e3bc |
|
BLAKE2b-256 | baa0f567e843938d9cb30ce1e3328848e237f81e48792fafa59c1828e7dc588f |