Skip to main content

Analytics and bug tracking for Python desktop apps

Project description

nucleus-python PyPI PyPI - Python Version

We tried to make it as simple as possible to report the data you need to analyze your app usage and improve it.

This module is compatible with Python 3+.

To start using this module, sign up and get an app ID on Nucleus.sh.

Installation

$ pip install nucleus-python

Basic usage

Add the following code to import Nucleus and init the analytics.

Don't use the import ... from syntax as you won't be able to set the module options like app_id.

import nucleus

nucleus.app_id = 'your app id'

nucleus.set_props({
	'version': '0.5.0', # Set app version (Nucleus cannot detect it)
	'userId': 'richard_hendrix'
})

nucleus.app_started()

Only use app_started() once per session, if you are using Nucleus in several files call app_started() the earliest possible.

Sign up and get a tracking ID for your app here.

Options

You can init Nucleus with options:

nucleus.report_interval = 20 # interval (in seconds) between server com
nucleus.disable_tracking = False # completely disable tracking
nucleus.debug = False # Show internal logs to help debug
nucleus.auto_user_id = False # Assign the user an ID

Identify users

You can track specific users actions on the 'User Explorer' section of your dashboard by assigning an user ID.

It can be any value as long as it is a string.

nucleus.set_user_id('someUniqueUserId')

Alternatively, set the auto_user_id option of the module to True to automatically assign the user an ID based on his username and hostname.

Modify automatic data

You can overwrite some properties or fill data that wasn't detected.

You have to do it before calling app_started() for this to work

It is a good idea to set your app version directly as Nucleus cannot detect it for the moment.

nucleus.set_props({
	'version': '0.5.0',
	'locale': 'en_US'
})

Track custom data

You can also add custom data along with the automatic data.

Those will be visible in your user dashboard if you previously set an user ID.

The module will remember past properties so you can use nucleus.set_props multiple times without overwriting past props.

Properties can either numbers, strings or booleans. Nested properties or arrays aren't supported at the moment.

nucleus.set_props({
	"age": 34,
	"name": 'Richard Hendricks',
	"job": 'CEO'
})

To overwrite past properties, set the second parameter to True.

nucleus.set_props({
	"age": 23
}, True)

Errors

To catch errors with Nucleus, simply add the tracking code to an exception and pass the exception as the unique parameter.

Nucleus will extract the relevant informations and show them in your dashboard.

try:
    my_app()
except Exception as e:
	nucleus.track_error(e)

Add this at the outermost level of your code to handle any otherwise uncaught exceptions before terminating.

The advantage of except Exception over the bare except is that there are a few exceptions that it wont catch, most obviously KeyboardInterrupt and SystemExit.

Events

After initializing Nucleus, you can send your own custom events.

nucleus.track("PLAYED_TRACK")

They are a couple event names that are reserved by Nucleus: init, error: and nucleus:.

You shouldn't report events containing these strings.

Tracking with data

You can add extra information to tracked events, as an object.

Properties can either numbers, strings or booleans.

Nested properties or arrays aren't supported at the moment.

Example:

nucleus.track("PLAYED_TRACK", data = {
	"trackName": 'My Awesome Song',
	"duration": 120
})

Toggle tracking

This will completely disable any communication with Nucleus' servers.

To opt-out your users from tracking:

nucleus.disable_tracking()

and to opt back in:

nucleus.enable_tracking()

This doesn't persist after restarts so you have to handle saving the setting.


Contact hello@nucleus.sh for any inquiry

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

nucleus_python-0.3.0-py3-none-any.whl (8.8 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page