Metadata-Version: 2.1
Name: tisdk
Version: 0.0.12
Summary: python sdk of taiqiyun
Home-page: UNKNOWN
License: UNKNOWN
Description: 
        ```shell
        pip install tisdk
        tireq --help
        
        tireq username secret_key method url [foo:bar,foo2:bar2...]
        
        tireq to_9012345678_grs 3292a4f76c0d46bf post http://taiqiyun.wowfintech.cn/grs/v1/open_match name:oppo
        
        ```
        
        ```python
        import tisdk
        
        username = 'to_9012345678_grs'
        secret_key = '3292a4f76c0d46bf'
        method = 'post'
        url = 'http://taiqiyun.wowfintech.cn/grs/v1/open_match'
        data = {'name': 'oppo'}
        
        tisdk.ti_request(username, secret_key, method, url, data)
        
        ti = tisdk.Ti(username, secret_key)
        ti.request(method, url, data)
        
        ```
        
Platform: UNKNOWN
Description-Content-Type: text/markdown
