Skip to main content

HTTP Client for the MediaAmp/MPX API

Project description

This is a fairly low-level wrapper around the MediaAmp/MPX endpoints provided by theplatform.com. It primarily handles token authentication and provides HTTP methods with configurable default parameters (e.g. schema) for the service endpoints. Because of the multitude of available parameters available at each endpoint this package is intended to be used by your application to build your own abstractions on top of the request and response data. Currently it only supports the JSON (and cJSON) forms.

https://travis-ci.org/cordmata/mediaampy.svg?branch=master

Usage

To get started, supply your credentials: username, password, account id (This is a URL and can be found on the “About” screen in the MPX console). You can optionally supply an authentication token if you have one.

import mediaamp
session = mediaamp.Session(
    'example@example.com',
    'very_very_secret',
    'http://access.auth.theplatform.com/data/Account/{{YOURID}}',
    auth_token='YOUR_TOKEN',
)

Once initialized, you can obtain services by key lookup:

media_data = session['Media Data Service']

The endpoints on the service have get(), put(), post(), and delete() methods you can use depending on the actions you are taking.

media_item = media_data.Media.get('{{MEDIA_ID}}')
media_item['description']

You can specify your own defaults per-endpoint by calling the endpoint object.

media = media_data.Media(schema='1.8', form='cjson')

Installation

pip install mediaampy

Or you can clone the source and run:

make init

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

mediaampy-0.2.8.tar.gz (7.2 kB view hashes)

Uploaded Source

Built Distribution

mediaampy-0.2.8-py2.py3-none-any.whl (9.8 kB view hashes)

Uploaded Python 2 Python 3

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