Metadata-Version: 2.1
Name: bitmex-async-rest
Version: 0.4.1
Summary: Async REST Api wrapper for BitMEX cryptocurrency derivatives exchange.
Home-page: https://github.com/andersea/bitmex-async-rest
License: MIT
Keywords: BitMEX,REST,AnyIO,asks,async
Author: Anders Ellenshøj Andersen
Author-email: andersa@ellenshoej.dk
Requires-Python: >=3.7,<4.0
Classifier: Development Status :: 4 - Beta
Classifier: Framework :: Trio
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: asks (>=2.4.8,<3.0.0)
Requires-Dist: ujson (>=3.1.0,<4.0.0)
Description-Content-Type: text/markdown

# BitMEX Async-Rest


[![PyPI](https://img.shields.io/pypi/v/bitmex_async_rest.svg)](https://pypi.python.org/pypi/bitmex-async-rest)
[![Build Status](https://img.shields.io/travis/com/andersea/bitmex-async-rest.svg)](https://travis-ci.com/andersea/bitmex-async-rest)

Async Rest API implementation for BitMEX cryptocurrency derivatives exchange.

* Free software: MIT license

## Features

* Supports authenticated connections using api keys.
* Based on asks and anyio. Should work on all anyio supported event loops.

## Non-features

* This is a beta api. Methods are probably named badly and a lot of stuff you might want is missing.

## Installation

This library requires Python 3.6 or greater. 

To install from PyPI:

    pip install bitmex-async-rest

## Client example

TODO

## API

Read the source code. (Welp..)

This library does not do retrys. If you get overload or similar errors, it is up to the client to handle them.

## Credits

Thanks to the [Trio](https://github.com/python-trio/trio), [Curio](https://github.com/dabeaz/curio), [AnyIO] (https://github.com/agronholm/anyio) and [asks](https://github.com/theelous3/asks) libraries for their awesome work.

