Skip to main content

Simple python wrapper for LOTAME API

Project description

Build Status

Lotame API Wrapper

Wrapper Class for Lotame API.

Fully unit tested wrapper class for Lotame REST API.

Requirements

  • Python 3.6 (tested)

Goal

To provide a generic wrapper Lotame API

Code sample

Instantiate
from lotame.lotame import Lotame
l = Lotame(username='xxxx', password='yyyy')
Search audiences
audiences = l.get('audiences/search', searchTerm='Age - ').json()['Audience']
Get behavior 3333
behavior = l.get('behaviors/{}'.format(3333)).json()
Create audience segment with 3 behaviors.
audience_definition = l.get_create_audience_json(
    'Lotame api test 5',
    2215, [[6322283, 6322292], [6322283, 6322292]],
    'Testing out Lotame API 5')
post_response_json = l.post('audiences', audience_definition).json()
print(post_response_json)
Create audience segment with 3 behaviors for (My Profile)
audience_definition = l.get_create_audience_json(
    'Lotame api test 5',
    2215, [[6322283, 6322292, 1111760, 6322303], [6322283, 6322292, 1111760, 6322303]],
    'Testing out Lotame API 5', overlap=True)
Getting Reach Estimate (Note that description param is removed since it is not valid param)
audience_definition = l.get_create_audience_json(
    'Lotame api test 8',
    2215, [[6322283, 6322292, 1111760, 6322303], [6322283, 6322292, 1111760, 6322303]])
reach_estimates = l.post('audiences/reachEstimates', audience_definition).json()
reach_estimates_res = l.get('audiences/reachEstimates/{}'.format(reach_estimates.get('id')))
print(reach_estimates_res.json())
Getting behaviors under hierarchy tree at depth 2 child nodes.
[{'name':j['name'],'behavior_id':j['behaviorId']}
for j in l.get('hierarchies/525000', depth=2).json().get('nodes')[1].get('childNodes')]
Getting report for audience profile
res = l.get('reports/audiences/{audience_id}/profile/type/{audience_profile_report_type_id}'.format(
    audience_id=333333,audience_profile_report_type_id=6))

Contributors

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

lotame-1.0.4a0.tar.gz (5.0 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