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 details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

unicorn_binance_local_depth_cache-1.0.0-pp39-pypy39_pp73-win_amd64.whl (128.7 kB view details)

Uploaded PyPyWindows x86-64

unicorn_binance_local_depth_cache-1.0.0-pp38-pypy38_pp73-win_amd64.whl (129.2 kB view details)

Uploaded PyPyWindows x86-64

unicorn_binance_local_depth_cache-1.0.0-pp37-pypy37_pp73-win_amd64.whl (129.2 kB view details)

Uploaded PyPyWindows x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.12musllinux: 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 details)

Uploaded CPython 3.12manylinux: 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 details)

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

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

Uploaded CPython 3.12macOS 10.9+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.11musllinux: 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 details)

Uploaded CPython 3.11manylinux: 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 details)

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

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.10musllinux: 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 details)

Uploaded CPython 3.10manylinux: 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 details)

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

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.9musllinux: 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 details)

Uploaded CPython 3.9manylinux: 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 details)

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

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.8musllinux: 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 details)

Uploaded CPython 3.8manylinux: 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 details)

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

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

Uploaded CPython 3.8macOS 10.9+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

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

Uploaded CPython 3.7mmusllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.7mmusllinux: 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 details)

Uploaded CPython 3.7mmanylinux: 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 details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.7mmacOS 10.9+ x86-64

File details

Details for the file unicorn-binance-local-depth-cache-1.0.0.tar.gz.

File metadata

File hashes

Hashes for unicorn-binance-local-depth-cache-1.0.0.tar.gz
Algorithm Hash digest
SHA256 ab21b20672f0e84a4b5d20315fa2b7afffd189aa57ab2fcd24ccdeeb85990ce1
MD5 c7e165f1b606dc71780606e91cc4f523
BLAKE2b-256 c20c0c5c07bd18fca276dbeeaa1dd98edc6be2fb68865299aea37e327b3bfdd8

See more details on using hashes here.

File details

Details for the file unicorn_binance_local_depth_cache-1.0.0-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-1.0.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 165258c33fd0b7a3fb8bbc86b835445d4cfe38ae92e7fe6d352d6e6b80c2d714
MD5 1e429925b2c3a89f9c37b911c60d7055
BLAKE2b-256 04f7708c39f59f62b06e0bde454d7d6bdde64befb793dffbaf74e89b2cb16644

See more details on using hashes here.

File details

Details for the file unicorn_binance_local_depth_cache-1.0.0-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-1.0.0-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a39ab961d71009e21484305f40db49b1665724f5eee1373879e17c3420d88974
MD5 e503831c2e29b3d36141b7685d7f5a86
BLAKE2b-256 aaa1a68de69a4c74443816791cea805e780c6d8f8b8576540718057461a10ef5

See more details on using hashes here.

File details

Details for the file unicorn_binance_local_depth_cache-1.0.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-1.0.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c7b303c73f26a70544a8df17be015cbb9f87fd18df879bd16f3c6388cd36b3f6
MD5 89ea49e26cb5c240471259f6875b2530
BLAKE2b-256 b5ee16682963572b5771df69ebb26b72b95e9f7906c0d7088e75cbfdce055012

See more details on using hashes here.

File details

Details for the file unicorn_binance_local_depth_cache-1.0.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-1.0.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2e60ee82037443c1d88fb0f38af19c46a48fba698f98368c0bec9265782f3942
MD5 7d584699ce633ea11082e947d1bc5bb2
BLAKE2b-256 4feead7bb263d090ad900801fcc7cb6960a24b248200f75ce9d5924703963d00

See more details on using hashes here.

File details

Details for the file unicorn_binance_local_depth_cache-1.0.0-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-1.0.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 4f8d715aaf92b5e6f1979eef4bd388723aaad291e80da146a4e88a9a76ada884
MD5 00d735ed38386fcd6304f2cce7d99a9f
BLAKE2b-256 18fa5bc102553aee26eff24bd0dfe621b33d34f67bd3845016ac7091a3c50ea1

See more details on using hashes here.

File details

Details for the file unicorn_binance_local_depth_cache-1.0.0-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-1.0.0-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9cbecfcfc3b612639f39bbb4df36fa28e3a609a0df240e366bc59e50e3dbfe9e
MD5 77b572c20589147386bfefe007a9da4b
BLAKE2b-256 75c5fceca424e79cc80efd30ba066ff536841fe9ac8a1aeef97da1794039056b

