Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ddanier/django-openx

Provides the necessary utilities to access the new OpenX-API
https://github.com/ddanier/django-openx

Last synced: about 2 months ago
JSON representation

Provides the necessary utilities to access the new OpenX-API

Awesome Lists containing this project

README

        

You need to add the following setting to django:

OPENX_URL = 'http://www.your-openx-server.tld/www/api/v1/xmlrpc/'
OPENX_USERNAME = 'username'
OPENX_PASSWORD = 'password'

From Google code:

OpenX will feature a new API to manage publishers, zones, advertisers, ... via XML-RPC (https://developer.openx.org/wiki/display/DOCS/OpenX+API+Tutorial). This django application will provide a simple layer to wrap the calls to OpenX inside objects.

Currently there is no real validation of the data, but simple requests are useable (create objects, link banners to zones, ...).

Outdated Example (code reformatted to fit your screen):
{{{
>>> from django_openx import Zone
>>> z = Zone.get(2)
>>> z.generate_tag()
'\n\n[...]'
>>> z.publisher
{
'publisherName': 'Some Publisher',
'contactName': '',
'agencyId': 1,
'emailAddress': '[email protected]',
'publisherId': 2,
'accountId': 6
}
>>> p = z.publisher
>>> p.zones
[
{
'width': 468,
'zoneName': 'Some Zone',
'type': 0,
'zoneId': 2,
'publisherId': 2,
'height': 60
},
{
'width': 250,
'zoneName': 'Another Zone',
'type': 0,
'zoneId': 1,
'publisherId': 2,
'height': 250
}
]
}}}

Things still missing (contributions welcome):
* Documentation (for now, just put django_openx into sys.path and read the source)
* Better support for OpenX statistics
* Support for getting banners via XML-RPC (XML-RPC ad delivery)
* Validation of data in objects or wrapping of XML-RPC exceptions to make working with API easier
* unittests



LICENSE: MIT