Python low-level client for HasOffers.com. http://developers.hasoffers.com/
Project description
This package provides a Python low-level client for the HasOffers API.
Installation
pip install hasoffers
Usage Examples
Instantiate a client with your network token and network id:
from hasoffers import BrandClient client = BrandClient("networktoken", "networkid")
Or for the Affiliate API:
from hasoffers import AffiliateClient client = AffiliateClient("api_key", "network_id")
The general usage to call an API method is client.request(target, method, **params).
For example, to retrieve all offer categories:
response = client.request("Application", "findAllOfferCategories", filters={ "status": {"NOT_EQUAL": "deleted"} }) if response.success: # do something with response.data
Or to retrieve all conversions for an advertiser:
response = client.request("Conversion", "findAll", page=1, limit=100, filters={ "advertiser_id": 444, }) if response.success: # do something with response.data
To use a combination of OR and AND in filters:
# Find all conversions where (advertiser_id == 444 OR advertiser_id == 555 OR revenue >= 100) AND user_agent contains "AppleWebKit" response = client.request("Conversion", "findAll", page=1, limit=100, filters={ "OR": { "advertiser_id": [444, 555], "revenue": { "GREATER_THAN_OR_EQUAL_TO": 100 } }, "user_agent": { "LIKE": "%AppleWebKit%" } })
Note that a special keyword argument called response_class can be passed to substitute the default response wrapper. For example:
from hasoffers import Response class CustomResponse(Response): def next_page(self): return int(self.data.get('page')) + 1 def has_more(self): return int(self.data.get('page')) < int(self.data.get('pageCount')) response = client.request("Conversion", "findAll", limit=100, page=1, response_class=CustomResponse)
Running Tests
tox
Contributions
All contributions and comments are welcome.
Change Log
v0.2.1
Add ability to specify HTTP methods (verbs) when making a request. Thanks jeffkayser
v0.2.0
Add support for Affiliate API. Thanks jarradh
v0.1.1
Switch to Semantic Versioning
Fix issue with parse_requirements for newer versions of pip (>=6.0.0)
v0.1
Initial
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
File details
Details for the file hasoffers-0.2.1.tar.gz
.
File metadata
- Download URL: hasoffers-0.2.1.tar.gz
- Upload date:
- Size: 5.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 559b9054564d038df0df0c4ebe180595049279066eb0b8a99dbbe1f64125ca7c |
|
MD5 | 317e499186cb033aadd46e0469c11977 |
|
BLAKE2b-256 | 152656d5d3ee4b5bd402bf8e36b0da7007102f26445a85ebe32804a2a2d785f6 |
File details
Details for the file hasoffers-0.2.1-py2.py3-none-any.whl
.
File metadata
- Download URL: hasoffers-0.2.1-py2.py3-none-any.whl
- Upload date:
- Size: 6.0 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 338877df003593218c4f1b6be62458f16fda991e021961881604b80851f28e84 |
|
MD5 | 20bbfa57e22098ac6ad76e6d8136c35c |
|
BLAKE2b-256 | 52768ef892913bdb13f7585122e4683ab07325f5ffbd27f4c7bac62181c69ab9 |