Skip to content

Woopra/woopra-python-sdk

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

42 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Track customers directly in Python using Woopra's Python SDK

The purpose of this SDK is to allow our customers who have servers running Python to track their users by writing only Python code. Tracking directly in Python will allow you to track your users through the back-end without having to handle http requests manually.

Installation

 pip install woopra

OR

 pip install git+https://github.com/Woopra/woopra-python-sdk.git

Usage

The first step is to setup the tracker SDK. To do so, configure the tracker instance as follows (replace mybusiness.com with your website as registered on Woopra):

#import the SDK
from woopra import WoopraTracker

woopra = WoopraTracker("mybusiness.com")

You can configure the cookie value - To Woopra, this is equivalent to the browser cookie or anonymous user ID - required only if the user is not identified with an email or an id property

woopra.set_cookie('ABCXYAZ111')

You can also configure the timeout (in milliseconds, defaults to 30000 - equivalent to 30 seconds) after which the event will expire and the visit will be marked as offline:

# set the timeout to 15 seconds:
woopra.set_idle_timeout(15000)

You can also configure the source ip address:

woopra.set_ip_address('66.228.55.188')

You can also configure the user agent:

woopra.set_user_agent('Mozilla/Agent..............)

You can also configure the secure (https) tracking:

woopra.set_secure(True)

To identify a user, you should use the identify() function. You can choose to identify the visitor with his EMAIL, or with a UNIQUE_ID of your choice (in this case, make sure to re-use the same ID for a given visitor accross different visits).

woopra.identify(
	{
		'email' : 'tigi@mail.com',
		'name' : 'Tigi Brombo',
		'admin' : False
	}
)

And you're ready to start tracking events:

woopra.track("play", {
	"artist" : "Dave Brubeck",
	"song" : "Take Five",
	"genre" : "Jazz"
})

Or just push the user information (without event tracking) by doing:

woopra.push()

Releases

No releases published

Packages

No packages published

Languages