?> Snowplow Python Analytics SDK 0.1.0 released | Snowplow
Snowplow Outperforms GA4 in GigaOm Comparative Evaluation.
Read More
  1. Home
  2. Blog
  3. Releases
Releases

Snowplow Python Analytics SDK 0.1.0 released

Following in the footsteps of the Snowplow Scala Analytics SDK, we are happy to announce the release of the Snowplow Python Analytics SDK! This library makes your Snowplow enriched events easier to work with in Python-compatible data processing frameworks such as Apache Spark and AWS Lambda.

Some good use cases for the SDK include:

  1. Performing event data modeling in PySpark as part our Hadoop batch pipeline
  2. Developing machine learning models on your event data using PySpark (e.g. using Databricks)
  3. Performing analytics-on-write in AWS Lambda as part of our Kinesis real-time pipeline:

sdk-usage-img

Read on below the jump for:

  1. Overview
  2. Installation
  3. Usage
  4. Getting help

1. Overview

Snowplow’s ETL process outputs enriched events in a TSV. This TSV currently has 131 fields, which can make it difficult to work with directly. The Snowplow Python Analytics SDK currently supports one transformation: turning this TSV into a more tractable JSON.

The transformation algorithm used to do this is the same as the one used in the Kinesis Elasticsearch Sink and the Snowplow Scala Analytics SDK, with one exception: when a field of the input TSV is empty, we leave that field out of the output JSON entirely rather than using a field with the value null. Here is an example output JSON:

{ "app_id":"demo", "platform":"web","etl_tstamp":"2015-12-01T08:32:35.048Z", "collector_tstamp":"2015-12-01T04:00:54.000Z","dvce_tstamp":"2015-12-01T03:57:08.986Z", "event":"page_view","event_id":"f4b8dd3c-85ef-4c42-9207-11ef61b2a46e", "name_tracker":"co","v_tracker":"js-2.5.0","v_collector":"clj-1.0.0-tom-0.2.0", ... }

There are special rules for how custom contexts and unstructured events are added to the JSON. For example, if an enriched event contained a com.snowplowanalytics.snowplow/link_click/jsonschema/1-0-1 unstructured event, then the final JSON would contain:

{ ... "unstruct_event_com_snowplowanalytics_snowplow_link_click_1": { "targetUrl":"http://www.example.com", "elementClasses":["foreground"], "elementId":"exampleLink" },...

For more examples and detail on the algorithm used, check out the Kinesis Elasticsearch Sink wiki page.

2. Installation

The SDK is available on PyPI:

pip install snowplow_analytics_sdk

3. Usage

Use the SDK like this:

import snowplow_analytics_sdk.event_transformer import snowplow_analytics_sdk.snowplow_event_transformation_exception try: print(snowplow_analytics_sdk.event_transformer.transform(my_enriched_event_tsv)) except snowplow_analytics_sdk.snowplow_event_transformation_exception.SnowplowEventTransformationException as e: for error_message in e.error_messages: print(error_message)

If there are any problems in the input TSV (such as unparseable JSON fields or numeric fields), the transform method will throw a SnowplowEventTransformationException. This exception contains a list of error messages – one for every problematic field in the input.

For more information, check out the Python Analytics SDK wiki page.

4. Getting help

If you have any questions or run into any problems, please raise an issue or get in touch with us through the usual channels.

And if there’s another Snowplow Analytics SDK you’d like us to prioritize creating, please let us know on the forums!

More about
the author

Avatar
Snowplow Team
View author

Ready to start creating rich, first-party data?

Image of the Snowplow app UI