RTB House SDK
Project description
Overview
This library provides an easy-to-use Python interface to RTB House API. It allows you to read and manage you campaigns settings, browse offers, download statistics etc.
API docs: https://api.panel.rtbhouse.com/api/docs
Installation
RTB House SDK can be installed with pip:
$ pip install rtbhouse_sdk
Usage example
Let’s write a script which fetches campaign stats (imps, clicks, postclicks) and shows the result as a table (using tabulate library).
First, create config.py file with your credentials:
USERNAME = 'jdoe' PASSWORD = 'abcd1234'
Set up virtualenv and install requirements:
$ pip install rtbhouse_sdk tabulate
from datetime import date, timedelta
from operator import attrgetter
from rtbhouse_sdk.client import BasicAuth, Client
from rtbhouse_sdk.schema import CountConvention, StatsGroupBy, StatsMetric
from tabulate import tabulate
from config import PASSWORD, USERNAME
if __name__ == "__main__":
with Client(auth=BasicAuth(USERNAME, PASSWORD)) as api:
advertisers = api.get_advertisers()
day_to = date.today()
day_from = day_to - timedelta(days=30)
group_by = [StatsGroupBy.DAY]
metrics = [
StatsMetric.IMPS_COUNT,
StatsMetric.CLICKS_COUNT,
StatsMetric.CAMPAIGN_COST,
StatsMetric.CONVERSIONS_COUNT,
StatsMetric.CTR
]
stats = api.get_rtb_stats(
advertisers[0].hash,
day_from,
day_to,
group_by,
metrics,
count_convention=CountConvention.ATTRIBUTED_POST_CLICK,
)
columns = group_by + metrics
data_frame = [
[getattr(row, c.name.lower()) for c in columns]
for row in reversed(sorted(stats, key=attrgetter("day")))
]
print(tabulate(data_frame, headers=columns))
License
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
rtbhouse_sdk-11.0.0.tar.gz
(9.9 kB
view hashes)
Built Distribution
Close
Hashes for rtbhouse_sdk-11.0.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 00cd95a133df55f4db93609e33ff0ff31e5eb881b0ca8caf3bd0c73c7b31e58d |
|
MD5 | 0e0738e20a5a27372884b0893defa78b |
|
BLAKE2b-256 | 2c71a94da5a21be96117bde4d172583e7d505075a7dc4d7020ed4ca1b650e616 |