Skip to main content

Python client library for www.punters.com.au

Project description

This project aims to provide client functionality for the www.punters.com.au web site in Python.

Build Status Coverage Status Code Health

Installation

Prior to using punters_client, the package must be installed in your current Python environment. In most cases, an automated installation via PyPI and pip will suffice, as follows:

pip install punters_client

If you would prefer to gain access to new (unstable) features via a pre-release version of the package, specify the ‘pre’ option when calling pip, as follows:

pip install --pre punters_client

To gain access to bleeding edge developments, the package can be installed from a source distribution. To do so, you will need to clone the git repository and execute the setup.py script from the root directory of the source tree, as follows:

git clone https://github.com/justjasongreen/punters_client.git
cd punters_client
python setup.py install

If you would prefer to install the package as a symlink to the source distribution (for development purposes), execute the setup.py script with the ‘develop’ option instead, as follows:

python setup.py develop

Basic Usage

To access the functionality described below, you must first create an instance of the punters_client.Scraper class. To do so, you will need to provide a compatible HTTP client and a HTML parser. The HTTP client can be any object that implements the requests.Session API, supporting calls such as the following:

response = http_client.get(url)
response.raise_for_status()
content = response.text

The HTML parser can be any callable that implements the lxml.html.fromstring API, supporting calls such as the following:

html = html_parser(content)

punters_client has only been tested with cache_requests.Session as a HTTP client and lxml.html.fromstring as a HTML parser. To set up the required dependencies in your own project using the same packages, execute the following code in your Python interpreter:

>>> import cache_requests
>>> http_client = cache_requests.Session()
>>> from lxml import html
>>> html_parser = html.fromstring

With these dependencies in place, you can now create an instance of the punters_client.Scraper class as follows:

>>> import punters_client
>>> scraper = punters_client.Scraper(http_client, html_parser)

The scraper instance can now be used to scrape a range of racing data from the web, as illustrated in the following sections…

Scraping Meets

Meets represent a collection of races occurring at a given track on a given date. To scrape a list of meets occurring on a specified date, execute the following code in your Python interpreter:

>>> from datetime import datetime
>>> date = datetime(2016, 2, 1)
>>> meets = scraper.scrape_meets(date)

The scrape_meets method will return a list of dictionaries representing all meets occurring in Australia on the specified date. Accordingly, a meet’s details can be accessed as follows:

>>> meet = meets[index]
>>> track = meet['track']

Scraping Races

Races represent a collection of runners competing in a single event at a meet. To scrape a list of races occurring at a specified meet, execute the following code in your Python interpreter:

>>> races = scraper.scrape_races(meet)

The scrape_races method will return a list of dictionaries representing all races occurring at the specified meet. Accordingly, a race’s details can be accessed as follows:

>>> race = races[index]
>>> number = race['number']

Scraping Runners

Runners represent a single combination of horse, jockey and trainer competing in a race. To scrape a list of runners competing in a specified race, execute the following code in your Python interpreter:

>>> runners = scraper.scrape_runners(race)

The scrape_runners method will return a list of dictionaries representing all runners occurring at the specified race. Accordingly, a runner’s details can be accessed as follows:

>>> runner = runners[index]
>>> number = runner['number']

Scraping Horses, Jockeys and Trainers

Horses, jockeys and trainers represent the distinct components of a runner. To scrape the profile for a runner’s horse, jockey or trainer, execute the following code in your Python interpreter as appropriate:

>>> horse = scraper.scrape_horse(runner)
>>> jockey = scraper.scrape_jockey(runner)
>>> trainer = scraper.scrape_trainer(runner)

The scrape_horse, scrape_jockey and scrape_trainer methods all return a dictionary representing the horse/jockey/trainer’s profile. Accordingly, profile details can be accessed as follows:

>>> name = horse['name']
>>> name = jockey['name']
>>> name = trainer['name']

Scraping Performances

Performances represent the results of completed runs for a horse/jockey. To scrape a list of performances for a given horse/jockey, execute the following code in your Python interpreter as appropriate:

>>> performances = scraper.scrape_performances(horse)
>>> performances = scraper.scrape_performances(jockey)

NOTE: Due to the sheer volume of performances associated with any given jockey, it is only possible to recover a short and incomplete list of the most recent performances as at the time of scraping from www.punters.com.au. This should not be an issue with most horses.

The scrape_performances method returns a list of dictionaries representing the past performances for the specified horse/jockey. Accordingly, a performance’s details can be accessed as follows:

>>> performance = performances[index]
>>> result = performance['result']

Development and Testing

The source distribution includes a test suite based on pytest. To ensure compatibility with all supported versions of Python, it is recommended that the test suite be run via tox.

To install all development and test requirements into your current Python environment, execute the following command from the root directory of the source tree:

pip install -e .[dev,test]

To run the test suite included in the source distribution, execute the tox command from the root directory of the source tree as follows:

tox

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

punters_client-1.0.0b6.tar.gz (17.8 kB view details)

Uploaded Source

Built Distribution

punters_client-1.0.0b6-py2.py3-none-any.whl (11.5 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file punters_client-1.0.0b6.tar.gz.

File metadata

File hashes

Hashes for punters_client-1.0.0b6.tar.gz
Algorithm Hash digest
SHA256 87dedf6108a9635dc949fbd799aba0fae566f601c0a00dbf1bff1c21d3272945
MD5 39d68bd35a9ef73c59396f35c3faa71c
BLAKE2b-256 b98c2b6be078e19d2999611d29b2f8267fa9fedac592d3b919be7bf1cc7bb551

See more details on using hashes here.

File details

Details for the file punters_client-1.0.0b6-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for punters_client-1.0.0b6-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 52ec0488026b8e3cc78d80d6a2ea4897a1887ba32ad45ace5721839d22f08cad
MD5 4f396c0918fe696441e718813e31de54
BLAKE2b-256 2c8351628df6ec2f4394a7dd39baa90087deb554dcd011ddd0516e5866c20efc

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page