Skip to main content

No project description provided

Project description

Get a UNICORN Binance Suite License

Github GitHub Release GitHub Downloads Anaconda Release Anaconda Downloads PyPi Release PyPi Downloads License Supported Python Version PyPI - Status codecov CodeQL Unit Tests Build and Publish GH+PyPi Build and Publish Anaconda Read the Docs Read How To`s Telegram Gitter

LUCIT-UBLDC-Banner

UNICORN Binance Local Depth Cache

Description | Installation | How To | Documentation | Examples | Change Log | Wiki | Social | Notifications | Bugs | Contributing | Leave a review |Disclaimer | Commercial Support

A local Binance DepthCache Manager for Python that supports multiple depth caches in one instance in a easy, fast, flexible, robust and fully-featured way.

The organization of the DepthCache takes place in the same asyncio loop as the reception of the websocket data. The full stack of the UBS modules (REST, WebSocket and DepthCache) can be downloaded and installed by PyPi and Anaconda as a Python C extension for maximum performance.

Part of 'UNICORN Binance Suite'.

Get a UNICORN Binance Suite License

To run modules of the UNICORN Binance Suite you need a valid license!

Create a local depth_cache for Binance with just 3 lines of code:

import unicorn_binance_local_depth_cache

ubldc = unicorn_binance_local_depth_cache.BinanceLocalDepthCacheManager(exchange="binance.com")
ubldc.create_depth_cache("BTCUSDT")

Get the asks and bids depth with:

asks = ubldc.get_asks("BTCUSDT")
bids = ubldc.get_bids("BTCUSDT")

Catch an exception, if the depth_cache is out of sync while accessing its data:

try:
    print(f"Top 10 asks: {ubldc.get_asks(market=market)[:10]}")
    print(f"Top 10 bids: {ubldc.get_bids(market=market)[:10]}")
except DepthCacheOutOfSync as error_msg:
    print(f"ERROR: {error_msg}")

Stop and delete a depth_cache:

ubldc.stop_depth_cache("BTCUSDT")

Stop the full instance:

ubldc.stop_manager()

Discover more possibilities.

Description

The Python package UNICORN Binance Local Depth Cache provides a local depth_cache for the Binance Exchanges Binance (+Testnet), Binance Futures (+Testnet) - more are coming soon.

The algorithm of the depth_cache management was designed according to these instructions:

By create_depth_cache() the depth_cache is started and initialized, that means for each depth_cache you want to create a separate thread is started. As soon as at least one depth update is received via websocket, a REST snapshot is downloaded and the depth updates are applied to it, keeping it in sync in real-time. Once this is done, the state of the cache is set to "synchronous".

Data in the depth_cache can be accessed with 'get_asks()' and 'get_bids()'. If the state of the depth_cache is not synchronous during access, the exception 'DepthCacheOutOfSync' is thrown.

The depth_cache will immediately start an automatic re-initialization if a gap in the UpdateID`s is detected (missing update event) or if the websocket connection is interrupted. As soon as this happens the state of the depth_cache is set to "out of sync" and when accessing the cache the exception 'DepthCacheOutOfSync' is thrown.

Why a local depth_cache?

A local depth_cache is the fastest way to access the current order book depth at any time while transferring as little data as necessary. A REST snapshot takes a lot of time and the amount of data that is transferred is relatively large. Continuous full transmission of the order book via websocket is faster, but the amount of data is huge. A local depth_cache is initialized once with a REST snapshot and then handles Diff. Depth updates applied by the websocket connection. By transferring a small amount of data (only the changes), a local depth_cache is kept in sync in real time and also allows extremely fast (local) access to the data without exceeding the Binance request weight limits.

What are the benefits of the UNICORN Binance Local Depth Cache?

  • Always know if the cache is in sync! If the depth_cache is out of sync, the exception 'DepthCacheOutOfSync' is thrown or ask with is_depth_cache_synchronized().
  • If a depth cache is out of sync it gets refreshed automatically within a few seconds.
  • 100% Websocket auto-reconnect!
  • Supported Exchanges
