Skip to main content

Unofficial SDK for MobileAppTracking Service APIs

Project description

Configuration file contents:

[main]
api_key = YOUR_API_KEY

[export]
advertiser_id = YOUR_ADVERTISER_ID
timeout = 300  # seconde
delay = 30  # seconde
limit = 2000000

Using:

# -*- coding: utf-8 -*-
from umat import (
    AdvertiserReportCohortValues
    AdvertiserReportLogInstalls
)
from datetime import datetime


config_filename = 'config.ini'


log_endpoint = AdvertiserReportLogInstalls(config_filename)
log_endpoint.params.start_date = datetime(2016, 1, 10, 9)
log_endpoint.params.end_date = datetime(2016, 1, 10, 14)
log_endpoint.params.timezone = 'utc'
log_endpoint.params.fields = ['publisher_id', 'publisher.name', 'revenue_usd']
result_df = log_endpoint.get_dataframe()


cohort_endpoint = AdvertiserReportCohortValues(filename)
cohort_endpoint.params.end_date = datetime(2016, 1, 10)
cohort_endpoint.params.start_date = datetime(2016, 1, 10)
cohort_endpoint.params.timezone = 'UTC'
cohort_endpoint.params.fields = ['publisher_id', 'publisher.name', 'revenues_usd']
cohort_endpoint.params.update({
    'aggregation_type': 'cumulative',
    'cohort_type': 'install',
    'interval': 'year_day',
})
result_df = cohort_endpoint.get_dataframe()

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

umat-0.1.20.zip (15.4 kB view hashes)

Uploaded Source

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