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 License Supported Python Version PyPI - Status codecov CodeQL Unit Tests Build and Publish GH+PyPi Read the Docs Read How To`s Github Telegram

LUCIT-UBLDC-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.8 and runs smoothly up to and including Python 3.13.

There is no conda support until the migration to conda-forge.

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

Anaconda packages are available from Python version 3.8 and higher, but only in the latest version!

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 to be created, we start two GitHubActions:

Both start virtual Windows/Linux/Mac servers provided by GitHub in the cloud with preconfigured environments and create the respective compilations and stub files, pack them into wheels and conda packages and then publish them on GitHub, PYPI and Anaconda. 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

A Conda Package of the latest version with conda from Anaconda

There is no conda support until the migration to conda-forge.

The unicorn-binance-local-depth-cache package is also available as a Cython version for the linux-64, osx-64 and win-64 architectures with Conda through the lucit channel.

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

Installation

There is no conda support until the migration to conda-forge.

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

Update

There is no conda support until the migration to conda-forge.

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

From source of the latest release with PIP from GitHub

Linux, macOS, ...

Run in bash:

pip install https://github.com/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.0) you determined here:

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

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!

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.0.tar.gz (583.0 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.0-cp314-cp314-win_amd64.whl (885.2 kB view details)

Uploaded CPython 3.14Windows x86-64

unicorn_binance_local_depth_cache-2.12.0-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.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (3.0 MB view details)

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

unicorn_binance_local_depth_cache-2.12.0-cp314-cp314-macosx_11_0_arm64.whl (898.2 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

unicorn_binance_local_depth_cache-2.12.0-cp314-cp314-macosx_10_15_x86_64.whl (927.6 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

unicorn_binance_local_depth_cache-2.12.0-cp314-cp314-macosx_10_15_universal2.whl (1.2 MB view details)

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

unicorn_binance_local_depth_cache-2.12.0-cp313-cp313-win_amd64.whl (891.1 kB view details)

Uploaded CPython 3.13Windows x86-64

unicorn_binance_local_depth_cache-2.12.0-cp313-cp313-musllinux_1_2_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

unicorn_binance_local_depth_cache-2.12.0-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.0-cp313-cp313-macosx_11_0_arm64.whl (894.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

unicorn_binance_local_depth_cache-2.12.0-cp313-cp313-macosx_10_13_x86_64.whl (926.5 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

unicorn_binance_local_depth_cache-2.12.0-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.0-cp312-cp312-win_amd64.whl (890.8 kB view details)

Uploaded CPython 3.12Windows x86-64

unicorn_binance_local_depth_cache-2.12.0-cp312-cp312-musllinux_1_2_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

unicorn_binance_local_depth_cache-2.12.0-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.0-cp312-cp312-macosx_11_0_arm64.whl (896.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

unicorn_binance_local_depth_cache-2.12.0-cp312-cp312-macosx_10_13_x86_64.whl (928.2 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

unicorn_binance_local_depth_cache-2.12.0-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.0-cp311-cp311-win_amd64.whl (893.5 kB view details)

Uploaded CPython 3.11Windows x86-64

unicorn_binance_local_depth_cache-2.12.0-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.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (3.1 MB view details)

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

unicorn_binance_local_depth_cache-2.12.0-cp311-cp311-macosx_11_0_arm64.whl (908.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

unicorn_binance_local_depth_cache-2.12.0-cp311-cp311-macosx_10_9_x86_64.whl (938.5 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

unicorn_binance_local_depth_cache-2.12.0-cp311-cp311-macosx_10_9_universal2.whl (1.2 MB view details)

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

unicorn_binance_local_depth_cache-2.12.0-cp310-cp310-win_amd64.whl (891.3 kB view details)

Uploaded CPython 3.10Windows x86-64

unicorn_binance_local_depth_cache-2.12.0-cp310-cp310-musllinux_1_2_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

unicorn_binance_local_depth_cache-2.12.0-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.0-cp310-cp310-macosx_11_0_arm64.whl (910.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

unicorn_binance_local_depth_cache-2.12.0-cp310-cp310-macosx_10_9_x86_64.whl (939.6 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

unicorn_binance_local_depth_cache-2.12.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.12.0-cp39-cp39-win_amd64.whl (892.3 kB view details)

Uploaded CPython 3.9Windows x86-64

unicorn_binance_local_depth_cache-2.12.0-cp39-cp39-musllinux_1_2_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

unicorn_binance_local_depth_cache-2.12.0-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.0-cp39-cp39-macosx_11_0_arm64.whl (911.6 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

unicorn_binance_local_depth_cache-2.12.0-cp39-cp39-macosx_10_9_x86_64.whl (941.6 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

unicorn_binance_local_depth_cache-2.12.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.12.0.tar.gz.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.0.tar.gz
Algorithm Hash digest
SHA256 a83a1e00d0e4f2135efd32d016e2deec38a93247e58a6de8ac29cb4f10199ad9
MD5 9450a489b0faacc90839409e51905ab1
BLAKE2b-256 92e93a5781178bd0916d30473b156510cd136fc2098c054e3216ded18b47ac5d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 bc5a03a0cf4055646b1426180298627f9f5895414419ec4c3d619d8e5c097477
MD5 d954ef8c1bac31e8de98d378cacf3600
BLAKE2b-256 a84749cc986b959642c91f76b82718c4936ee3bce14f372ca7a079283b9cfc49

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4cb0380d4e16ecc5c2886f3e500b96e8f155d73fa8fcd479ac38641df714a6ab
MD5 0e6a4107d20703bc0e026de4c7613fcd
BLAKE2b-256 ee000e813b6632f9ad22672eafb7cc4079ce720877a408abe671991a4c583fce

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.12.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.12.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.12.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ded60b46fcb44d033735426678ddf9921cba4ded6e9593a137e6fb383009f6fc
MD5 92a3a66d53a2169eb0aed25d39f8cbc3
BLAKE2b-256 477fb996f3a0f530071fcb9bef467f765f90ff2f85888a361674661f00bdcbed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8c026fe534a27cb1a8a797bdcb6d1545654446d2d97399e002284cbb2f729f2a
MD5 48dd035a807fad63cb92220fcab99a39
BLAKE2b-256 530cedbebd2a280a76f8a9f07d07864384f84c2ab259e4c8c3ce8198a51c6ab3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f988805e8f9cc44b7b40531c7ce13939166b0afd4496e13f30042eb6919ba3e2
MD5 8c35abe26e4336e437ad68627bb3ec15
BLAKE2b-256 180a8b0674d69a711d52d7a6c7fe92de54e1a674e178e77187620819ccda20a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.0-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 cc757624e62c028d1a7ec8dc9c5b8e7a419a74ac37708372a1ac02fe2b757eb8
MD5 a472e904531a18d0b7d4b14e25a65690
BLAKE2b-256 12705094d9710fc55ebe7dd352cec8d5107d31719957316238867a5655ae4cee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6362a3805ec4361c30c437a7818e666dda76ab43a7b100417d0dc0155e4e8cf7
MD5 c7fbd0bfb76ca6ee35388edd49940a42
BLAKE2b-256 030f9862544fddf34934ff12761d83b7d5a5e10ddb8fdbb2e6bb089d13d52a9c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 db7c2e9f3a2904b86075e7bc61aa0f91ff63216f1f0bd89d4911e59d66d87b45
MD5 d555931636f7488a97192705dc53f50e
BLAKE2b-256 3f36356fc334d29f1f46f54b7057d2ddca3a48d451805f45ccf8464ce636ee36

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.12.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.12.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.12.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5ce86627fa0ed3b9b77c241eec2c43c16d6cf9f1bb910805dec844b3b3242f05
MD5 70211556b023b69bb82e3714e5b5847f
BLAKE2b-256 7486122e0569a24c2dedc0594639d194a4410e29575e7b7990735e7d4c75d979

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2edcceb714bc6212e9711c62a83eeb2f70f5006f0638718e4fa89cc4e5144587
MD5 53325de9c44ae9d01116da2f645c0a00
BLAKE2b-256 bd84c1a1fccd52b9f2d2f270e5ebf6a66cb1275506b1710b2599dbe24fac523f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 8478daa0789e5d8e67613cc84dfead6f2ca8db3b9917226d9cdf4efbca05e0bc
MD5 3c7230bfdebf3eeb0854784f4b197002
BLAKE2b-256 220c1408887f53f8415822a4cccfc70ce923672861bc8fd39ef693fbcf2fc85c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.0-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 10a0b3eb245dcc98ec1e9b2505b873a688eb6b388329aada57730f1cd6defa1f
MD5 a29b63d4601d2e4ef46612941b04b5b2
BLAKE2b-256 2cdb513a2e8c8bee5ea22d14b9a883ef867bd6ec1b604fe58d3b202a33486668

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 0a51b6fcda5670102fc463f9c7c7c775fa7a0b71dbd24433b9792064b7775de8
MD5 a2ac46ad894b7f975870c3b6713de303
BLAKE2b-256 0b33b3762f27c0a6d7ccb6edf4f25ec2316f17a67af8ee8a8b09fbcc95277008

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6d5c782aefd80be56aea4369036a82f7cc67e58e2e51cf7b4571e7d6d2e4c47a
MD5 286c568d365ed64335d4b08dd6bf7dfd
BLAKE2b-256 e8773b0da0557f8509a6a6ffe5e74696694b0484a055c8fd5455cec1e1ccb8a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.12.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.12.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.12.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 139fff6f4eb73ffba93b6a901ffb3c6b70e143c9f9ef1cfa02ac903996ac8c3c
MD5 3efc9d470a3ecfc9e3cb500172c76c0e
BLAKE2b-256 99cd566d53916fb198d30b3b208429afa5ce95a7737cae84ccd451da0f4b015d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 508073d7b3eca5a458d71251a61aa9c98ad047289945358ab61dc0c730220590
MD5 770d644d596ca05f5e03a978222f752d
BLAKE2b-256 e15b40029301137075eb2d58121a1a2a2767f59bb14dff01a0487752ba4f739c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 85ed8ba0854e2a9249f9a6a9748032a4cbe16968ccfb95a248ab6a3492b90ff4
MD5 b06622a65c56df0c9d1b42a080649243
BLAKE2b-256 fd1912ded0af367a543df49c2f8155d8e1beb8d08c2b5d70bee607e10755d8f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.0-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 9c9f8b26914d5a719683ba0d7433bf078a9313818b265afc6029bfa42934f36b
MD5 a9de936d457444e6c3f4d3a6ad3f87bb
BLAKE2b-256 133f40dc297d1f7a019fa4951097a710259e30c6f17f22b042795be101053109

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 33b7ee69c8abf6049e1992174a40ec8ecb093ffee16974670440a7e3a40dfee7
MD5 19b3935fc7eef7af0cdd9ea1b23a080b
BLAKE2b-256 fce0d59ea3fb0ab5a6dad0bc858e4ac48497e051595d4a49e1a1a0fcfa072062

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 90b503fed12879ecb5bce4c10f1fc710373e274514707e5a2ad4111d90e05580
MD5 94f867fc007d003edcff7be4ff4a3f5f
BLAKE2b-256 5b566f729b8e7cdacb717d39d3b99f5266a4208e222cc526d6dc66d02c07ca00

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.12.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.12.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.12.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7fa3a3457c72dc3b269a325b0cd7c42d2bc938840716d6f7962ad88a186d2199
MD5 1488c2bfc6e8633c175537e0841d5e58
BLAKE2b-256 191c802ef0b8dacd33a1144c7a0e1e98d743c474ea84e06a5b16c316bd9a9c1a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 40e20e7972eee8e6720f2f3940bae2647ef4a7bc10fa941392171c21cb11dc70
MD5 49e237fe65d686ab7b9691df4a18126d
BLAKE2b-256 c1aef8f806060bbeea2c531c927ba23adf1007dbb22fded97153c1e28626af57

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d10ac2ec52c7a7e9f3b80ac6e70ca56e883a6098e5df03f537a54bef665a2c6d
MD5 81af995e86dfeb4e87b014d785fd2826
BLAKE2b-256 6cee0f7a64cbea1929bffb74393a4ab93ad74159b3cad863351ed82d6eaa5dd9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 329d50589ee13eef79a6d0739bdbb410033f9ed5fda94a484190e7202920988c
MD5 c175ab49e40799e49c3562e286c5a31d
BLAKE2b-256 580b2259de15c27d9d1b4db42b366713918d5d3782745619458cc6665b345872

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 eb926a67664404688048e71deef58e97b91e60333dc38b064f8c8fe9a3b150a0
MD5 146d691fd8ecb3249650205cf02dc7a5
BLAKE2b-256 c570c5df34ff549569a930a857de1b7997ad596580ec0b21afc832da740cc29c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d00dc4cc21a24a4d6de4daa0712abf4c56351031857747a2a6bee0894e154d5b
MD5 79e28c7e245cb24e0d3bcff76ee3434b
BLAKE2b-256 df557b6368f438be78a8433760bccf062872c54c2dbada1512069a82c894e3a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.12.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.12.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.12.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 101b96663a88489d01969604fd734d037b706374ac11c2b53b2f3d353857ed37
MD5 35e859032fae2d92bddd51350aaa9d6c
BLAKE2b-256 8f479f5a55163ee5cfe7c6b10ed6e594b4db8fcff480eb0b66b96d6bbbef1ac9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d4333a737cea299db0690874903547051d732cf458b1a048d159bfc54a7d9418
MD5 f82454e09e3991a275a711ccc755a55a
BLAKE2b-256 c5de189f742770395cc4ab1e49544203ce6c27da37ae66df48e29852b3d2620a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9ae5ecf27a606ad613ce2e40be7838764d709e9a8ff5470ce2e740aa226f7c9f
MD5 c7d96c0c5890524a5024207e30b4bced
BLAKE2b-256 e4d2af93e54d17080bd653fdededd359327a34380a850d53b50d0fcb79d7238c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 4c0438f93c31ba1a5fd34a878098035c2d87de989476e21a784f94a6d379d180
MD5 823a2f58868cf41dcf769c42dde560ab
BLAKE2b-256 b72b1862b8172a1493514da50373a3c95a5dcb06603f9ce9ef270aec2dcbcc9c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 5eddc70d855e3fc47c9bb964a653997e9ae498d33c46c104843279034a45ff04
MD5 7d2f93f9de6064a28fc5fa68bac95165
BLAKE2b-256 5a1e66075ff57329d288282a5708680b533555cf868a93b34f1d446f88d9a3ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b0da1253193bdd645c0c900f6f711407f59d071763a0adfd00e889854e885164
MD5 62172e89b20ed77f6fd2d5b622120856
BLAKE2b-256 b5e9246bb2ac2d988eff01e2d38ab4452c2b3a2955b01b7956780b9eea06825b

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.12.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.12.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.12.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e30023740e19967f403d63b002b73fea87612e848259fe560de2c4b26d65ce78
MD5 bbda30404ddc533fc1f894714954b1bc
BLAKE2b-256 1434bdfc9f583a916dca8f6ebcac1c12de473125799f2c8864578789fc8952ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8f8cade34e046dec7d1baedfa30d1c5f488bf157007a7791354ce5b99534906f
MD5 f3c3870e76fd5e4fa602cd8b2232a93c
BLAKE2b-256 d91c8cfbf7a5bfe46e514a078a37f3342940df39180feaf68e21de811f255d4b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 96e1e838e8c6bec2ed788ed850311c05a78803b1a1a392c25bcc804e4d603dc9
MD5 250addf80ae12573b424aa7690bef0b6
BLAKE2b-256 58bf22b0a1be87c886a9accdccc4735edc5f71214108eae8cbfd59608f963a6e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 51dd7d63675ab3c5350d15cddd1c73fb1165e128f655749aea36c1ff33d062d9
MD5 c6b824ae808c89e81c086da16149fa9a
BLAKE2b-256 d02a5046159b5ecc9ab5453246b448475c9b84f8601ba4c8e7bc0d08be72da34

See more details on using hashes here.

Provenance

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