Skip to main content

A Python SDK for accessing and managing multiple local Binance order books with Python in a simple, fast, flexible, robust and fully featured way. .

Project description

⚠️ Security Warning: There are currently fraudulent repositories (e.g., under the user gesine1541ro7) impersonating this project to distribute malware. Please ensure you are only using the official source: oliver-zehentleitner/unicorn-binance-websocket-api. Read the full technical analysis and campaign details here!

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

UBS-Banner

UNICORN Binance Local Depth Cache

Description | Installation | Documentation | Examples | Change Log | Wiki | Social | Notifications | Bugs | Contributing |Disclaimer

A Python SDK for accessing and managing multiple local Binance order books with Python in a simple, fast, flexible, robust and fully functional 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'.

Using a DepthCache

Create a local DepthCache for Binance with just 3 lines of code

from unicorn_binance_local_depth_cache import BinanceLocalDepthCacheManager, DepthCacheOutOfSync

ubldc = BinanceLocalDepthCacheManager(exchange="binance.com", depth_cache_update_interval=100)
ubldc.create_depthcache("BTCUSDT")

Get the asks and bids

To obtain the complete order book

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

Get the first X elements

asks = ubldc.get_asks("BTCUSDT", limit_count=10)
bids = ubldc.get_bids("BTCUSDT", limit_count=10)

Retain the elements until volume X has been exceeded

asks = ubldc.get_asks("BTCUSDT", threshold_volume=300000)
bids = ubldc.get_bids("BTCUSDT", threshold_volume=300000)

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

try:
    asks = ubldc.get_asks(market="BTCUSDT", limit_count=5, threshold_volume=300000)
    bids = ubldc.get_bids(market="BTCUSDT", limit_count=5, threshold_volume=300000)
except DepthCacheOutOfSync:
    asks = "Out of sync!"
    bids = "Out of sync!"

Stop and delete a DepthCache:

ubldc.stop_depthcache("BTCUSDT")

Stop ubldc after usage to avoid memory leaks

When you instantiate UBLDC with with, ubldc.stop_manager() is automatically executed upon exiting the with-block.

with BinanceWebSocketApiManager() as ubldc:
    ubldc.create_depthcache("BTCUSDT")

Without with, you must explicitly execute ubldc.stop_manager() yourself.

ubldc.stop_manager()

Discover more possibilities.

Connect to a UNICORN Binance DepthCache Cluster

The UNICORN Binance DepthCache Cluster (UBDCC) manages hundreds of DepthCaches with load balancing, automatic failover and self-healing state. It runs locally on a single machine (pip install ubdcc) or scales across a Kubernetes cluster. Access is via REST API from any language — Python users can use the built-in cluster module shown below.

Synchronous

from unicorn_binance_local_depth_cache import BinanceLocalDepthCacheManager, DepthCacheClusterNotReachableError

def main():
    ubldc.cluster.create_depthcaches(exchange="binance.com", markets=['BTCUSDT', 'ETHUSDT'], desired_quantity=2)
    while ubldc.is_stop_request() is False:
        print(ubldc.cluster.get_asks(exchange="binance.com", market='BTCUSDT', limit_count=2))
        
try:
    with BinanceLocalDepthCacheManager(exchange="binance.com", ubdcc_address="127.0.0.1", ubdcc_port=42081) as ubldc:
        try:
            main()
        except KeyboardInterrupt:
            print("\r\nGracefully stopping ...")
except DepthCacheClusterNotReachableError as error_msg:
    print(f"ERROR: {error_msg}")

Asynchronous

from unicorn_binance_local_depth_cache import BinanceLocalDepthCacheManager, DepthCacheClusterNotReachableError

async def main():
    await ubldc.cluster.create_depthcaches_async(exchange="binance.com", 
                                                  markets=['BTCUSDT', 'ETHUSDT'], 
                                                  desired_quantity=2)
    while ubldc.is_stop_request() is False:
        print(await ubldc.cluster.get_asks_async(exchange="binance.com", market='BTCUSDT', limit_count=2))
        
