Metadata-Version: 2.1
Name: ThinkingDataSdk
Version: 1.3.0
Summary: Official ThinkingData Analytics library for Python
Home-page: https://github.com/ThinkingDataAnalytics/python-sdk
Author: ThinkingData, Inc.
Author-email: sdk@thinkingdata.cn
License: Apache
Platform: all
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Libraries
Description-Content-Type: text/markdown
Requires-Dist: requests

# Thinking Data Analytics

This is the official Python SDK for Thinking Data Analytics.

## Easy Installation

You can get Thinking Data Analytics SDK using pip.

pip install ThinkingDataSdk

Once the SDK is successfully installed, use the TGA SDK likes:

python
import tgasdk

tga = TGAnalytics(LoggingConsumer("F:/home/sdk/log"))
tga.track('dis',None,"shopping",properties)
tga.flush()
tga.close()

## To learn more

See our [full manual](http://doc.thinkinggame.cn/tgamanual/installation/python_sdk_installation.html)



