Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jamesqin-cn/tencent-mta-client

tencent mta client is python sdk encapsulate for tencent mta api
https://github.com/jamesqin-cn/tencent-mta-client

pypi python2 python3

Last synced: about 1 month ago
JSON representation

tencent mta client is python sdk encapsulate for tencent mta api

Awesome Lists containing this project

README

        

# Tencent MTA Client

## What is Tencent MTA Client?
腾讯移动数据分析平台([MTA](https://mta.qq.com/mta/ctr_index/opd))的python SDK

## Programming Language
- python 2.7
- python 3.7

## Installation
```
pip install tencent-mta-client
```

## Quick Start
```
from tencent.mta.client import MtaClient

class Test_MtaClient(unittest.TestCase):
def setUp(self):
self._mta = MtaClient("", "")

def test_GetUserActiveData(self):
data = self._mta.GetUserActiveData('2020-03-01', '2020-03-07')
print(data)

def test_GetUserBasicData(self):
data = self._mta.GetUserBasicData('2020-03-01', '2020-03-07')
print(data)
```

## Functions List
- 应用基本指标
- 应用基本指标
- Other(按需封装,欢迎pull request or mail to me)