try:
    with BinanceLocalDepthCacheManager(exchange="binance.com", ubdcc_address="127.0.0.1", ubdcc_port=42081) as ubldc:
        try:
            asyncio.run(main())
        except KeyboardInterrupt:
            print("\r\nGracefully stopping ...")
except DepthCacheClusterNotReachableError as error_msg:
    print(f"ERROR: {error_msg}")

Try the cluster examples!

Discover more cluster possibilities ...

Description

The Python package UNICORN Binance Local Depth Cache provides local order books for the Binance Exchanges Binance (+Testnet), Binance Cross Margin and Isolated Margin (+Testnet), Binance Futures (+Testnet), Binance European Options (+Testnet), Binance US and TRBinance.

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

Since, according to Binance's predefined algorithm, all levels > 1000 would be orphaned and remain forever between valid levels , UBLDC removes them as soon as they exceed the thousandth position.

With create_depthcache()` the DepthCache is started and initialized, i.e. for each DepthCache that is to be created, a separate asyncio coroutine is inserted into the event loop of the stream. 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 so that it is synchronized in real time. As soon as once this is done, the status of the cache get set to "synchronous".

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

The DepthCache 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 DepthCache is set to "out of sync" and when accessing the cache the exception 'DepthCacheOutOfSync' is thrown.

Why a local DepthCache?

A local DepthCache 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 DepthCache 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 Cross Margin binance.com-margin
Binance Cross Margin Testnet binance.com-margin-testnet
Binance Isolated Margin binance.com-isolated_margin
Binance Isolated Margin Testnet binance.com-isolated_margin-testnet
Binance USD-M Futures binance.com-futures
Binance USD-M Futures Testnet binance.com-futures-testnet
Binance European Options binance.com-vanilla-options
Binance European Options Testnet binance.com-vanilla-options-testnet
Binance US binance.us
TRBinance trbinance.com ¹

¹ TRBinance requires an API key even for public REST endpoints (e.g. order book snapshots). Pass api_key and api_secret to BinanceRestApiManager when using exchange="trbinance.com".

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

Installation and Upgrade

The module requires Python 3.9 and runs smoothly up to and including Python 3.14.

PyPy wheels are available for all supported Python versions.

conda-forge note: Conda packages are provided for Python 3.10 – 3.14. Python 3.9 is not available on conda-forge — it was dropped from the global pinning after reaching end-of-life in October 2025. For Python 3.9, use pip install.

The current dependencies are listed here.

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

Packages are created automatically with GitHub Actions

When a new release is created, the Build and Publish GH+PyPi workflow spins up virtual Windows/Linux/Mac runners, compiles the Cython extensions, builds the wheels and publishes them on GitHub and PyPI. The conda-forge feedstock conda-forge/unicorn-binance-local-depth-cache-feedstock picks up the new PyPI release automatically and builds the Conda packages on its own infrastructure. This is a transparent method that makes it possible to trace the source code behind a compilation.

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

conda

conda install -c conda-forge 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/oliver-zehentleitner/unicorn-binance-local-depth-cache/archive/$(curl -s https://api.github.com/repos/oliver-zehentleitner/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 2.14.0) you determined here:

pip install https://github.com/oliver-zehentleitner/unicorn-binance-local-depth-cache/archive/2.14.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/oliver-zehentleitner/unicorn-binance-local-depth-cache/tarball/master --upgrade

Change Log

https://oliver-zehentleitner.github.io/unicorn-binance-local-depth-cache/changelog.html

Documentation

Examples

Related Articles

Project Homepage

https://github.com/oliver-zehentleitner/unicorn-binance-local-depth-cache

Wiki

https://github.com/oliver-zehentleitner/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().

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!


AI Integration

This project provides a llms.txt file for AI tools (ChatGPT, Claude, Copilot, etc.) with structured usage instructions, code examples and module routing.


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.

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-2.14.0.tar.gz (603.5 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-2.14.0-cp314-cp314-win_amd64.whl (917.0 kB view details)

Uploaded CPython 3.14Windows x86-64

unicorn_binance_local_depth_cache-2.14.0-cp314-cp314-musllinux_1_2_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

unicorn_binance_local_depth_cache-2.14.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

unicorn_binance_local_depth_cache-2.14.0-cp314-cp314-macosx_11_0_arm64.whl (932.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

unicorn_binance_local_depth_cache-2.14.0-cp314-cp314-macosx_10_15_x86_64.whl (963.8 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

unicorn_binance_local_depth_cache-2.14.0-cp314-cp314-macosx_10_15_universal2.whl (1.3 MB view details)

Uploaded CPython 3.14macOS 10.15+ universal2 (ARM64, x86-64)

unicorn_binance_local_depth_cache-2.14.0-cp313-cp313-win_amd64.whl (923.5 kB view details)

Uploaded CPython 3.13Windows x86-64

unicorn_binance_local_depth_cache-2.14.0-cp313-cp313-musllinux_1_2_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

unicorn_binance_local_depth_cache-2.14.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

unicorn_binance_local_depth_cache-2.14.0-cp313-cp313-macosx_11_0_arm64.whl (929.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

unicorn_binance_local_depth_cache-2.14.0-cp313-cp313-macosx_10_13_x86_64.whl (963.0 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

unicorn_binance_local_depth_cache-2.14.0-cp313-cp313-macosx_10_13_universal2.whl (1.3 MB view details)

Uploaded CPython 3.13macOS 10.13+ universal2 (ARM64, x86-64)

unicorn_binance_local_depth_cache-2.14.0-cp312-cp312-win_amd64.whl (922.5 kB view details)

Uploaded CPython 3.12Windows x86-64

unicorn_binance_local_depth_cache-2.14.0-cp312-cp312-musllinux_1_2_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

unicorn_binance_local_depth_cache-2.14.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

unicorn_binance_local_depth_cache-2.14.0-cp312-cp312-macosx_11_0_arm64.whl (931.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

unicorn_binance_local_depth_cache-2.14.0-cp312-cp312-macosx_10_13_x86_64.whl (965.0 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

unicorn_binance_local_depth_cache-2.14.0-cp312-cp312-macosx_10_13_universal2.whl (1.3 MB view details)

Uploaded CPython 3.12macOS 10.13+ universal2 (ARM64, x86-64)

unicorn_binance_local_depth_cache-2.14.0-cp311-cp311-win_amd64.whl (925.4 kB view details)

Uploaded CPython 3.11Windows x86-64

unicorn_binance_local_depth_cache-2.14.0-cp311-cp311-musllinux_1_2_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

unicorn_binance_local_depth_cache-2.14.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

unicorn_binance_local_depth_cache-2.14.0-cp311-cp311-macosx_11_0_arm64.whl (943.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

unicorn_binance_local_depth_cache-2.14.0-cp311-cp311-macosx_10_9_x86_64.whl (976.1 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

unicorn_binance_local_depth_cache-2.14.0-cp311-cp311-macosx_10_9_universal2.whl (1.3 MB view details)

Uploaded CPython 3.11macOS 10.9+ universal2 (ARM64, x86-64)

unicorn_binance_local_depth_cache-2.14.0-cp310-cp310-win_amd64.whl (923.0 kB view details)

Uploaded CPython 3.10Windows x86-64

unicorn_binance_local_depth_cache-2.14.0-cp310-cp310-musllinux_1_2_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

unicorn_binance_local_depth_cache-2.14.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

unicorn_binance_local_depth_cache-2.14.0-cp310-cp310-macosx_11_0_arm64.whl (945.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

unicorn_binance_local_depth_cache-2.14.0-cp310-cp310-macosx_10_9_x86_64.whl (977.1 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

unicorn_binance_local_depth_cache-2.14.0-cp310-cp310-macosx_10_9_universal2.whl (1.3 MB view details)

Uploaded CPython 3.10macOS 10.9+ universal2 (ARM64, x86-64)

unicorn_binance_local_depth_cache-2.14.0-cp39-cp39-win_amd64.whl (923.9 kB view details)

Uploaded CPython 3.9Windows x86-64

unicorn_binance_local_depth_cache-2.14.0-cp39-cp39-musllinux_1_2_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

unicorn_binance_local_depth_cache-2.14.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

unicorn_binance_local_depth_cache-2.14.0-cp39-cp39-macosx_11_0_arm64.whl (947.3 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

unicorn_binance_local_depth_cache-2.14.0-cp39-cp39-macosx_10_9_x86_64.whl (979.0 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

unicorn_binance_local_depth_cache-2.14.0-cp39-cp39-macosx_10_9_universal2.whl (1.3 MB view details)

Uploaded CPython 3.9macOS 10.9+ universal2 (ARM64, x86-64)

File details

Details for the file unicorn_binance_local_depth_cache-2.14.0.tar.gz.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.14.0.tar.gz
Algorithm Hash digest
SHA256 09351c71a6984451aeb09de7544c977d8e6e71ee71792993f9f053a2a7d1d259
MD5 72bf0b58df0884bd245452828aaa8e22
BLAKE2b-256 9077d18e77c380918568d460ced5e8f015cbd56227370676b9f40a0fe8f5c3ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.14.0.tar.gz:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-local-depth-cache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_binance_local_depth_cache-2.14.0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.14.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 d90690f0b2d2c9250d2007819744d614e30f7f1f85d51203b8de0660d07af75f
MD5 76c607bf1301f351a0d27fe409aa319e
BLAKE2b-256 df6af05f78a1ab0ed8a47eb1757154fe7d7d8bf78f3bf5534e6f908b6fe4a6c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.14.0-cp314-cp314-win_amd64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-local-depth-cache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_binance_local_depth_cache-2.14.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.14.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5dd41e2236d4cf60450df7c53b8a1f53756ac50902f4f151604dad9ca8240269
MD5 f7ed665d3d89aa75195bba8fae457886
BLAKE2b-256 509ab95f6bd45cea1d2c5de2d10885a8b52317ebbd344250814ddc36659cc485

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.14.0-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-local-depth-cache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_binance_local_depth_cache-2.14.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.14.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c7a9086d9f0ca1f9c62ab165a5387c75be79457a97348193565732e347b4fba0
MD5 c2569312c9a47faef67389c8b16d95e3
BLAKE2b-256 290f985b05db100d7d3328fc0737b82ff5a97cf7ceceb7551544d4b6a6996ad8

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.14.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-local-depth-cache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_binance_local_depth_cache-2.14.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.14.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dc723773df7be70f6e346909690ee7c41e2286d66ed43055fceb18f4cedc47ea
MD5 f324f216fa818c0977a3134cd26e8ca8
BLAKE2b-256 3aa08fa3e838b0d712badf42d9ab56f1c7986423c98b642efb04e45348ae10ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.14.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-local-depth-cache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_binance_local_depth_cache-2.14.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.14.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 36ab7af98d6443e247db75749f114659dd4857a17a706d78f3ca8aef98a500e2
MD5 bdd512b065b6b781f770e471f7d8b573
BLAKE2b-256 986c314e9140f11e421ce8b4f7d066eba25cdae33c0bef5688fa9dc1f8cd5a15

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.14.0-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-local-depth-cache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_binance_local_depth_cache-2.14.0-cp314-cp314-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.14.0-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 db147ae01ea450f830b3779751de1cb560a01bfe8c2afd8dc5e48d90cf98042d
MD5 b0ee88798c351e2f458437b0d8dfd9ca
BLAKE2b-256 029382ee33e8e0aed02f0a64838fa9e7cfd070f71ffa4249ccbe5c2f8a18cb17

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.14.0-cp314-cp314-macosx_10_15_universal2.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-local-depth-cache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_binance_local_depth_cache-2.14.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.14.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e783e80d92e381d8c6fdf8d66c1e783f93d19ed1ece3b2e7f34bf791c8581010
MD5 9f78b9684ffc84cd4e82ed3d0eb459c1
BLAKE2b-256 a39be85f5b7c512cb6edd074822eacc09382312faed22f6f0302517f89debac7

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.14.0-cp313-cp313-win_amd64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-local-depth-cache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_binance_local_depth_cache-2.14.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.14.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ba6c4aff9b3cbc367f860f8cba0bb00fa83944eb142beaa9ae236814d3e433b5
MD5 030faa7c1282c1e045a57efbaa6e6f2d
BLAKE2b-256 f7b64e9cf8f9cdd25c1fe706b12b9c5d9b7b9f6c09033645068a2ca445a296a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.14.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-local-depth-cache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_binance_local_depth_cache-2.14.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.14.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a470d3b5bf57b3f13baba0f3eab90e1431babeeca60c502258d399f408dbb9ca
MD5 51102052903e4b93c2d8abc66b1cc226
BLAKE2b-256 ef5923dd44f59cf6856a199b5d12f695343fdd812fbb164f0187a2e76ed0d609

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.14.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-local-depth-cache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_binance_local_depth_cache-2.14.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.14.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9f791f291fa189e4d4e06a8364313de8cea912811cd922b209a765c6c3df0b39
MD5 3e9037d17b5e0ea0605134116639b201
BLAKE2b-256 94ddd62003572d80f320d277417a63e34f8003beb1d5539b86a66d938a5d5233

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.14.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-local-depth-cache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_binance_local_depth_cache-2.14.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.14.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b92c0eeca904d6210dc6dd8d369a5d5ba207d7602da271aa7844d0add5ace93c
MD5 0e2b8cffa8f1923ebe2e541a81112728
BLAKE2b-256 8014e6ec6b90b89a95a9ad6498f0cddc2f26f7620fd6f7cba3093d749e6943ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.14.0-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-local-depth-cache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_binance_local_depth_cache-2.14.0-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.14.0-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 a7fd1357181fc388f28ca913159a460280adfcf53c4ebea3355b2c1753d3f8c9
MD5 2f0a94f875e66fc8846a69b0a66654f8
BLAKE2b-256 3e785c10faf114dc75dc39271b87733011d5adc5462b26cba60dff48b63d0f56

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.14.0-cp313-cp313-macosx_10_13_universal2.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-local-depth-cache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.14.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 65751735b7a78cc8196cb0dbd9986e6e9e52277fb6eda10eb19c7d37a41a3be3
MD5 839258418e8abac086ef908bfc0576cf
BLAKE2b-256 05b439b0442a2f7ff4ff47ba4759a8afa489f992de8facc8652a50317a5f3330

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.14.0-cp312-cp312-win_amd64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-local-depth-cache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_binance_local_depth_cache-2.14.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.14.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9922bf9364647ace346f7fa588c03da3904486c425fcc3ad4edd1bcac65f4e59
MD5 ac4a20e3cf05a6fb001a8e61091d5ef8
BLAKE2b-256 e5178207fcf2967773000e3ad3cb4b296f2bdc5b81a73631f4dbc13095e92c82

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.14.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-local-depth-cache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_binance_local_depth_cache-2.14.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.14.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8d160546bb27f93cd0c45f0dadda53f32dc44e1c65147031a4c9b61f0e920204
MD5 d143b1dccce15aa962a260ab47191e1f
BLAKE2b-256 028519a062d1f214ec731e490a62e872c5fc25f00d580f51a6a8ba20edaefa91

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.14.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-local-depth-cache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_binance_local_depth_cache-2.14.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.14.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 72332b4698369f0fc5b46d5834b2539ab2cc55dae8a2b071f3809838deae15b0
MD5 e30fa283f49d5de493edd514205c7916
BLAKE2b-256 5a5f33b50ffbae524b81725202b8810e662e5cfc67f6b9486cc19637b70750db

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.14.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-local-depth-cache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_binance_local_depth_cache-2.14.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.14.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c16a852facc457f99224144e77e20f1124463895af43cca2e55d6b19166da78f
MD5 8204eac313d8b5620738923815876846
BLAKE2b-256 66fdcccb0802d60e585219e6471a4306bf04fdbd90f0c5708709d0d8bade006a

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.14.0-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-local-depth-cache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_binance_local_depth_cache-2.14.0-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.14.0-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 837d278f39b8a9a0a4f28cc3f79d6d8e5c1344bbe64e7df17a7330eb26584566
MD5 199e786287c795a93d57e8d1c4027048
BLAKE2b-256 c7bc89df8579ac6054b59fcb665a359feea3fb25a780846eb0b90f3981ea8434

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.14.0-cp312-cp312-macosx_10_13_universal2.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-local-depth-cache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.14.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 cee514fbd9225ced1712bce2d4776c6307823e3a6c8d0e726bffc566e2d253a5
MD5 f87d6e34c8a76667f96e6e7370169e0a
BLAKE2b-256 027a487e525174686244d263034a9ec8bdd2823cd22f1c11e234983a8b707862

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.14.0-cp311-cp311-win_amd64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-local-depth-cache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_binance_local_depth_cache-2.14.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.14.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f68365c8ddb71780991203131afe67d605072ad23da0334826c9c28c5e108325
MD5 8f41f42c4f9228d1c518e354ca0467ba
BLAKE2b-256 1bdc5b6806c79cba1453f3f44bd14f64a2bda966c362b0a88cbbbd0c1f2f3234

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.14.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-local-depth-cache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_binance_local_depth_cache-2.14.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.14.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 15360c41db286eb036b8580f8bd81e8c2578281bb22cc4b28bab680f58f91e7a
MD5 abc522f601a1921a546e66be94cf4ed5
BLAKE2b-256 8ccde0fdc4563bec44b1937fa6008dd2238dec464e8393e93957f25a008b5a95

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.14.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-local-depth-cache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_binance_local_depth_cache-2.14.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.14.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 da374524691a0b4c9f022f420fd1e6d4814ae38d0ad933e66bd2ad4d780faf29
MD5 f67f69230dada1dddf24057d8ddeac29
BLAKE2b-256 54b4e89a179d20d36da426b4f71395ee8602f4c029262210add54e1ad220b2fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.14.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-local-depth-cache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.14.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a1a73a5c879c9a4c84e7616f3460bec9d5ae246f480c9616a2aea07bb7198dc6
MD5 393fcd5f37bc96dca93d2135a1a7ef86
BLAKE2b-256 b110dff1b45484005217d52fcb77ab867561e8ada64209613ba1b5368ed174df

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.14.0-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-local-depth-cache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_binance_local_depth_cache-2.14.0-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.14.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 ed7ad41d3cf1b0b89f744a1f41c54346061871b3ddbaf61e09947583392ac74e
MD5 84a562b0988df1b93b039ed45116e2b2
BLAKE2b-256 2a8c7b09800beff57c5d065d2a642f73dcc19680a4be970e0a33a012993a4b06

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.14.0-cp311-cp311-macosx_10_9_universal2.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-local-depth-cache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.14.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 dcc8476e5ec75ac13bbf1b9d10f628c06df0be4e4d80f03c6c6b31bcf5ec3b58
MD5 962478c9c50330f867b6c7e566982926
BLAKE2b-256 2068b698ecf743c641be8ed4f89935dee89c5774133e3bcbc08b070ef11aeff6

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.14.0-cp310-cp310-win_amd64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-local-depth-cache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_binance_local_depth_cache-2.14.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.14.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5ebd2d16825d2af075a03b6a2bc476f22bcb8a617506f5e547c79435675d6c3a
MD5 649b7a9ea88e28057b8f1d7c8cd47e03
BLAKE2b-256 b4c642e5a22fc7d4402eb3725e833eff8086f91f3d556cf884ea2fbc435a22ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.14.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-local-depth-cache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_binance_local_depth_cache-2.14.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.14.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f02726cc5ccb4e74ab01f24323386c6a2e86f835ac483b141179dddb458b3137
MD5 7f7390cdeb4a50c0ce5ef2959d43dc3e
BLAKE2b-256 3449756f848e3f47d12509c174b0e6b42c6fa3ccb571333a4cf8b5c6414decc4

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.14.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-local-depth-cache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_binance_local_depth_cache-2.14.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.14.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dbe531db23bc1a0077717e09da531394a7a439120098a86aa9b088a3ec17a197
MD5 c905a8e990ec33b6c0ea454399ba7b9b
BLAKE2b-256 0c40f77dfc6a61055b7ac903cc12d4dc1a2eeead3b3d88f5e64d4894c7cee229

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.14.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-local-depth-cache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.14.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 aecf97672b076b6b06b1c26e3dd2c104f8fdff88a09a40b179fcb2ad20310cab
MD5 59b28d89f70278140733224ca0f9687a
BLAKE2b-256 3cbe5339a0b0ba734e622a1216f24f9c62ecdbbeca156d20ef969078e3233661

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.14.0-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-local-depth-cache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_binance_local_depth_cache-2.14.0-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.14.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 66d58b5de37078e53981d95e48f0a74ee51b0cee733854c14bd0761dcf5f4435
MD5 fa15fbe84cf3ded8f806272f0852021d
BLAKE2b-256 73a8b395bb421ed68bcd7f3f9d27f7724f64f6cc1d3b9f90f485235b893e6524

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.14.0-cp310-cp310-macosx_10_9_universal2.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-local-depth-cache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.14.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 fa41acc5ddfb9bbc466052a55b70d84fb1943fe6b9b63454910a4ca812d35c0d
MD5 584029e562868c653544c14129cb6845
BLAKE2b-256 8b14717e14a39a220615028b7a3b22292daa9ce807f8192010c716784c8f72df

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.14.0-cp39-cp39-win_amd64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-local-depth-cache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_binance_local_depth_cache-2.14.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.14.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2379d91a5a58d6a8bea7c023aca2ea057794294314ba21488aea10265490f9c3
MD5 930c64f3c7ccd16ea5a114466124e1c5
BLAKE2b-256 9dc6f53ac91be77fa9628500680b5642205c084dc5f7591665a4f73167a225af

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.14.0-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-local-depth-cache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_binance_local_depth_cache-2.14.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.14.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 24622d9345257885213cdf9602155aa80240cd0955ae813b9ceac5e573b77a98
MD5 9d48e909c7c51119bc035e9ba41bcb38
BLAKE2b-256 6a6ef9e51a3aeb20652c4a7b0604d48fd6db67974c021f15c84d4f2fbdc88ba6

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.14.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-local-depth-cache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_binance_local_depth_cache-2.14.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.14.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e1d60f1ac03ca5a0ee07d42d702d52904a0f2ec72871fa4b1c747fd196fcba7f
MD5 ece195c8839143c965cdb2e73c6b68d3
BLAKE2b-256 3f04761ec528c6d3096009954b02aa1d85b914ceec2d7377d04076582ab39370

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.14.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-local-depth-cache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.14.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0cd56a1bd7064fd6465ff35baf18a648b20d1b40acd4f51e2a020cc67c7e2eeb
MD5 38548dd0df2d0bf3290499ed7cf51ad5
BLAKE2b-256 e21a9621ab93f1526a1726a4c2316af9b41fc0acad9e859709e87106b38865f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.14.0-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-local-depth-cache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unicorn_binance_local_depth_cache-2.14.0-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.14.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 c8b0c4783c97ef67140782787f447f10f28a17f16fce655eb1b79eb11fcfc6e0
MD5 e1e54e3ea6136817120296192894cb3a
BLAKE2b-256 8f075aa69fa5d9537e30c1ea37dba985158a5f67ac48c021bf7fe0e8b0b332d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.14.0-cp39-cp39-macosx_10_9_universal2.whl:

Publisher: build_wheels.yml on oliver-zehentleitner/unicorn-binance-local-depth-cache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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