8000 GitHub - Codejune/aiopyupbit: aiopyupbit is python wrapper for upbit API for asyncio and Python
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Codejune/aiopyupbit

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

aiopyupbit

aiopyupbit is python wrapper for upbit API for asyncio and Python which is base on pyupbit

Installation

Installing: pip install aiopyupbit

Usage

aiopyupbit syntax strives to be similar to pyupbit.

import asyncio
import aiopyupbit

async def main():
    print(await aiopyupbit.get_tickers())
    print(await aiopyupbit.get_current_price("KRW-BTC"))
    print(await aiopyupbit.get_current_price(["KRW-BTC", "KRW-XRP"]))
    print(await aiopyupbit.get_ohlcv("KRW-BTC"))
    ...

if __name__ == "__main__":
    loop = asyncio.new_event_loop()
    asyncio.set_event_loop(loop)
    loop.run_until_complete(main)

About

Some features are not currently implemented:

  • WebSocketManager class

Issues

Please report any issues via github issues

About

aiopyupbit is python wrapper for upbit API for asyncio and Python

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

0