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

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 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 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.13.0) you determined here:

pip install https://github.com/oliver-zehentleitner/unicorn-binance-local-depth-cache/archive/2.13.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.13.0.tar.gz (602.1 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.13.0-cp314-cp314-win_amd64.whl (915.8 kB view details)

Uploaded CPython 3.14Windows x86-64

unicorn_binance_local_depth_cache-2.13.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.13.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.13.0-cp314-cp314-macosx_11_0_arm64.whl (930.9 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

unicorn_binance_local_depth_cache-2.13.0-cp314-cp314-macosx_10_15_x86_64.whl (962.4 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

unicorn_binance_local_depth_cache-2.13.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.13.0-cp313-cp313-win_amd64.whl (922.0 kB view details)

Uploaded CPython 3.13Windows x86-64

unicorn_binance_local_depth_cache-2.13.0-cp313-cp313-musllinux_1_2_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

unicorn_binance_local_depth_cache-2.13.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.13.0-cp313-cp313-macosx_11_0_arm64.whl (927.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

unicorn_binance_local_depth_cache-2.13.0-cp313-cp313-macosx_10_13_x86_64.whl (961.2 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

unicorn_binance_local_depth_cache-2.13.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.13.0-cp312-cp312-win_amd64.whl (921.1 kB view details)

Uploaded CPython 3.12Windows x86-64

unicorn_binance_local_depth_cache-2.13.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.13.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.13.0-cp312-cp312-macosx_11_0_arm64.whl (929.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

unicorn_binance_local_depth_cache-2.13.0-cp312-cp312-macosx_10_13_x86_64.whl (963.1 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

unicorn_binance_local_depth_cache-2.13.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.13.0-cp311-cp311-win_amd64.whl (924.0 kB view details)

Uploaded CPython 3.11Windows x86-64

unicorn_binance_local_depth_cache-2.13.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.13.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.13.0-cp311-cp311-macosx_11_0_arm64.whl (941.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

unicorn_binance_local_depth_cache-2.13.0-cp311-cp311-macosx_10_9_x86_64.whl (973.6 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

unicorn_binance_local_depth_cache-2.13.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.13.0-cp310-cp310-win_amd64.whl (921.7 kB view details)

Uploaded CPython 3.10Windows x86-64

unicorn_binance_local_depth_cache-2.13.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.13.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.13.0-cp310-cp310-macosx_11_0_arm64.whl (944.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

unicorn_binance_local_depth_cache-2.13.0-cp310-cp310-macosx_10_9_x86_64.whl (974.9 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

unicorn_binance_local_depth_cache-2.13.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.13.0-cp39-cp39-win_amd64.whl (922.6 kB view details)

Uploaded CPython 3.9Windows x86-64

unicorn_binance_local_depth_cache-2.13.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.13.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.13.0-cp39-cp39-macosx_11_0_arm64.whl (945.4 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

unicorn_binance_local_depth_cache-2.13.0-cp39-cp39-macosx_10_9_x86_64.whl (976.9 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

unicorn_binance_local_depth_cache-2.13.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.13.0.tar.gz.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.13.0.tar.gz
Algorithm Hash digest
SHA256 782c377fcb5063867e7f66c6bcd27e8cfe89cf51b7e1b9e48f7dd3a845efe1e6
MD5 8a90ff12a985c60c85384ae88e31b5ce
BLAKE2b-256 e34c1c4dfde846aca8e6906dceff0ff78a3e78997601071949e2ddb46261dd5e

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.13.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.13.0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.13.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 01a32aaa5416c9546cfc19f0b21f599439795fa2c195b3e080eeda8b2e5765da
MD5 54e54bdcae78711ae2f1b30da9868039
BLAKE2b-256 c98f4e1a6d44896215661510badeb3b1b63d22c6ab961a6c0380367d7e855308

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.13.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.13.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.13.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c53a9eeb9e00ebbbe6ce01e6dfa4ee7952721f8281aba1d41ce5b647e68b81ec
MD5 5c271807062396afefd2eaa5e478c13a
BLAKE2b-256 9bf41b84bd72e3a47ed129049923c18703dafa54f7fdb3dd57662c2e3bb738e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.13.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.13.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.13.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 68ba287f407446afb2d0d3fe5f7e17e2522896e18ba627fa4146b9526ef3b8d3
MD5 f239df379a417e6dc4626b3323b3918c
BLAKE2b-256 673f48c959e7098839007578f59224d157cc6d929564a149394259dcc61477bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.13.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.13.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.13.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b15709d5ac8dc9f6f2e4a94a107aa6c8a386d369ba9708d84de93345b1275547
MD5 253960f766b879ceaf52daa09dc4c5f5
BLAKE2b-256 e28446cbf08b186539cb58917df1fbb2b6650405aebb9d45fbb3176c472b7fe5

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.13.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.13.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.13.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 014feadb7e00a9035ed9a46d675118ca006510e2839f4d0c1a9d84765a1f9613
MD5 5e6ed4f89855c107ef91320a23173f21
BLAKE2b-256 392b48a72a6e7944e5e4355e708712e93222d28314fb23fa4ae4a8579bfb13eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.13.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.13.0-cp314-cp314-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.13.0-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 3e111772a252de73dde8446604d7f711b9e510572deed0bd5c82a70dab044c4a
MD5 4b54909af90636dccec65108af45b61a
BLAKE2b-256 0ed336d22f091a3f3ffb780a2c1f1e1d9ee6c4402cfc9326a0b3a2062ff38714

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.13.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.13.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.13.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 15630dab54e6c81cd754152e431ed3b2199725579a4eefea1657550432608920
MD5 a3809771cb0d75fa55b6aa1748d29c73
BLAKE2b-256 f2231f0226ad9eb1e51c1a835d5300ad836b957e20cd4355dee7783bb9064589

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.13.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.13.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.13.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 28b81be2260ca1fbe8917fbd45306d7513178cf78f478d8aeb221ba1899cff88
MD5 943855edc150ad8c71bc27a359d281b1
BLAKE2b-256 8399306c4eefb10226790b5ab2be43b4f7e070638c2ac492ae048f40d7ab9d07

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.13.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.13.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.13.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6c164fd0958575bd899e1625629b6137872de8fdd87fb0c66de9a4e5195395d0
MD5 4d3865d15d2fab61bd66985800df8daf
BLAKE2b-256 8eaa0d1498fda39dc7e2444b526623f5fa06aac4b4a5c7eada067a4106e4ccfd

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.13.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.13.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.13.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4c06b0bf652f9d245ad0e877ce3e24886ce4e50f493dcfe7e7caf09d386bb18c
MD5 4699c75cca6dbc428a457a8941e7b607
BLAKE2b-256 f9ea62aaa6cfee12b5b103313c250d56ffe442146212b3202e61570bb4ac7760

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.13.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.13.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.13.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 15191738f5fc09154e2166d8fab3255773fe426d6f64ef6d56cff8d695de9457
MD5 34e61f26348039adb182b1bb7e8f5008
BLAKE2b-256 ed2f5d25142acee7cee190e4a7e8a0f0cd1b05bda934a8a185f5ee7fa0461eef

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.13.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.13.0-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.13.0-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 6411ba3ac045a431666e2d67c9b24b084a624139771dac79c1c9f439d53cbee8
MD5 72c4ec5e86849846c483cb40c59fb4e3
BLAKE2b-256 266722617246201125411899ecf959616e8e018494e2bae49849e338989f4c73

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.13.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.13.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.13.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 16388af75e8ee0f82d5dad175e3dd7e1cf8f0b7e8bd70f096fb91dda9ebb6d7e
MD5 e86631064dec0a8068d309bf088996bd
BLAKE2b-256 d34e32474de54dd1fe59016104e61ca48318011df7ba8b569a0df4a220976f03

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.13.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.13.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.13.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a381f6a4af6666cb815de1ebcde868aba3353e107ba41f365cd71ddef0a95112
MD5 025c7017e392dd24621b660a8affcaa3
BLAKE2b-256 216a51f212ed55e99437f5b1213e9ae5285f2fbd34b67f56af3a7806edb22231

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.13.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.13.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.13.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5a2a2b044fce2d9a1bf595a0bce4cb5c0ac26892d68899a9eef48b92195cf283
MD5 fb05861356d64fef1a683272a9baa24f
BLAKE2b-256 6db4b66fa804af2d4e9f3501352e90deb00177bec8fdf6273f98b8e7937c4f3f

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.13.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.13.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.13.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3f3e288f68477fb103638d5a6a94ddf45e08f46b8a58e03e2aa0f2f59cdea550
MD5 0f72438d777c5cc156cde782e50e0b03
BLAKE2b-256 9d3038ee96f5743b506e19a6c76949de4b2c4884518d22d305961d7731db4c7d

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.13.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.13.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.13.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c59aefc18400eb185d6262fdcacee8ad3166d66ad4669f24eabc6fe7e0f4e121
MD5 3eb2c23ac4e712d795ef03be4dff81ee
BLAKE2b-256 741b5bb528c270976bc5c2ec7ff86d2705cfae64e389604141c4a03de7705f4d

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.13.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.13.0-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.13.0-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 a86524ee3d84461ba11acfd89883fc8d0716bdf4ebc22691b1c99bf95b765075
MD5 06c5ef76d9581eca867b5d03e443e329
BLAKE2b-256 b2f6c6937cb5cd27f5617b3b8689a6f556703828f441c674d19e7bf3ba520862

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.13.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.13.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.13.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2bc5ce6bddd753491756d7a780c33ddaf1f5ae716a037e30454d358bd4185bcb
MD5 20b9db7bd13b9bc899d31e153d5bc5c9
BLAKE2b-256 c47af801a80d8918cd787e3d13a10ca4ff98ae4fed5ade8e6b114704626cc175

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.13.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.13.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.13.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9e92b4df9dba533763c7668d3bd58285034563d84b6080df5f6bfbac0ebe6558
MD5 c8ae163fe58d24e781d89ce7241a944f
BLAKE2b-256 e7304b8eaeb755b35dfe22bbfee62c98987b8813ccadf22ae3f689084242517c

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.13.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.13.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.13.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c43fcc4a7bd035e10a82f425a4734c8b89b5d15d88e094cb577b1cddf8bdc350
MD5 c38ec52d1e63a7bc5b1f8b650214ecb1
BLAKE2b-256 fafc7a4a878d5d9532c11ceb9f8e29e5023a1c8a704c16adc7e86fc4e5c27406

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.13.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.13.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.13.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c79fd421f49fe3ee1585a8651f95c5c199d086e449068fd8dcaa19e98470521c
MD5 d1e1df3542801e9ac67ac18109dae63f
BLAKE2b-256 9befdf42623a24e73e777381879685b5a96d4ba83aef0b9c8cab340a2dfb9502

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.13.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.13.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.13.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 82db9d65e460e70823751b91679ae04fd7b85ff7c19823b29b2d0acae2064c0c
MD5 82293017094f234dfc0a23e8bfee4155
BLAKE2b-256 2b52673da51d5137ff13b98b75ef70ec4a126831868b8521a79d96ccc67187ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.13.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.13.0-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.13.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 205bc333011af84d67cf379522ee16a032e2a9286a644af28455614fc0b748ea
MD5 19c2168d6c5fefdf0713be1db44edc1e
BLAKE2b-256 708927784be858a5694d14fa6588f22f2bfee60197390bd4d8acb6c35c0a1778

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.13.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.13.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.13.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2f4cb2229ef5c9d5b1c3354b7d7712f1f189675febdb4513115ca0a27f302516
MD5 1a1ebef6fed3fe1bdeca68fb9930ca92
BLAKE2b-256 4670b112927e1f8cc816fb65c5366b3e9a753979310727c2f637d85a6eca6e57

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.13.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.13.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.13.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9f0a149f71f234bce669ed350adfd735712af66d6ca02315cc56f688df46cb17
MD5 9340792a1c5b333e8adafe21d3457703
BLAKE2b-256 f788c5a0c69cd9db4b0826bbf82ba9615c2aefc0400256196f8f70583c99ccc2

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.13.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.13.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.13.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 964cf81c8e1545062c7ffcfd4b1fdc1ef15243a35914154dd1462626d005ac7f
MD5 56edca24b278468b2893850c9238d55a
BLAKE2b-256 9ff265621fdf0aa6f632bc59106f882f4cfeb813e3f68ba6f54b05df70b7c3ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.13.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.13.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.13.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7347a2bcb0552569ff723e5697c656176f22429333a656472fbde61383981f3b
MD5 0f1588b684484b93f7ac859110849b70
BLAKE2b-256 707b52aa6f633ddd9d6808fac3b87c8bbbf04b589e831b40eeb8cefd39e1764e

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.13.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.13.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.13.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 722da33a135faeadff34f17ddc0f25e9e72155b5826ab7f505866d3e9380fe2b
MD5 99492cdd78342c777ac4f67524ed1aba
BLAKE2b-256 848c82f0f9fc7eeaf7850f5c3044975ab963c596d3a8a0dbed8587044d1fe39b

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.13.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.13.0-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.13.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 57cfe201abc8a8cf52961720772898b990610d63e7c19c30de35d7848969ace5
MD5 e8a41bc7927994f08120c7da63d93b2e
BLAKE2b-256 7615dde9761208ebb1d05b16e232e5514d5214a8af5733666d1ddeae97dd508a

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.13.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.13.0-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.13.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 7338986f1190dec0001d7a5ec58d76acf44d74b5e461515aef080175c5613525
MD5 73167cf515bfec6e350b08a246348693
BLAKE2b-256 6891a701e8a0ab7db3961d6498d30ff6970d286f5ac606cd351f28d05b8061e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.13.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.13.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.13.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dd74cb24899bba71714f221539bcadb2e8b5e971b3c221afc583266f5f32d20e
MD5 1503782249ff1fc52589d33ea75426c6
BLAKE2b-256 e8f07391bfc0528316a972b1c7d3cc2fda71be816cc83706f5eb13232b1923fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.13.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.13.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.13.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e85e31d9069b9c9a1de4ff738b26a91349b6feb7025f33acce223da03a8dc2ac
MD5 968bfe1f563d376c48ff102c3e1328eb
BLAKE2b-256 8242230bc2c599354867fe922890183bc81c340fcc2d64bd628ff54081223100

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.13.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.13.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.13.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5d0037ec775d6d8050075e9c8ebf8aa180933ebd6a8664edc70659eafe9661b7
MD5 5b3f9dc4edb498e23cadaa4f1c47b6bf
BLAKE2b-256 fa743f7004febcee48e645f81715ed989c5b6615a41d292f450f951068d39f1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.13.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.13.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.13.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6b7593aa1eebfc8e50e7e49dac322b79bbc974da3ba6a6b23cc4dbd3841a0f7a
MD5 1eaeb7af022669282851b1d6e773121b
BLAKE2b-256 cd364504d7bc3f1ac87912b062a961dbccbc377f5dd3c5a430304563d14fec0f

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.13.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.13.0-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.13.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 4c9663709c45f8c34a579ed954f398c44a717b437e442112098453e648ecdddd
MD5 4152b8f069740c01d866bb656f2afb53
BLAKE2b-256 843455234e54a8363b7f69e0b0094966c7fcb57eda374d94b73846c9fcf19c27

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.13.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