Skip to main content

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

MIT

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

rtbhouse_sdk-14.2.0.tar.gz (10.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

rtbhouse_sdk-14.2.0-py3-none-any.whl (10.3 kB view details)

Uploaded Python 3

File details

Details for the file rtbhouse_sdk-14.2.0.tar.gz.

File metadata

  • Download URL: rtbhouse_sdk-14.2.0.tar.gz
  • Upload date:
  • Size: 10.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for rtbhouse_sdk-14.2.0.tar.gz
Algorithm Hash digest
SHA256 a8111f7cf62eddada40e747449fd275dd5e5d4480f21f33a456e0b256cdbc34b
MD5 1b271866be085bb8d80090aff3ee7fb9
BLAKE2b-256 f8fa0ffb1ff8e2cc63ed4bfb3f377c09e6daccdcce6827cfc48266e746ae9a62

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtbhouse_sdk-14.2.0.tar.gz:

Publisher: ci.yaml on rtbhouse-apps/rtbhouse-python-sdk

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rtbhouse_sdk-14.2.0-py3-none-any.whl.

File metadata

  • Download URL: rtbhouse_sdk-14.2.0-py3-none-any.whl
  • Upload date:
  • Size: 10.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for rtbhouse_sdk-14.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 fd9398ca72744dff7ff3e37f33f9865d731029fb7cdf5bcf4182dc4e0163f834
MD5 3684f5c17d37a75e3a382087b06f1552
BLAKE2b-256 b364b9e307baea16b5e6b86552c43435fe17e4c17cf7c1f2200bb7d0dd62e0eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for rtbhouse_sdk-14.2.0-py3-none-any.whl:

Publisher: ci.yaml on rtbhouse-apps/rtbhouse-python-sdk

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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