- Python 3.7.0
pip install lotame
To provide a generic wrapper Lotame API
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')
- Paulo Kuong (@pkuong)