Exchange Exchange string
Binance binance.com
Binance Testnet binance.com-testnet
Binance USD-M Futures binance.com-futures
Binance USD-M Futures Testnet binance.com-futures-testnet
More are coming ... -

If you like the project, please star it on GitHub!

Installation and Upgrade

The module requires Python 3.7 or above, as it depends on Pythons latest asyncio features for asynchronous/concurrent processing.

For the PyPy interpreter we offer packages only from Python version 3.9 and higher.

Anaconda packages are available from Python version 3.8 and higher.

The current dependencies are listed here.

If you run into errors during the installation take a look here.

A Cython binary, PyPy or source code based CPython wheel of the latest version with pip from PyPI

Our Cython and PyPy Wheels are available on PyPI, these wheels offer significant advantages for Python developers:

  • Performance Boost with Cython Wheels: Cython is a programming language that supplements Python with static typing and C-level performance. By compiling Python code into C, Cython Wheels can significantly enhance the execution speed of Python code, especially in computationally intensive tasks. This means faster runtimes and more efficient processing for users of our package.
  • PyPy Wheels for Enhanced Efficiency: PyPy is an alternative Python interpreter known for its speed and efficiency. It uses Just-In-Time (JIT) compilation, which can dramatically improve the performance of Python code. Our PyPy Wheels are tailored for compatibility with PyPy, allowing users to leverage this speed advantage seamlessly.

Both Cython and PyPy Wheels on PyPI make the installation process simpler and more straightforward. They ensure that you get the optimized version of our package with minimal setup, allowing you to focus on development rather than configuration.

Installation

pip install unicorn-binance-local-depth-cache

Update

pip install unicorn-binance-local-depth-cache --upgrade

A Conda Package of the latest version with conda from Anaconda

The unicorn-binance-local-depth-cache package is available with Conda through the lucit channel.

For optimal compatibility and performance, it is recommended to source the necessary dependencies from the conda-forge channel.

Installation

conda config --add channels conda-forge
conda config --add channels lucit
conda install -c lucit unicorn-binance-local-depth-cache

Update

conda update -c lucit unicorn-binance-local-depth-cache

From source of the latest release with PIP from GitHub

Linux, macOS, ...

Run in bash:

pip install https://github.com/LUCIT-Systems-and-Development/unicorn-binance-local-depth-cache/archive/$(curl -s https://api.github.com/repos/LUCIT-Systems-and-Development/unicorn-binance-local-depth-cache/releases/latest | grep -oP '"tag_name": "\K(.*)(?=")').tar.gz --upgrade

Windows

Use the below command with the version (such as 1.0.0) you determined here:

pip install https://github.com/LUCIT-Systems-and-Development/unicorn-binance-local-depth-cache/archive/1.0.0.tar.gz --upgrade

From the latest source (dev-stage) with PIP from GitHub

This is not a release version and can not be considered to be stable!

pip install https://github.com/LUCIT-Systems-and-Development/unicorn-binance-local-depth-cache/tarball/master --upgrade

Conda environment, Virtualenv or plain Python

Download the latest release or the current master branch and use:

  • ./environment.yml
  • ./pyproject.toml
  • ./requirements.txt
  • ./setup.py

Change Log

https://lucit-systems-and-development.github.io/unicorn-binance-local-depth-cache/changelog.html

Documentation

Examples

Howto

Project Homepage

https://github.com/LUCIT-Systems-and-Development/unicorn-binance-local-depth-cache

Wiki

https://github.com/LUCIT-Systems-and-Development/unicorn-binance-local-depth-cache/wiki

Social

Receive Notifications

To receive notifications on available updates you can watch the repository on GitHub, write your own script with using is_update_available().

Follow us on Twitter or on Facebook for general news about the unicorn-binance-suite!

