Metadata-Version: 2.1
Name: python-upbit
Version: 0.1.1
Summary: A python wrapper for UPBit
Home-page: https://github.com/time-percent/python-upbit
Author: Jungwoo Song
Author-email: timepercent24@gmail.com
License: MIT
Project-URL: Bug Reports, https://github.com/time-percent/python-upbit/issues
Project-URL: Source, https://github.com/time-percent/python-upbit/
Keywords: upbit,crypto,bitcoin
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: requests
Requires-Dist: pyjwt
Requires-Dist: ratelimit
Requires-Dist: backoff

A python3 wrapper for UPBit

# install

```bash
pip3 install python-upbit
```

# Usage 

```python
from upbit import UPBitClient

# You do not need an api key for Quotation APIs
print(UPBitClient.get_markets()) 

api_key = 'your api key'
api_secret = 'a very secret key'

c = UPBitClient(api_key, api_secret)
print(c.accounts)
```


