Metadata-Version: 2.1
Name: bitflyer-py
Version: 0.0.5
Summary: wrapper library for bitflyer api
Home-page: https://github.com/ti-ginkgo/bitflyer-python
Author: ishtos
Author-email: ginkgonut.9960@gmail.com
License: MIT
Keywords: bitflyer
Platform: UNKNOWN
Classifier: Programming Language :: Python
Description-Content-Type: text/markdown
Requires-Dist: requests

## bitflyer-python

```bitdlyer-python``` is a wrapper library for [bitFlyer's HTTP API](https://lightning.bitflyer.com/docs?lang=en#pagination) 


## install 
Using pip
```
$ pip install bitflyer-py
```

## usage
```
# Public API and Private API 
import bitflyer
api = bitflyer.API(api_key=<API_KEY>, api_secret=<API_SECRET>)

# Only Public API
api = bitflyer.API()
```

Public API does not require API Key, while Private API requires API Key authentication.