To receive news (like inspection windows/maintenance) about the Binance API`s subscribe to their telegram groups:

How to report Bugs or suggest Improvements?

List of planned features - click thumbs-up if you need one of them or suggest a new feature!

Before you report a bug, try the latest release. If the issue still exists, provide the error trace, OS and Python version and explain how to reproduce the error. A demo script is appreciated.

If you dont find an issue related to your topic, please open a new issue!

Report a security bug!

Contributing

UNICORN Binance Local Depth Cache is an open source project which welcomes contributions which can be anything from simple documentation fixes and reporting dead links to new features. To contribute follow this guide.

Contributors

Contributors

We love open source!

You want to say Thank You?

We hope you are enjoying using our libraries and that they are proving to be useful to you. If you have a moment, we would greatly appreciate it if you could leave us a review on Google. Thank you for your support!

Disclaimer

This project is for informational purposes only. You should not construe this information or any other material as legal, tax, investment, financial or other advice. Nothing contained herein constitutes a solicitation, recommendation, endorsement or offer by us or any third party provider to buy or sell any securities or other financial instruments in this or any other jurisdiction in which such solicitation or offer would be unlawful under the securities laws of such jurisdiction.

If you intend to use real money, use it at your own risk!

Under no circumstances will we be responsible or liable for any claims, damages, losses, expenses, costs or liabilities of any kind, including but not limited to direct or indirect damages for loss of profits.

Commercial Support

Get professional and fast support

Do you need a developer, operator or consultant? Contact us for a non-binding initial consultation!

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

unicorn-binance-local-depth-cache-1.0.0.tar.gz (241.3 kB view hashes)

Uploaded Source

Built Distributions

unicorn_binance_local_depth_cache-1.0.0-cp312-cp312-win_amd64.whl (153.2 kB view hashes)

Uploaded CPython 3.12 Windows x86-64

unicorn_binance_local_depth_cache-1.0.0-cp312-cp312-win32.whl (137.8 kB view hashes)

Uploaded CPython 3.12 Windows x86

unicorn_binance_local_depth_cache-1.0.0-cp312-cp312-musllinux_1_1_x86_64.whl (1.0 MB view hashes)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

unicorn_binance_local_depth_cache-1.0.0-cp312-cp312-musllinux_1_1_i686.whl (999.2 kB view hashes)

Uploaded CPython 3.12 musllinux: musl 1.1+ i686

unicorn_binance_local_depth_cache-1.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view hashes)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

unicorn_binance_local_depth_cache-1.0.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (997.4 kB view hashes)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

unicorn_binance_local_depth_cache-1.0.0-cp312-cp312-macosx_10_9_x86_64.whl (177.3 kB view hashes)

Uploaded CPython 3.12 macOS 10.9+ x86-64

unicorn_binance_local_depth_cache-1.0.0-cp311-cp311-win_amd64.whl (155.2 kB view hashes)

Uploaded CPython 3.11 Windows x86-64

unicorn_binance_local_depth_cache-1.0.0-cp311-cp311-win32.whl (138.6 kB view hashes)

Uploaded CPython 3.11 Windows x86

unicorn_binance_local_depth_cache-1.0.0-cp311-cp311-musllinux_1_1_x86_64.whl (1.0 MB view hashes)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

unicorn_binance_local_depth_cache-1.0.0-cp311-cp311-musllinux_1_1_i686.whl (1.0 MB view hashes)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

unicorn_binance_local_depth_cache-1.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view hashes)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

unicorn_binance_local_depth_cache-1.0.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.0 MB view hashes)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

unicorn_binance_local_depth_cache-1.0.0-cp311-cp311-macosx_10_9_x86_64.whl (188.7 kB view hashes)

Uploaded CPython 3.11 macOS 10.9+ x86-64

unicorn_binance_local_depth_cache-1.0.0-cp310-cp310-win_amd64.whl (154.8 kB view hashes)

Uploaded CPython 3.10 Windows x86-64

unicorn_binance_local_depth_cache-1.0.0-cp310-cp310-win32.whl (139.1 kB view hashes)

Uploaded CPython 3.10 Windows x86

unicorn_binance_local_depth_cache-1.0.0-cp310-cp310-musllinux_1_1_x86_64.whl (945.1 kB view hashes)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

unicorn_binance_local_depth_cache-1.0.0-cp310-cp310-musllinux_1_1_i686.whl (920.5 kB view hashes)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

unicorn_binance_local_depth_cache-1.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (947.7 kB view hashes)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

unicorn_binance_local_depth_cache-1.0.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (914.6 kB view hashes)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

unicorn_binance_local_depth_cache-1.0.0-cp310-cp310-macosx_10_9_x86_64.whl (188.6 kB view hashes)

Uploaded CPython 3.10 macOS 10.9+ x86-64

unicorn_binance_local_depth_cache-1.0.0-cp39-cp39-win_amd64.whl (154.7 kB view hashes)

Uploaded CPython 3.9 Windows x86-64

unicorn_binance_local_depth_cache-1.0.0-cp39-cp39-win32.whl (139.0 kB view hashes)

Uploaded CPython 3.9 Windows x86

unicorn_binance_local_depth_cache-1.0.0-cp39-cp39-musllinux_1_1_x86_64.whl (944.0 kB view hashes)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

unicorn_binance_local_depth_cache-1.0.0-cp39-cp39-musllinux_1_1_i686.whl (919.6 kB view hashes)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

unicorn_binance_local_depth_cache-1.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (946.6 kB view hashes)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

unicorn_binance_local_depth_cache-1.0.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (914.5 kB view hashes)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

unicorn_binance_local_depth_cache-1.0.0-cp39-cp39-macosx_10_9_x86_64.whl (188.6 kB view hashes)

Uploaded CPython 3.9 macOS 10.9+ x86-64

unicorn_binance_local_depth_cache-1.0.0-cp38-cp38-win_amd64.whl (155.9 kB view hashes)

Uploaded CPython 3.8 Windows x86-64

unicorn_binance_local_depth_cache-1.0.0-cp38-cp38-win32.whl (139.7 kB view hashes)

Uploaded CPython 3.8 Windows x86

unicorn_binance_local_depth_cache-1.0.0-cp38-cp38-musllinux_1_1_x86_64.whl (1.1 MB view hashes)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

unicorn_binance_local_depth_cache-1.0.0-cp38-cp38-musllinux_1_1_i686.whl (1.0 MB view hashes)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

unicorn_binance_local_depth_cache-1.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (973.6 kB view hashes)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

unicorn_binance_local_depth_cache-1.0.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (940.1 kB view hashes)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

unicorn_binance_local_depth_cache-1.0.0-cp38-cp38-macosx_10_9_x86_64.whl (184.8 kB view hashes)

Uploaded CPython 3.8 macOS 10.9+ x86-64

unicorn_binance_local_depth_cache-1.0.0-cp37-cp37m-win_amd64.whl (149.8 kB view hashes)

Uploaded CPython 3.7m Windows x86-64

unicorn_binance_local_depth_cache-1.0.0-cp37-cp37m-win32.whl (135.8 kB view hashes)

Uploaded CPython 3.7m Windows x86

unicorn_binance_local_depth_cache-1.0.0-cp37-cp37m-musllinux_1_1_x86_64.whl (862.3 kB view hashes)

Uploaded CPython 3.7m musllinux: musl 1.1+ x86-64

unicorn_binance_local_depth_cache-1.0.0-cp37-cp37m-musllinux_1_1_i686.whl (821.7 kB view hashes)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

unicorn_binance_local_depth_cache-1.0.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (853.6 kB view hashes)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

unicorn_binance_local_depth_cache-1.0.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (817.2 kB view hashes)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

unicorn_binance_local_depth_cache-1.0.0-cp37-cp37m-macosx_10_9_x86_64.whl (180.8 kB view hashes)

Uploaded CPython 3.7m macOS 10.9+ x86-64

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page