See more details on using hashes here.

File details

Details for the file unicorn_binance_local_depth_cache-1.0.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-1.0.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 553d7a1919fc11c37d3d18ca16ff1d3ac81f3b801a0621c4ad183424bcd8201a
MD5 26f3188a80a36ef0f484f1e1a5d3e190
BLAKE2b-256 66eb706adbd92723fe5c722566a4a80f064541c872fa0843e9c0a6feb807eb9f

See more details on using hashes here.

File details

Details for the file unicorn_binance_local_depth_cache-1.0.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-1.0.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cdde6c71214beb39fc61296b10da898aa1c61651fc4e07ae8bf5c54e7c07ed7c
MD5 defc2378be40e8c3ed1c9228e66f7b37
BLAKE2b-256 d75b1c8f2880382c26b386bee0af8ddb7bf4015bec6fc16f499a699383aeec7e

See more details on using hashes here.

File details

Details for the file unicorn_binance_local_depth_cache-1.0.0-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-1.0.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 df07a55a6dfdaeed80b005551ed5e8b65f3f6c38e7d4628202242bb8765811ce
MD5 0b04c4e9829c9aeb483fdac1aafb1532
BLAKE2b-256 82f15b17f7e2dc5adafa5a1528e301db7e5c9953afaf8bfcf1ed536ac5301736

See more details on using hashes here.

File details

Details for the file unicorn_binance_local_depth_cache-1.0.0-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-1.0.0-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 35bbe29b9b44ab3f6042cf3157ae304b1f3a18a5314e18aaff4a679f47b7c797
MD5 a526591e8e937f95ee53c0f8b0493aff
BLAKE2b-256 74cbeabf1b124e01f4584ffe674d01cb79f4db6a30d760fdafeeee10f37a6027

See more details on using hashes here.

File details

Details for the file unicorn_binance_local_depth_cache-1.0.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-1.0.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c48032d6d0ed5200170bdc8f54dcb2895018fd082c3c9d25ee0ee19f8e683d39
MD5 ff7bcfb24a5d31679039f19a7d269e51
BLAKE2b-256 4b41023a736a9237014ce6cf1c249ef461eeada9ca6782ff5ab25f880b6264ed

See more details on using hashes here.

File details

Details for the file unicorn_binance_local_depth_cache-1.0.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-1.0.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1da0ac5e5674ac5604d25a8f6ddbbbb173ca5935fa041f23e101444555d1728d
MD5 d9f867a50dded37782e9523cc1cc6ec9
BLAKE2b-256 8432ed6fd4325aed931597cc7def221ef3859530d1a448ce68e0d91c4485459d

See more details on using hashes here.

File details

Details for the file unicorn_binance_local_depth_cache-1.0.0-pp37-pypy37_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-1.0.0-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 8cb5d1f25b2c510d63a6d668b0f87a2f05680c9da33b90578a4fa58ff9efc0f6
MD5 08a5d7c66abb81e160eaa7b3d3bea56f
BLAKE2b-256 3b2956364eb6f0afda279978460f88a57e0c9cb59319524ea093442c2b028973

See more details on using hashes here.

File details

Details for the file unicorn_binance_local_depth_cache-1.0.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-1.0.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9ddbf6dd7e7082d653d42174c45273d2312df81fbb940ae378fd7873ec10037c
MD5 0b590fea0b095ec9651083eb0b51f8ce
BLAKE2b-256 4677020c0bc2721cdd15ec35583404d24f2e3f1573a219dd36717a760a50c9c2

See more details on using hashes here.

File details

Details for the file unicorn_binance_local_depth_cache-1.0.0-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-1.0.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 733c7abb8c3f52517721ea7379f81be69f131ac2727ee56c6b7aaff1f5c490eb
MD5 c4744a2221c603b57453904ca71ce308
BLAKE2b-256 246a4c5401ac94c6caed79c9e9f95ead302a55fcd67e29075bde0020da50fba2

See more details on using hashes here.

File details

