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.

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

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

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.12.2.tar.gz (591.2 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.12.2-cp314-cp314-win_amd64.whl (899.3 kB view details)

Uploaded CPython 3.14Windows x86-64

unicorn_binance_local_depth_cache-2.12.2-cp314-cp314-musllinux_1_2_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

unicorn_binance_local_depth_cache-2.12.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (3.1 MB view details)

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

unicorn_binance_local_depth_cache-2.12.2-cp314-cp314-macosx_11_0_arm64.whl (913.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

unicorn_binance_local_depth_cache-2.12.2-cp314-cp314-macosx_10_15_x86_64.whl (943.5 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

unicorn_binance_local_depth_cache-2.12.2-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.12.2-cp313-cp313-win_amd64.whl (904.7 kB view details)

Uploaded CPython 3.13Windows x86-64

unicorn_binance_local_depth_cache-2.12.2-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.12.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (3.1 MB view details)

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

unicorn_binance_local_depth_cache-2.12.2-cp313-cp313-macosx_11_0_arm64.whl (910.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

unicorn_binance_local_depth_cache-2.12.2-cp313-cp313-macosx_10_13_x86_64.whl (942.5 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

unicorn_binance_local_depth_cache-2.12.2-cp313-cp313-macosx_10_13_universal2.whl (1.2 MB view details)

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

unicorn_binance_local_depth_cache-2.12.2-cp312-cp312-win_amd64.whl (904.4 kB view details)

Uploaded CPython 3.12Windows x86-64

unicorn_binance_local_depth_cache-2.12.2-cp312-cp312-musllinux_1_2_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

unicorn_binance_local_depth_cache-2.12.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (3.1 MB view details)

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

unicorn_binance_local_depth_cache-2.12.2-cp312-cp312-macosx_11_0_arm64.whl (911.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

unicorn_binance_local_depth_cache-2.12.2-cp312-cp312-macosx_10_13_x86_64.whl (944.3 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

unicorn_binance_local_depth_cache-2.12.2-cp312-cp312-macosx_10_13_universal2.whl (1.2 MB view details)

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

unicorn_binance_local_depth_cache-2.12.2-cp311-cp311-win_amd64.whl (906.6 kB view details)

Uploaded CPython 3.11Windows x86-64

unicorn_binance_local_depth_cache-2.12.2-cp311-cp311-musllinux_1_2_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

unicorn_binance_local_depth_cache-2.12.2-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.12.2-cp311-cp311-macosx_11_0_arm64.whl (923.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

unicorn_binance_local_depth_cache-2.12.2-cp311-cp311-macosx_10_9_x86_64.whl (954.1 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

unicorn_binance_local_depth_cache-2.12.2-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.12.2-cp310-cp310-win_amd64.whl (904.6 kB view details)

Uploaded CPython 3.10Windows x86-64

unicorn_binance_local_depth_cache-2.12.2-cp310-cp310-musllinux_1_2_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

unicorn_binance_local_depth_cache-2.12.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (3.0 MB view details)

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

unicorn_binance_local_depth_cache-2.12.2-cp310-cp310-macosx_11_0_arm64.whl (925.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

unicorn_binance_local_depth_cache-2.12.2-cp310-cp310-macosx_10_9_x86_64.whl (955.2 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

unicorn_binance_local_depth_cache-2.12.2-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.12.2-cp39-cp39-win_amd64.whl (905.6 kB view details)

Uploaded CPython 3.9Windows x86-64

unicorn_binance_local_depth_cache-2.12.2-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.12.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (3.0 MB view details)

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

unicorn_binance_local_depth_cache-2.12.2-cp39-cp39-macosx_11_0_arm64.whl (927.0 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

unicorn_binance_local_depth_cache-2.12.2-cp39-cp39-macosx_10_9_x86_64.whl (957.0 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

unicorn_binance_local_depth_cache-2.12.2-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.12.2.tar.gz.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.2.tar.gz
Algorithm Hash digest
SHA256 319160a1e14479c69aa09060dd4e8b66fa1f9227a4649f9da58b93bcdef2f269
MD5 68a710ebd87096afdc4b34edff9b891e
BLAKE2b-256 d47a3242555ccc1d04c7a026b3fcdd861c5857d8e39ef22728187f2223c8cad5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 6d4fd4a50fcced5f64c1a9322ae92f8370f36a14d2c3b97f72dec2d6c9457045
MD5 53e402c799436553b8cb4cc73ed45dd5
BLAKE2b-256 6a59dbf2a1a158cadc5a75f4fada46e301c7c6be47fdfbb50f0d125406893c54

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9af04e28269e1afb13b5e5b1154b0be7ee06ef57dba7fb3a4781bc5d6bcf33cd
MD5 8b8431b8d03c3082ac40f1c6b38e4968
BLAKE2b-256 680934391ce2b30155d53ee3a4eda609e87488fb327a2916eba8ced16232cfb0

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.12.2-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.12.2-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.12.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 70ecf6e578379081effa9ca9ef11de02ceba51d6a99d788a5ec23cbc47fe9077
MD5 98bb38dfaaa52ca6cca03fbec10644d7
BLAKE2b-256 0255304b136ce6056e3e020e41e5f7e70154eb6563c372b27194c63747a526ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d7ca01f3e6add2e009010cc5a4d8d8cd6de2d6dded5952095562d8bb525e2faa
MD5 971a701cbe0842a26c6c2e0cc3f843db
BLAKE2b-256 055d52b47889fbe32635d74e60374d3b59af058d53ebe0d3e614656cf3f36cd8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.2-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 928c0d673da9c78cef880336d42a099b03ad3394a0f8278cbe3d4ee068af197e
MD5 0bc4d76998d65e3c543c4c5a5c992f4a
BLAKE2b-256 6988368564850b4853b82cccc5c8d39242f4a74592a9d0a4072970b6b22e9ebf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.2-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 2232a87ea405c24b1ff8bb1c059dd558cc7b6bf4b280dd6d97c6f760a42f3ac2
MD5 c4eb500f47e72d2ef57771a83856b7e9
BLAKE2b-256 d2807c7deb9d50bc8a5bcecb2e0c98ae1d0c882ddd7cf59f7c396060113f2d12

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 99653e6df2833c04311b4297c5ecb2f7d16787471b58159728894994ba611722
MD5 c89e9f65d3bb5bd98cfac836399b0a48
BLAKE2b-256 705a45a64f75bf1fd8b6556fd126cf69bf3e8c499165f846d7f7dcd212f05f20

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f6b35b9a9aa6651ca0c1e649992ee97e2f81f1bfb1b6e25bfcf737d19fdd3270
MD5 fc0c5b099e14f3b128dd52671272f80b
BLAKE2b-256 22e735c4309ce8b277656e7df93210b77cafae27480b630f1c8ba4736c826a1c

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.12.2-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.12.2-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.12.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 58d681d7fb9274096aae85e62d86722fd58f017bf0934170b2fdde0bde16f616
MD5 120ed9875bc35a8191d2111647f80a53
BLAKE2b-256 e472bb24f82dbcbd65f1b2001096306c0353526cc3441010bd98651ad85d4418

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f30088dc3c979ce1236191827381233bb37eb48f9577d23fae3bd6c173f61651
MD5 98b5c876f28e4ca4329b9ebb7df898c2
BLAKE2b-256 3b9ebc0772798b0489d5d0db70599bce836357a832eba027fe6d9d6e9d5d8817

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7493cb44a773c2b24dc7b335775e294516f77e58aaa5531087fd2d5c15ba5163
MD5 df8afddd27f5ff2739325b1c380a49d3
BLAKE2b-256 ce38a46b9cd70e23345d9a04ef45837783eece18a774a17018249222a3c4460c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.2-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 b2f3680bdb79e22f5f15d1b84cbf17ebbdcdf15a555dc6445d869612fa42dbb3
MD5 7d0812d88a04c0dafa652f6ce814551d
BLAKE2b-256 2a87917b0d0908e3faf28d85312d6dbc2f0825c126852f75d4bdba74ecae3dc8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4767479cc0f5779109867d338ae0159212c9b7c0a5edf6d249c48dbaefa2881b
MD5 834a5e8fa8c2af57ed0d37db52ac4a63
BLAKE2b-256 97b1b63fe12253667eaca9b15beab1f187e876bcbf9084274780717503f97589

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 47bd3cd915cc81583bfed268c89cb4e068b0419cd99008464c3dd3d8367d384e
MD5 e7cc0f65cab89fa21c8bff3579c622b3
BLAKE2b-256 2ee1fe8a834373e09c1bf4cc4ea335bde69eb85dfe72e1c27d4d04d37ee58ca3

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.12.2-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.12.2-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.12.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 85431b78b4e2c915dee741998ef0c82d42cfce343e895b844cd2e434d675d06a
MD5 a3124f46268be953095a27155ed9c0fc
BLAKE2b-256 0f93098f00bf3c994bfbbfdc2d01083a5a79a44a3fd57f1dc5d945fad1da6673

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 df21bf2a378b9b78f1a7a228f292db6cc04e194e9d297682639c7144d8c870de
MD5 d2b193251b33960401f12e81aa2a686e
BLAKE2b-256 369df6aa3ad41a17a34608203e94253721f1215e755282a82eb53c4a16a8545b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 1a2c62b2cb356552614e3a334a646ff5040bb4aeb01520d93674162057a5cd8e
MD5 7cbc6e30fc8f9b442221ac1d91c938a3
BLAKE2b-256 cb88e938081aa9f0bae1745c4b92c9c0356503e97b2abb3828fe9e4bebf8e98a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.2-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 b4b997d3a9e05d350a7607934f7c5bc3675bc6aef2b94cec563da4231adda197
MD5 e6882fb8577c172049f557a7c21c8e52
BLAKE2b-256 8780928a7394d7ca329e04274c8f24ad6c1b32e780f3ee801fc3856a898f39d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 571973c971dffb5d207fb803036b8b84d06a9ec1d8d17b9608f6e82d580f8fdf
MD5 08c8444c5e6a3b9d01f64f18833afc34
BLAKE2b-256 2e89989ffbf836f707c325a094f6b2fb5c0e4935fdf82c14ecd7d919c95f9c63

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a07d172fc97df1fbdd797f5a5f9390954538d194120d38764ad87a227e80e700
MD5 8451ea1d745d475f3be05eed77c4f088
BLAKE2b-256 c91de9ecbf48bf77add155a12774822cef62746d249e8ccb3a875ec4dd3a59eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.12.2-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.12.2-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.12.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ae0fcb063eb730ae672ec13d9162695f6e48531023b20e831ea8d32d3650dd96
MD5 05080c95f07836465a735c7c5460a558
BLAKE2b-256 bec3d68cd54eb949db87c2b0c6bfa50b38dc33ce3d09b800bebcba3e5e568e53

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b9abebf21459c0960ded93e96695c7a67708c1387c6141682e82f69456200add
MD5 01b2e6afc309136bd61f44de54b35d6e
BLAKE2b-256 60a3d839ffea4bc5f5ccd7d33a743884c958b82ff1102f72cdbc9c9da6576d5f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 da969ac4bfad4df467334d8592af0e9297c25e61481ab4620a7be830b0ce6806
MD5 f97e7e879328588abd29f17b8407a3bc
BLAKE2b-256 4455d16196a1cfe0dcc57d04a8a8f4607695afdfed30304c5f298c948a31cdf8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.2-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 3bef312a4672f32188fee6b122b0e3f5d66a86f3c16c66132488c6765a46e672
MD5 3fb163299f5d4a5350bec79120bbf9fd
BLAKE2b-256 52074dc31e298d418ff74af38b4cc2435dc08c8622c5eae0e90b1f52190de7b8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4ef564ac81fea0506bf4bc59b4e0280b8e01368a8599a1d3cc2cc10994fa6588
MD5 05b4912a2a9027546d5f8dc9f0a2a2c3
BLAKE2b-256 ca45786d245f9242a21188c3251f2695a996410f83420044745f99e46e03b1d4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8c6e79a25680c6a48989d4420204608a64b786bc040e6f265295b448c7af4cc5
MD5 c9ced996834f2856ff4fdb84d665d7fb
BLAKE2b-256 75dd15af2a377816a81630a4c05af55da9c2cd5279768e38252bf4a5e0a31912

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.12.2-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.12.2-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.12.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cc985a1b9110cd4d794f29ce178e987a08a170474cdfc0ec202af14cd48d7f24
MD5 424083447391d45fd71d053891dd2bef
BLAKE2b-256 aa4f8d208407d4b95e7031dedf64c429d5a8ffed5be25b7c997918e9b7b7bc66

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8f923803580d23168aaa24acaee038fe05d5348deddd4bf564f149acdbf64888
MD5 f912033b53e02ec771ca1d4317f80ec2
BLAKE2b-256 e6bbc8e709d2067261bf755eaad15c6b22b97eb98fd2753c61e5a2f32acdc062

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 258af5495fe81be0402864d06e5328938dfdbbc8e054900f7065484557ac3d0a
MD5 b916fef022413a9b734fd7362291970b
BLAKE2b-256 eb458f4e0afc7614cab186a62d361690c5eeac17bf4b3be8c5662547c3a4b486

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.2-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 65907757bd58eed456efbe10c01c4f341efdd477f17debd207f390f57c7c97e4
MD5 61d8bcc68f365a4e76fddfa791f67d70
BLAKE2b-256 0b0be5284497a46b3e78f15c34812db2666602b559cb86b14981fc147a4a265c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 8de87cfdb84017165d6df265efe2465dfdb6d3d357d8a7363bf07a50af65445b
MD5 161104c0762894e461213d26f42029d3
BLAKE2b-256 c33cd6b9376805f8ebbf059edb9d22b174f29ce8b3c911377e06ce53b88677df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f846f62ccea77353282cbff7a7a240d74b521124a18ab93d19cb1ca1f4cd735a
MD5 91ad475be520bbdd1067949b874604a6
BLAKE2b-256 95f860673df2f026dc6b5a3b71a693644f7be609b9da407be71fcfec864a6bd4

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.12.2-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.12.2-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.12.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5db6928ee626e015bd1d7f073d2768787a956698bbe453d8b617b42180fbf475
MD5 391114fdf7dbf65a87e59370ab509199
BLAKE2b-256 15e9c96a76335663a8e045d980ebf974c69ae3be812342509e1409dc23380d0e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f3ebee1b1d05e35011a6894c89a8819baf2aad26c5338bf2223c6d22c57f89f2
MD5 239e3a35085bdccc338eab86b66e3f00
BLAKE2b-256 a4ae90da70178561331b85ad5c333faf6e98e9344b4abf60ce3a89cbb1c49f86

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 82bfebb973c7d4b808b219d80f1f9d52a14349f483e58e2ca7b4858aa1e2e2df
MD5 886660b2b5c20ab5cb8aca2321c17e65
BLAKE2b-256 84992a603aefc7bab35f416a3a98c23973a86f4640bf73c7c123a7955361cd21

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.2-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 8f595c94f3cc95069023a44c57a262f783728db8add4b0287f60c9b7846fc553
MD5 c913375442d8a5420eab45532fd2a2dc
BLAKE2b-256 cfdf282df6faaaa5057facb0abe1fb91905c43b433db0b32cb2825da1d78157d

See more details on using hashes here.

Provenance

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