Metadata-Version: 2.1
Name: btc-top-pool-api-sdk
Version: 1.0.1
Summary: Pool OpenAPI SDK.
Home-page: https://github.com/btc-top/pool-api-doc
Author: Mars Yuan
Author-email: marshalys@gmail.com
License: UNKNOWN
Description: pool open api sdk
        =====================
        
        ## setup
        
        ```shell script
        pip install btc-top-pool-api-sdk
        ```
        
        ## usage
        
        example code:
        ```python
        
        from btc_top_pool_api_sdk import Client
        
        
        open_api_url='https://test/open-api/'
        client_id='xxx'
        secret_key='xxxx'
        secret_salt='xxxxx'
        
        client = Client(
            url=open_api_url,
            client_id=client_id,
            secret_key=secret_key,
            secret_salt=secret_salt)
        
        result = client.call_api(
            'Speed.GetSubAccountAllWorkersHourlySpeedBulk',
            {'userName': 'test1', 'start': '2020-01-01 00:00:00', 'end': '2020-01-01 23:00:00'})
        
        print(result)
        ```
        
        
        
        History
        =======
        
        1.0.0 (2020-10-29)
        ------------------
        
        * First release.
        
        1.0.1 (2020-10-29)
        ------------------
        
        * Update readme.
        
Keywords: pool-api-sdk
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
