Metadata-Version: 2.1
Name: bitmake
Version: 1.0.0
Summary: Official python3 BitMake exchange API
Home-page: UNKNOWN
Author: bitmake
Author-email: python-sdk@bitmake.com
License: MIT
Keywords: bitmake,exchange-api,crypto-exchange,digital-currency,trading
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Financial and Insurance Industry
Classifier: Topic :: Software Development
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: requests
Requires-Dist: websockets

# BitMake Python3 SDK 

This is BitMake Official Python3 SDK

## Installation

```
pip3 install bitmake
```

## Example

```python
from bitmake.rest import BitMakeApiClient

api_client = BitMakeApiClient(api_key='TestApiKey', api_secret='TestSecret')
order_response = api_client.create_order('BTC_USD', 'client_order_123', '10000', '0.01', 'BUY', 'LIMIT', 'GTC')
print(order_response)
```

