Python client library for HasOffers API
Project description
Installation
PyOffers can be obtained with pip:
$ pip install pyoffers
Usage example
Initialize API client:
>>> from pyoffers.api import HasOffersAPI >>> hasoffers = HasOffersAPI( endpoint='https://api.hasoffers.com/Apiv3/json', network_token='<your_network_token>', network_id='<your_network_id>', )
Execute queries:
>>> # Get all offers with ID greater than 100, sorted by ID and with loaded `Country` data >>> hasoffers.offers.find_all(id__gt=100, sort='id', contain=['Country']) [<Offer: 102>, <Offer: 104>, <Offer: 106>, <Offer: 108>, <Offer: 110>, <Offer: 112>] >>> # Get all clicks records for 2016-09-20 >>> hasoffers.raw_logs.clicks.find_all('20160920') [<LogRecord: 7 (1027a606128bd067105f0b0921840f)>, ...] >>> # Get all conversions for specific offer >>> offer = hasoffers.offers.get_by_id(100) >>> offer.conversions.find_all() [<Conversion: 70532>]
Documentation
You can view documentation online at:
Or you can look at the docs/ directory in the repository.
Python support
PyOffers supports Python 3.5+.
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
pyoffers-0.7.0.tar.gz
(13.7 kB
view hashes)
Built Distribution
pyoffers-0.7.0-py3-none-any.whl
(16.2 kB
view hashes)