Metadata-Version: 2.1
Name: aiopyupbit
Version: 0.1.2
Summary: python wrapper for upbit API for asyncio and Python
Home-page: https://github.com/codejune/aiopyupbit
Author: Codejune
Author-email: kbj9704@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: pandas (>=1.2.4)
Requires-Dist: aiohttp (>=3.7.4)
Requires-Dist: pyjwt (>=2.1.0)
Requires-Dist: pytz (>=2020.5)
Requires-Dist: python-dateutil (>=2.8.1)
Requires-Dist: six (>=1.15.0)

aiopyupbit
==========

aiopyupbit is python wrapper for upbit API for asyncio and Python 
which is base on [pyupbit](https://github.com/sharebook-kr/pyupbit)


Installation
------------

Installing: `pip install aiopyupbit`

Usage
-----

aiopyupbit syntax strives to be similar to [pyupbit](https://github.com/sharebook-kr/pyupbit).

``` python
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__":
    asyncio.run(main())
```
About
-----

Some features are not currently implemented: 
* Raise pyupbit defined error
* WebSocketManager class

Issues
------
Please report any issues via [github issues](https://github.com/codejune/aiopyupbit/issues)