Details for the file unicorn_binance_local_depth_cache-1.0.0-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-1.0.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a735c092d76246b809cd0b6acd8d97f17a1fd20536773c1a2e291fcff1ec97a7
MD5 862c0fbab452ee9e2869060c96b87860
BLAKE2b-256 90e0d7be1d6ea931dd0d80ea5533e76f685f1dc636f6036c0361d1f57ac598ca

See more details on using hashes here.

File details

Details for the file unicorn_binance_local_depth_cache-1.0.0-cp312-cp312-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-1.0.0-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 a38f4d01b6ecdb934f7b188cec0c0e5f24b54bd67516d1b2621682c61c90fa64
MD5 21ee6679f41dde63f50101cc8b459d0d
BLAKE2b-256 3d2655e85b029541af1dd1c9992df109efa31b5f3fe041f7fb84a4f1fa2e0d9f

See more details on using hashes here.

File details

Details for the file unicorn_binance_local_depth_cache-1.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-1.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5418745eea425afd6abddd951de19725f0c12f1c3b4f23f21ebd38d11b4460a1
MD5 511d75a4015226d4ae96bc946ec93c4c
BLAKE2b-256 23d8d92139a278444edfb669d2e2b8b7ca8102e1d622768ca67d5ccc8cb099a7

See more details on using hashes here.

File details

Details for the file unicorn_binance_local_depth_cache-1.0.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-1.0.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f01f5e86d07a1b8c00908e4220e84b4459f080be7637b75780283f2f2d2e24cc
MD5 11fa2963f74f5eb441b0f1fd2d0dd949
BLAKE2b-256 dcd94b24973920137bdde9dafb0802772a82138683234f2e838801eb28279f98

See more details on using hashes here.

File details

Details for the file unicorn_binance_local_depth_cache-1.0.0-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-1.0.0-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 748731719dd19feabb9e41551456df98261ae3a922c27edbb25058233f78a83b
MD5 e9b75f11b06c21c8927b87d13123d335
BLAKE2b-256 54af44ebcacccd63f61578ebf547ca92381c72c6667b1bad99cdaf24d1a06a7c

See more details on using hashes here.

File details

Details for the file unicorn_binance_local_depth_cache-1.0.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-1.0.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7b9172f808aab422ad60f6a6b1d69b1eed86888dc8d22d54116492238a0b0143
MD5 6c736c6af19bbc86c089235e435fda96
BLAKE2b-256 d6d59e3c13be294eabe04b189d4e4d693d8a2e30b895a8fd8039bd62a1e33195

See more details on using hashes here.

File details

Details for the file unicorn_binance_local_depth_cache-1.0.0-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-1.0.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 af8b6273357ca90ee1937a4173480c27ddf661e781cf6f74013908fb093b4a18
MD5 35d4116db2e4953df71901effe303821
BLAKE2b-256 1ce5ab82575a83182cf663a1d118d02bebc928034aa6cb323e9bb78e53cb8918

See more details on using hashes here.

File details

Details for the file unicorn_binance_local_depth_cache-1.0.0-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-1.0.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e54f882dde5e8e3b647656f4c95edb4a944a628ed7e1e9bdea4c973535c7f4d7
MD5 f837be6d86d545546b55d157a0964bb3
BLAKE2b-256 ca1610d28864254311153bd8846944bedadfae3a876ce166f58d32c9ac402049

See more details on using hashes here.

File details

Details for the file unicorn_binance_local_depth_cache-1.0.0-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-1.0.0-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 c9e3c244b34dedea4bad4abf4e40c3edf1aa34ed18d9a8c9e9881f2342abc6c8
MD5 6b34f343048b274157c611e4351b610b
BLAKE2b-256 925e8a1634fe5c426a1f9b9c5929aabde772490b646652794974b059d0d39d0f

See more details on using hashes here.

File details

Details for the file unicorn_binance_local_depth_cache-1.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-1.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ff358b92e344680cbc93abd0da19aad79d1b57ed88bb17df0a6b6823bfc01254
MD5 f100b2029c5bef71e12b630ba787d136
BLAKE2b-256 8696ce088d7454ec03a7af751dba5251e59fa8a240af7218b36cdf178f3cc8f8

See more details on using hashes here.

File details

