Latest Threat Research:SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains.Details
Socket
Book a DemoInstallSign in
Socket

huobi

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

huobi

Huobi Python SDK

pipPyPI
Version
0.1.12
Maintainers
1

Huobi

Huobi Python SDK

Requirements

Python>=3.6

Installaton

pip install huobi

Usage

Rest API

Example:

>>> from huobi import HuobiRestClient
>>> client = HuobiRestClient(access_key=..., secret_key=...)
>>> trades = client.market_history_trade(symbol='ethusdt').data

To see all available methods and their arguments:

>>> from huobi import HuobiRestClient
>>> help(HuobiRestClient)
>>> help(HuobiRestClient.symbols)

Real Time API

Rudimentary websocket subscription support

Please refer to Huobi's documentation for available subscribe channels.

If callback is not a coroutine function, run_in_executor with default Executor will be called.

Example:

from huobi import subscribe
>>> def btc_callback(data):
        print(data)
>>> async def eth_callback(data):
        print(data)
>>> task = subscribe({
        'market.btcusdt.kline.1min': {
            'callback': btc_callback
        },
        'market.ethusdt.kline.1min': {
            'callback': eth_callback
        },
    })
>>> asyncio.get_event_loop().run_until_complete(task)

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts