Python API for Amplitude Analytics Logging - https://amplitude.com
This API is a simple (unofficial) wrapper for the Amplitude HTTP API
Potential preparation before installing: create and activate virtualenv or conda environment
pip install amplitude-python
$ git clone https://github.com/atveit/amplitude-python.git
$ cd amplitude-python
$ python setup.py instal
import amplitude
# initialize amplitude logger
amplitude_logger = amplitude.AmplitudeLogger(api_key = "SOME_API_KEY_STRING")
# track an event to amplitude
amplitude_logger.track(device_id="somedeviceid", event_type:"Registration", event_properties={"screen": "First"}, user_properties={"email": "[email protected]"})
API Reference can be found here – Amplitude HTTP API Documentation before start logging.
python setup.py test