Details for the file unicorn_binance_local_depth_cache-1.0.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-1.0.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c8b533e583744b158b878d60cbad5589da7fbe33a5195224952db594ac6ba9d3
MD5 1fa7f1d9101ec92ceb8804e960500ccf
BLAKE2b-256 647d258d8e0d1c0420d1522083543ae5b96356b010bb99927be61e4fa5834d9c

See more details on using hashes here.

File details

Details for the file unicorn_binance_local_depth_cache-1.0.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-1.0.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 df11698e79c8db3e3af7630266b8d1eacbaf5160e5046213119aaa4a3c7db844
MD5 5dcbec8701cdf713ddeac1bffd8ad41b
BLAKE2b-256 f1740ef70e454349c51b956f45691972d96e937389d2369a0aaad7995af4dee3

See more details on using hashes here.

File details

Details for the file unicorn_binance_local_depth_cache-1.0.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-1.0.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e0de529756e4934d2bf2deaff26e501820ceb8deaf5a4f81dddc2159433f5109
MD5 60c2c28f6b8af760c6acaacbb2967cdb
BLAKE2b-256 b67b17d4091b6ae549de24093b78a43f1cbf3bb56c9a96a6d9b3351aaba18ffc

See more details on using hashes here.

File details

Details for the file unicorn_binance_local_depth_cache-1.0.0-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-1.0.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 4789bebf3f21362da5df9e6cd4774badde379f6ae0165cc6dc86dc3d059859e9
MD5 b01b28b168f1b885d917dc0a1104f2df
BLAKE2b-256 007e43fddb180e83122efe2e45015cbf76da7e2565b55d8b078ec331f3d26d3d

See more details on using hashes here.

File details

Details for the file unicorn_binance_local_depth_cache-1.0.0-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-1.0.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 41b2b6b35c53fada5383cb20ae275604be256f1f78458fde256a441793922f9f
MD5 148046d83d2a9a70b45bf5ffd60e6005
BLAKE2b-256 dd01a416b1d06f6914d78aabfa82fa8d2ffe36476ca5d6c8217a0ce02e2df664

See more details on using hashes here.

File details

Details for the file unicorn_binance_local_depth_cache-1.0.0-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-1.0.0-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 801a275f88f8241f07772bc2c1831c77b943ea609fb451e7a2f21ed508fd5625
MD5 db5edccf43d9306857ebc64cb80c67b9
BLAKE2b-256 b31c252c566d208753bdc5959c446db38a425b0443aab1700f49bb8aa91728ce

See more details on using hashes here.

File details

Details for the file unicorn_binance_local_depth_cache-1.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-1.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6539e2a082a07b6f2174065ea60e3ea26fae0daee47d221fea1395e8e4d2abbf
MD5 335b6310f7d2521d3bf7e898ce417ecd
BLAKE2b-256 be22ba3d42b6c31cd7a0b5b13a640a0e6ef80f9393660f24684be566f455ac5a

See more details on using hashes here.

File details

Details for the file unicorn_binance_local_depth_cache-1.0.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-1.0.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f6de3a041f490b6324ad712e50aeda4851338492b87b3b5b89ab3db3b3101a6d
MD5 306f9936ebccf7609171d2895b697d45
BLAKE2b-256 b4b51eb20f5030d1420deb3a416996178694e97b3b7d8227b67ce8a46e008511

See more details on using hashes here.

File details

Details for the file unicorn_binance_local_depth_cache-1.0.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-1.0.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e499f230ef0162dc282ce110afbef282f9fe506fda17fabc6d58cb65f1df6e9e
MD5 6410bbd90179ab1ec4b45f23510c4b59
BLAKE2b-256 f5428ba45d51e6ece5b2ef700eeea2628faada0538ca24b64d5888be8ec99485

See more details on using hashes here.

File details

Details for the file unicorn_binance_local_depth_cache-1.0.0-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-1.0.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 22c486895d892aca5dfa7c3003befb21cae47e9f6a8a122fb75e0e162974a743
MD5 c166f6d5ede0ccae44ef2a32fe574b9e
BLAKE2b-256 ae0be74a60451db522d6b9be35a452bb932d9a78cdaba142edcec2328dfa2525

See more details on using hashes here.

File details

