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()
Release files for umat 0.1.20
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| umat-0.1.20.zip | 15.4 kB | Details |
Release files / umat-0.1.20.zip
| Download URL | umat-0.1.20.zip |
|---|---|
| Size | 15.4 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
60ef02f13155cd330c5516c02f8c159fbaea306ee22b21ef96731cea6641af89
|
|
BLAKE2b-256 checksum How to use checksums |
cbb676b98f81db3bf8c512baee2d6d44b621be9f91ab8fefcc536dec5fa6adac
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |