Skip to content

Files

Latest commit

 

History

History

generated

trakerr_client

Get your application events and errors to Trakerr via the Trakerr API.

This Python package is automatically generated by the Swagger Codegen project:

  • API version: 1.0.0
  • Package version: 1.0.0
  • Build date: 2017-05-05T15:16:46.007-07:00
  • Build package: class io.swagger.codegen.languages.PythonClientCodegen

Requirements.

Python 2.7 and 3.4+

Installation & Usage

pip install

If the python package is hosted on Github, you can install directly from Github

pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git

(you may need to run pip with root permission: sudo pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git)

Then import the package:

import trakerr_client 

Setuptools

Install via Setuptools.

python setup.py install --user

(or sudo python setup.py install to install the package for all users)

Then import the package:

import trakerr_client

Getting Started

Please follow the installation procedure and then run the following:

import time
import trakerr_client
from trakerr_client.rest import ApiException
from pprint import pprint
# create an instance of the API class
api_instance = trakerr_client.EventsApi
data = trakerr_client.AppEvent() # AppEvent | Event to submit

try:
    # Submit an application event or error to Trakerr
    api_instance.events_post(data)
except ApiException as e:
    print "Exception when calling EventsApi->events_post: %s\n" % e

Documentation for API Endpoints

All URIs are relative to https://www.trakerr.io/api/v1

Class Method HTTP request Description
EventsApi events_post POST /events Submit an application event or error to Trakerr

Documentation For Models

Documentation For Authorization

All endpoints do not require authorization.

Author