Details for the file unicorn_binance_local_depth_cache-1.0.0-cp39-cp39-win32.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-1.0.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 260ce443ff8393626ed036e0b4200e8b3d987a6237da7d70c9ca9ef78cddcc99
MD5 d2e7f7f204f4a81573bcfe7c9a66c103
BLAKE2b-256 88e1fe3daff71f606832e84bbe4ae68e84e8289c8e18fc0a8db0e0a05798a6ec

See more details on using hashes here.

File details

Details for the file unicorn_binance_local_depth_cache-1.0.0-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-1.0.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 fc107b2b40c7f73692f3e621812fa7b522056aa00c039a670b395eb69a29d465
MD5 dfee31d7b6a4f56b7fb64aee54ede680
BLAKE2b-256 a23fe11a6680f8edf1d383fe925b66f0e5136b2ec0f2937bc7a53847ad07acd2

See more details on using hashes here.

File details

Details for the file unicorn_binance_local_depth_cache-1.0.0-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-1.0.0-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 43138e9e230dfa1d81e4c59bb80124b2bdc6967a39a1a06d30ab6c11de76e7ef
MD5 341c8ebb14da8db3d820414fe8503ca5
BLAKE2b-256 7d55fe8ee81dba72fb7cfd968bcd11204e7ab266acb56f97eced5821d6d78179

See more details on using hashes here.

File details

Details for the file unicorn_binance_local_depth_cache-1.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-1.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1f673b513ebdc12bc1822394d5dab3cbb6bbf85b884a8ad7b7b63c335c16d349
MD5 e5351520ad9938aeac9aa75acd6aa62f
BLAKE2b-256 d43839c116d7d77daad75802c9a9d437121a36a092f1782c37cdd2fbc1c56287

See more details on using hashes here.

File details

Details for the file unicorn_binance_local_depth_cache-1.0.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-1.0.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 21537bfeec95a34ae3fad027a3e35b6861adcf9ec0cb03521203a4edbd36a875
MD5 3c74b6730291aca3c3e375d7e5f39964
BLAKE2b-256 5d55319573ca75e80a893a2f823fc705cdd0fc64dd3c6980bf9d58d695e5be36

See more details on using hashes here.

File details

Details for the file unicorn_binance_local_depth_cache-1.0.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-1.0.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 65ac1496114081a62ab5ff87f6bec6dd712a3e2a692f3799502d7cb24cbba493
MD5 f3eca702c7c331d03cc01909ceeb02c8
BLAKE2b-256 04b9e0b7297c2c2fff94b49b32e43517126c38be51541686f29ccf7c9f7895ae

See more details on using hashes here.

File details

Details for the file unicorn_binance_local_depth_cache-1.0.0-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-1.0.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 a581928aa6517de6c47a423706bf8dc69608d604f0f5284b8f8207d69897e8db
MD5 171a538fdb8b1f8001f5f861f1dbc144
BLAKE2b-256 9d0694ebadb4fb73b731a871fa6dea11223d9b8f84430343ed709a715c428fb2

See more details on using hashes here.

File details

Details for the file unicorn_binance_local_depth_cache-1.0.0-cp38-cp38-win32.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-1.0.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 ac671b47a70e84d255f0d0402eb2af6dc08017f4515b9788857611fb85363cd2
MD5 40729e0e9cc266789bca9d2ed044e93f
BLAKE2b-256 e780fa51e9a8b804c6c2ccb412b4fb868a90b22a4177e4d31710d8cdb7464023

See more details on using hashes here.

File details

Details for the file unicorn_binance_local_depth_cache-1.0.0-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-1.0.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e66d8a0ffcb990f9bfb604be5a0345b80a96e3f689ca8ccaae16f9c3af40afa1
MD5 6ab02e34a715feac59f5a6f145fb90e2
BLAKE2b-256 b19edcb07260dd254aa26ce732cc655db19a5f269847fe5504a8b24c4f88710a

See more details on using hashes here.

File details

Details for the file unicorn_binance_local_depth_cache-1.0.0-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-1.0.0-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 ca77be1b6450f49cd5f65655acddb9499f1f911cc1673e96d14cdffcb5d5ee82
MD5 2a9dfc6dc811db802f318ab0d645528e
BLAKE2b-256 084a2c45172ad0e32d5cc9cf93a7af18a8134377eb3fb7481323cdbdf1576298

See more details on using hashes here.

File details

