General purpose Python client for the AppNexus API
Project description
General purpose Python client for the AppNexus API.
This library exists because most of the open-source solutions we found were for specific AppNexus tasks, such as reporting. Our solution, however, is meant to be used with any AppNexus service.
As it heavily relies on the AppNexus API, we advise you to read its documentation.
This client uses models in the same way that database ORM would do, but you can also hook it to your own data representation class, or simply use Python dictionaries.
Install
$ pip install appnexus-client
Getting started
Services
A service is an endpoint on the AppNexus API, representing an entity such as a creative. Here is the complete list of services usable with AppNexus-client: AccountRecovery, AdProfile, AdQualityRule, Adserver, Advertiser, BatchSegment, Brand, Broker, Browser, BudgetSplitter, Campaign, Carrier, Category, ChangeLog, ChangeLogDetail, City, ContentCategory, Country, Creative, CreativeFormat, Currency, CustomModel, CustomModelHash, CustomModelLogit, CustomModelLUT, CustomModelParser, Deal, DealBuyerAccess, DealFromPackage, DMA, DeviceMake, DeviceModel, DomainAuditStatus, DomainList, ExternalInvCode, InsertionOrder, InventoryAttribute, InventoryResold, IPRangeList, Label, Language, LineItem, LineItemModel, Lookup, ManualOfferRanking, MediaSubtype, MediaType, Member, MemberProfile, MobileApp, MobileAppInstance, MobileAppInstanceList, MobileAppStore, NativeCustomKey, ObjectLimit, OperatingSystem, OperatingSystemExtended, OperatingSystemFamily, OptimizationZone, Package, PackageBuyerAccess, PaymentRule, Pixel, Placement, PlatformMember, PostalCode, Profile, ProfileSummary, Publisher, Region, Report, ReportStatus, Search, Segment, Site, TechnicalAttribute, Template, ThirdpartyPixel, User, UsergroupPattern, VisibilityProfile
Connecting
First of all, you need to connect the client to AppNexus. One simple way is to use the connect function with your credentials:
from appnexus import connect
connect("my-username", "my-password")
From there, you can use all the features of the library.
Models
A model in AppNexus-client is an abstraction for a service. Most of them are already declared and you just have to import them.
You can access the fields of an AppNexus just like any object: entity.field_name
For example, to print the name of each and every city registered in AppNexus, you could do:
from appnexus import City
for city in City.find():
print(city.name)
You can also retrieve a single result (the first one returned by the API) using the find_one method:
city = City.find_one(id=1337)
Filtering and sorting
Sorting with AppNexus-client is easy: just give a sort parameter with a value indicating which field is sorted in which order (asc or desc). This parameter will be supplied to the AppNexus API which will return a sorted response.
You can filter entities using parameters of the methods find and find_one. Each parameter stand as a new filter for the field it is named after. For example, you can search for cities whose country_code field is equal to “FR” and sort them by name:
for city in City.find(country_code="FR", sort="name.desc"):
print(city.name)
The parameters you give to the find and find_one methods are translated into query parameters for the requests being send. For example, the snippet Creative.find(state="active", advertiser_id=[1, 2, 3]) will result in a get request on http://api.appnexus.com/creative?state=active&advertiser_id=1,2,3
Please search in the AppNexus API documentation to understand the meaning of each parameter.
Custom data representation
By default, AppNexus-client relies on Thingy to represent data as objects.
But you can also hook your own data representation class. For this, you must use a function that exposes this signature:
function(client, service, object)
The client argument is an AppNexusClient instance. service is the string representation of the service to which the object belongs. object is a dictionary containing the data about the AppNexus entity. The return value of this function will be used as the data representation.
To use this function and get the desired data representation, you must pass it to the client as the representation keyword argument.
If you want your data to be in the form of simple dictionaries rather than Thingy instances, AppNexus-client provides a raw representation that you can use pretty easily:
from appnexus.representations import raw
connect("username", "password", representation=raw)
But if, for example, you would prefer to get lists of tuples, you would have to craft your own representation function:
def custom_representation(client, service_name, object):
return object.items()
connect("username", "password", representation=custom_representation)
Reports
Retrieving report data has 3 steps:
Creating a report
Checking if the report is ready to download
Downloading the report
from appnexus import Report
json = {
"report_type": "network_analytics",
"columns": [
"clicks",
"total_convs",
"insertion_order_id",
"line_item_id",
],
"report_interval": "lifetime",
"format": "csv"
}
report = Report(json).save()
data = report.download()
The download method on Report object takes care of checking if the report is available for download and retires it by default for 3 times with an interval of 1 second. The number of retries can be overridden by passing the parameter retry_count to the download method:
data = report.download(retry_count=5)
Changelogs
The ChangeLog service allows to retrieve information about changes that have been made to an object of those services: campaign, insertion-order, line-item and profile.
For example, you can print the date of every change that was made on a campaign:
from appnexus import Campaign
campaign = Campaign.find_one()
for change in campaign.changelog:
print(change.created_on)
For more information on a change, you can use the ChangeLogDetail service with the returned transaction_id as a parameter:
from appnexus import ChangeLogDetail
detail = ChangeLogDetail.find_one(service="campaign",
resource_id=change.resource_id,
transaction_id=change.transaction_id)
print(detail.user_full_name)
Tests
To run AppNexus-client tests:
install developers requirements with pip install -r requirements.txt;
run pytest.
License
MIT
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
File details
Details for the file AppNexus-client-0.9.0.tar.gz
.
File metadata
- Download URL: AppNexus-client-0.9.0.tar.gz
- Upload date:
- Size: 11.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6d3a9e6279f4bf98d986259a1c7b454f228c60ced92756512efd5cabe5671ffa |
|
MD5 | 2d28b84888d00b7ff4c70a7dfe5b900a |
|
BLAKE2b-256 | aae3369f85247220ccd4cfc78088bc3b5429655ac5f378f3e6438ee8d1a43de9 |