menu
Is this helpful?

# Python

TIP

Before you begin, please read Preparation before Data Ingestion.

Latest version: v3.0.0

Update time: 2023-10-07

Resource download: Source Code (opens new window)

Notice

Current documentation applies to v3.0.0 and later. For historical versions, see Data Ingestion Guide - Python (V2) (opens new window)

# SDK Integration

1.1 Get Python SDK through pip

# install SDK
pip install ThinkingDataSdk

# update SDK
pip install --upgrade ThinkingDataSdk

1.2 Logbus Integration

We recommend using SDK+LogBus to track and report data on server. You can refer to the following documents to complete the installation of Logbus: LogBus User Guide

# Initialization

The following is the sample code for SDK initialization:

from tgasdk.sdk import *
te = TDAnalytics(TDLogConsumer("LOG_DIRECTORY"))

LOG_DIRECTORY is the local folder path.

# Common Features

In order to ensure that the distinct ID and account ID can be bound smoothly, if your game uses the distinct ID and account ID, we strongly recommend that you upload these two IDs at the same time, otherwise the account will not match, causing users to double count. For specific ID binding rules, please refer to the chapter on User Identification Rules.

# 3.1 Sending Events

You can call track to upload events. It is suggested that you set event properties based on the data tracking plan drafted previously. Here is an example of a user buying an item:

distinct_id = "ABCDEF123456"
account_id = "TE10001"
properties = {
    "#time": datetime.datetime.now(),
    "#ip": "192.168.1.1",
    "Product_Name": "商品名",
    "Price": 30,
    "OrderId": "订单号abc_123"
}
try:
    te.track(distinct_id, account_id, "Payment", properties)
except Exception as e:
    print(e)
  • Key is the name of the property and refers to the string type. It must start with a character, and contain numbers, characters (insensitive to case, and upper cases would be transformed into lower cases by TE) and underscores "_", with a maximum length of 50 characters.
  • Value, the value of the property, supports string, numbers, Boolean, time, object, array object, and array

The requirements for event properties and user properties are the same as that for super properties

# 3.2 User Properties

You can set general user properties by calling user_set API. The original properties would be replaced by the properties uploaded via this API. If no user properties are set before, user properties will be newly created. The type of newly-created user properties must conform to that of the uploaded properties. User name setting is taken as the example here:

properties = {"user_name": "ABC"}
try:
    te.user_set(account_id="account_id", distinct_id="distinct_id", properties=properties)
except Exception as e:
    print(e)

# Best Practice

The following sample code covers all the above-mentioned operations. It is recommended that the codes be used in the following steps:

from tgasdk.sdk import *

te = TDAnalytics(TDLogConsumer("LOG_DIRECTORY"))

properties = {
    "#time": datetime.datetime.now(),  
    "#ip": "192.168.1.1", 
    "Product_Name": "goods_name"
}
try:
    te.track("distinct_id", "account_id", "Payment", properties)
except Exception as e:
    print(e)

user_properties = {"user_name": "ABC"}
try:
    te.user_set(account_id="account_id", distinct_id="distinct_id", properties=user_properties)
except Exception as e:
    print(e)

te.flush()