Skip to content

Latest commit

 

History

History
55 lines (36 loc) · 995 Bytes

File metadata and controls

55 lines (36 loc) · 995 Bytes

Lotame API Wrapper

Wrapper Class for Lotame API.

Requirements

  • Python 3.8 (tested)

Goal

To provide a generic wrapper Lotame API

Code sample

Instantiate
from lotame import Api, Credentials, FirehoseService, BehaviorService
api = Api(Credentials(client_id='xxx', token='yyy', access='zzz'))
fs = FirehoseService(api=api)
updates = fs.getUpdates(hours=1)
b = BehaviorService(api=api)
b.get('types')

Contributors