Details for the file unicorn_binance_local_depth_cache-1.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-1.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c93fc51153edd242f5fdf8deb92e0ddbf857b61808223c3d18fd532f8877a4cb
MD5 b64f62986249d67f5267b65cc4566f7f
BLAKE2b-256 5fdc069e5c48f2d158a8518f9ea3b6c53e4a5353fd57e1895a64a9a7860165bb

See more details on using hashes here.

File details

Details for the file unicorn_binance_local_depth_cache-1.0.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-1.0.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9693cb908c13568fbed4e5e31980945f9e23fae0b0639183def531d8464ac5ef
MD5 ad985a2df208fd997848126f04f8916d
BLAKE2b-256 3438d243c054fe5928563ba0bb1843aa4ff014797c508de19f8ea68c5248e5dc

See more details on using hashes here.

File details

Details for the file unicorn_binance_local_depth_cache-1.0.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-1.0.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f1de0392589e757ad8a4170cea3a56d47376c1ec3708eb4fd8240e088a4d0254
MD5 2d28fe29366a4c2c6a322dfd2a00ba68
BLAKE2b-256 a94aaa9d28588eaa3207f6368a03c70a91d94e2bea796c011d6ca9883015a30c

See more details on using hashes here.

File details

Details for the file unicorn_binance_local_depth_cache-1.0.0-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-1.0.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 c8321adf334b15d0bdbdc60bcd53e6f585533d8daa243b898d1513116d58a883
MD5 7cdae40cd32d3fd1e15664e5193b5b02
BLAKE2b-256 fc8bdbeb671217ed98a11d4d1909d48813231f86cffe10997d7ef297afa4be11

See more details on using hashes here.

File details

Details for the file unicorn_binance_local_depth_cache-1.0.0-cp37-cp37m-win32.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-1.0.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 ad5a033c7c5c85c2e16d8bb579a7a66a1da0b8c1199ecd0fff46e0ff930c2c95
MD5 d1e27435e401abde6325d1a1ee0bd0c0
BLAKE2b-256 e51eda2cf064176285985b9315ac2aaafb7005f1490caaefd32e85247ba7b6fb

See more details on using hashes here.

File details

Details for the file unicorn_binance_local_depth_cache-1.0.0-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-1.0.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2611312aba128a8b808afaf4885cfa362076d0803cdb086d77e13982aea54b44
MD5 72f8a7fa36ceb78784c2a20f34a424a6
BLAKE2b-256 1a34cb2434a9edaf0da01427f0d824e72a2ce64f2c1b42f79872f400364c38e2

See more details on using hashes here.

File details

Details for the file unicorn_binance_local_depth_cache-1.0.0-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-1.0.0-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 c39217c4a3c7b5688bf3959ae3765cdd634bcec5c8f0a56516b2df1a5bf4923f
MD5 32c82d7425b6f985da555e575ec4bc33
BLAKE2b-256 39406536ec605eea746697a7966d7d721e5349af466dfc14ba0960fa03623279

See more details on using hashes here.

File details

Details for the file unicorn_binance_local_depth_cache-1.0.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-1.0.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a121fa7bda4060e6d3a7257d91adc2061653a235b759efc1c913e7b3a032da0d
MD5 60f42ada38e535dc15f4e12ab4441b94
BLAKE2b-256 75086fe527465d917348c8a12d2e694b64b655bebb27982afafeb1172dca93b7

See more details on using hashes here.

File details

Details for the file unicorn_binance_local_depth_cache-1.0.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-1.0.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6867c46657fcf0d2a579a83e22c1af6266bd01948a9e343bf5caf1c5f93540bb
MD5 807296f601537789336108165a3a8d34
BLAKE2b-256 2ff966174aa605277228f79f775f67a890997ec9a6b5416f34d079be2dcac1e2

See more details on using hashes here.

File details

Details for the file unicorn_binance_local_depth_cache-1.0.0-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-1.0.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7051ca30a75a7760c66009a20cd7fa4734499b1e8652482a8456ba58ea244c48
MD5 518cad39376eccf4ae189d22a4ffebe4
BLAKE2b-256 ddf59150f326b610e2e4f6f990dc99231fa99e791701d38952e0c6c19971cf96

See more details on using hashes here.

Supported by

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