Python API Client for Localytics Raw Data Export
Project description
Python Client for Localytics Raw Data Export
This is a Python API Client for Localytics Raw Data Export. It allows to export all events and sessions captured by Localytics. Data is written in JSON and available on hourly basis as log files.
Installation
The client is currently best installed via Pypi:
$ pip install localytics
Usage
Let's have a walk through the functionalities through a couple of examples. Start by loading the library.
>>> from localytics import Localytics
Setup and Authentication
In order for you to access the KPI Service, you need to authenticate with api_key. Your api_secret, once you supply it, will be used throughout the entire session.
>>> localytics = Localytics(api_key = 'XXXXX', api_secret= 'YYYYY')
Download Data
There is a method download_data that downloads data to local folder. Example shows how to export data for last 2 days:
>>> localytics.download_data(
app_ids = ['AAAAA', 'BBBBB'],
start_date = datetime.today() - timedelta(2),
end_date = datetime.today()
)
You can also specify optional parameters. This is more complex example:
>>> localytics.download_data(
app_ids = ['AAAAA', 'BBBBB'],
start_date = datetime.today() - timedelta(2),
end_date = datetime.today(),
destination_folder = 'data',
compressed=True
)
On default data are stored in localytics_data folder and compressed in gz format. Please set compresses = True if you want to store data decompressed.
Contributions and bug reports.
Contributions and bug reports are only acceptable as GitHub Pull Requests and issues. Thanks!
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file localytics-1.42.tar.gz.
File metadata
- Download URL: localytics-1.42.tar.gz
- Upload date:
- Size: 2.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4613318f9907fbe1c9797106aba22fd74e2ca2ff5c23c1473976af1b7fe134b4
|
|
| MD5 |
8280ba7eb86d2421dec04e6bc57ad59f
|
|
| BLAKE2b-256 |
2df35d149090d03c9fd4bb28a5e2f6dc1a753358ae64da4a3faacfad25d3fa06
|
File details
Details for the file localytics-1.42-py3-none-any.whl.
File metadata
- Download URL: localytics-1.42-py3-none-any.whl
- Upload date:
- Size: 3.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
07892095e990d4090ca5513e1aa76964d7953ae234a18c8b44f4ba153520cdeb
|
|
| MD5 |
3995e23dc1183e18eb93f324bb9bae8f
|
|
| BLAKE2b-256 |
0f10cb4bda3dc4c7fd43f3c11bf4b6472c41a4f086fe37bee43bec2dbc1cc9bd
|