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

pip install https://github.com/oliver-zehentleitner/unicorn-binance-local-depth-cache/archive/2.12.1.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.1.tar.gz (583.3 kB view details)

Uploaded Source

Built Distributions

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

unicorn_binance_local_depth_cache-2.12.1-cp314-cp314-win_amd64.whl (885.9 kB view details)

Uploaded CPython 3.14Windows x86-64

unicorn_binance_local_depth_cache-2.12.1-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.1-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.1-cp314-cp314-macosx_11_0_arm64.whl (898.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

unicorn_binance_local_depth_cache-2.12.1-cp314-cp314-macosx_10_15_x86_64.whl (928.1 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

unicorn_binance_local_depth_cache-2.12.1-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.1-cp313-cp313-win_amd64.whl (891.8 kB view details)

Uploaded CPython 3.13Windows x86-64

unicorn_binance_local_depth_cache-2.12.1-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.1-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.1-cp313-cp313-macosx_11_0_arm64.whl (895.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

unicorn_binance_local_depth_cache-2.12.1-cp313-cp313-macosx_10_13_x86_64.whl (927.0 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

unicorn_binance_local_depth_cache-2.12.1-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.1-cp312-cp312-win_amd64.whl (891.5 kB view details)

Uploaded CPython 3.12Windows x86-64

unicorn_binance_local_depth_cache-2.12.1-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.1-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.1-cp312-cp312-macosx_11_0_arm64.whl (896.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

unicorn_binance_local_depth_cache-2.12.1-cp312-cp312-macosx_10_13_x86_64.whl (928.6 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

unicorn_binance_local_depth_cache-2.12.1-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.1-cp311-cp311-win_amd64.whl (893.9 kB view details)

Uploaded CPython 3.11Windows x86-64

unicorn_binance_local_depth_cache-2.12.1-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.1-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.1-cp311-cp311-macosx_11_0_arm64.whl (908.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

unicorn_binance_local_depth_cache-2.12.1-cp311-cp311-macosx_10_9_x86_64.whl (939.1 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

unicorn_binance_local_depth_cache-2.12.1-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.1-cp310-cp310-win_amd64.whl (891.7 kB view details)

Uploaded CPython 3.10Windows x86-64

unicorn_binance_local_depth_cache-2.12.1-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.1-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.1-cp310-cp310-macosx_11_0_arm64.whl (910.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

unicorn_binance_local_depth_cache-2.12.1-cp310-cp310-macosx_10_9_x86_64.whl (940.2 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

unicorn_binance_local_depth_cache-2.12.1-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.1-cp39-cp39-win_amd64.whl (892.7 kB view details)

Uploaded CPython 3.9Windows x86-64

unicorn_binance_local_depth_cache-2.12.1-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.1-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.1-cp39-cp39-macosx_11_0_arm64.whl (912.0 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

unicorn_binance_local_depth_cache-2.12.1-cp39-cp39-macosx_10_9_x86_64.whl (942.2 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

unicorn_binance_local_depth_cache-2.12.1-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.1.tar.gz.

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.1.tar.gz
Algorithm Hash digest
SHA256 a6ba7b55773bcb61ccdcbe252c94bf9fb2fc6434d530bf23d078348dba0dee71
MD5 668f1038b1e52a7c475292e57a0ab7f9
BLAKE2b-256 4c37ddc256654c651b307e86ad77ba561ee1935441069224c52823120b49466a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 eb25aad37168d188854807c2633fc87b7e9bbb2717c9cb0c9bbaf63ce4b61eb0
MD5 7da4a4ffbbdc17be8d6036fca66f765d
BLAKE2b-256 2a2b435de32d21c5ff0bded208487c6700ca935b2bab08f3b632d5e00e7fc2a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b3953358bfd97df3f26527358d30e55e0e3a6cdc0402bad39c52c6680c8892eb
MD5 8f08357a449b6f6241ba5839163973c0
BLAKE2b-256 918d72cf7a7a6c6e1e64eaba3e79d04875779ce5ae57dd4f4c043642f4726f40

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.12.1-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.1-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.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 db1b7fd1dcfa3bd913301a0ce01d35d0259f1a4c3fd520fff553b8cbbf4587b8
MD5 a8843cb42464d9a7075348c132672f73
BLAKE2b-256 2c73123cfd09c30670c964795fdd286f623169d0703c83cbc05963498f0d686d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4994521fecba2a99d9eb4526bf1be4b58df4a48aa543c37be6786171ef0aa1d4
MD5 700e29bbbd3eeb1bd076dbd60f6fc198
BLAKE2b-256 74190ee1fad476c69eebb95512df6cd154cfefa42f0e1aed909f8b587b94278d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 10eff5625bde4e3d9acbc8aaa91803fa33da148ad1e7e62d58883d62e88a36c1
MD5 f7f5ffa747997a1dde21431bfa7a6eef
BLAKE2b-256 d0f087c208c15089748753843735f5b58007ce375e91b716a7774c7a4c1694e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.1-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 4e94352ae058c7fb9de243ffded3582464322f3463d8cb751d0bfb9d31989663
MD5 4011e78f08f0a1dfb249d379cdac74aa
BLAKE2b-256 b80b308b17cca09e53143e00c5b46059cedb6cf60f488898bacc8488714a9a0d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f05cce9f1cd2a1b6302f91750606002c5d380df47e7d2e856e4e4bb69266eaa9
MD5 d4bffcac40eeb83e65c1f8ed0ea9240e
BLAKE2b-256 ab4f2dcad5aef0f41ad01571fd79ea35451fbfdab983d1ae48e624e8bb008c2b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e1ed756e973483d56e45395344fbb423c1cf52dbf43f83d7276b48ad2b05fd9b
MD5 4a0ed194a7a3ace8137b9fd4f405f95e
BLAKE2b-256 1564e820700a0b388c1630318513ddc672786a896ce8257f9d64e9b1d1e63a2c

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.12.1-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.1-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.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 46f7c909739e67c966283450415800b9e6eb3c65335ea33d3ea05a5bbe94c851
MD5 4b7f76a8ccf5a6cde306a20271a136b8
BLAKE2b-256 8b50743a44ebd6db4b55e4431b099e11fc247d10fc3c35ee97100fd9a9ef9c88

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 128e5cbe62b144bb1f80bef085968129dd30efe39760ed5ebced7793fc00852a
MD5 54bd3d98925120013dc6b236dc08d7d5
BLAKE2b-256 5064dac8a8d2e04192487eb79ee2da5fbbe7e7ad31872e1c8098997583bc2de0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9e6e8d0b05c295e38caf434c83126fbbeaf13bdd06b1861720316d6c0370266d
MD5 74930ef53d9c5ffedd5a59f3cb702ec5
BLAKE2b-256 650e4d63caf74d8950ed1ad189ea511c4dded5285ba547838832040658bd5165

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.1-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 e48349c571f56406888a36442644baadaad544feb2d0bf16e9f7ee48a65f0969
MD5 3cc30b6d58737c398c0b777196245508
BLAKE2b-256 64c007b44d166215cb95973d809be83f879ce86a19b9c67cac1afd1cd913fb34

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6827d947baf4edd6128ba8983030cd6918c94f6c6d32d438b660c12a1278fe0c
MD5 d576efb2c55df121b4e851b8ff748f10
BLAKE2b-256 01643b54d0233cdfc71d32b87b5ae51a082c4d6b240423860280f151e449962b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 07900c3a99b8753df00a064ba06e3c2a5ec50a90c97a24e2ff36f5553f7df10a
MD5 cfc787fb568e0938f6d02c3009414819
BLAKE2b-256 7065ea63bda406677ae23b6b5b55b3c2bffb0efaa5c09892e877939aef5a660f

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.12.1-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.1-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.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4ab7548c66aad2cddc7aa25d2ab38942f816ad28c01895ebee1d9e086177e2f1
MD5 419a7ccf8dd4cfc217bcdd82dd7534d7
BLAKE2b-256 ed8bd314e3c35d8f6896217ae03e95de31027767ad4e3493a3d8b13152c0b63c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 04cf921a1a7429ab130c9aabb18ed226649c70bff517e92e3a5fefb1858bb31f
MD5 88b2c57b34e64b734a5c2db6d76baca4
BLAKE2b-256 1436499d052317ed8aa492188c5eb893833a2f36c49b537e2539a81e9f1d8ab2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 3d8e0072c17e7dc0a3a4c398502d1a0f885e3db5930812f6a1dd2827c3b774b7
MD5 868d8fb70f72847fac4edc8c679972d2
BLAKE2b-256 46e1d170af7b455f491ef473a89dd336e78168d5d84ed23e61316043ce752e7d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.1-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 479b6466f83d671967dbb585085ce1593b945f5006012f042761708e8c46c098
MD5 d00ceb6c98b448df0ac62000651e766f
BLAKE2b-256 cd189c1d898b29e4ebc9f3a739995979f7a41d193321b17f3b1178d33a21fb78

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 59ffedf5d687ae470df7bef5063cc0026af1d601fbb69814fea85ea71c610482
MD5 a962e2f8a68f23daf827f3f1501f96c1
BLAKE2b-256 81199568460e1d79f68e9521baa64a51d39feb717571488bce2d8efc6b6a4e61

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 911bc82bf37cade96b581e76e90c72936849ab4550c6aa5dbfe3c3937df7bba6
MD5 50ea337e8dfb43647adf728c40894f2f
BLAKE2b-256 18b466d21e3387375ad62de7c0ba5f0af6fc4ac854530a14d0d54b4dcb4c03bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.12.1-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.1-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.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8b9c619d27ab8478bd5ed0c967ec39a9e0c5964146e321508aeca261d91e264f
MD5 66972bbb05a8e2e6ab0f7fca16fff33c
BLAKE2b-256 c22939be4a9d3307577e9cd3e4c230860cde485a76ae7a111c7be4870d4ff2e1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 426efa4fc589c2c18527a2df2e614ca9d5823c4a801432e520e5925a27529351
MD5 acc86c9ddf1c7a3cc015395b7e7bfdf4
BLAKE2b-256 1e9198754ea51b5f8b2dd115b29f973ed60bdebbdb71089afc0b7e47203d1c69

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 21e674136c8157e9c265b8f3fa1a29dfadaccfc7702c869a05656fc2eb18aca8
MD5 675d2467a47e12565049e9367c8a9141
BLAKE2b-256 19fd982ad80343641dc8da178c2cc235abad75104b053d93b67dea61ccd725a1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.1-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 3eb90e10a98b23d9bfc1f97c892decc0ff9a1589ebff363434ed08823d2f0ee9
MD5 1e63679a6412738bc88ef094ed6edefe
BLAKE2b-256 21d8e0d75b11ef188a08f2c80f3b953c2f20d3b3a9118bb96fd94cb02e0681b9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6d18d81a8c1fdd912dc55b2de92084cacd18ba0cdcdad762a36508ff91c874b7
MD5 4dbdf7a77c08776a7b7d7656cf4e68da
BLAKE2b-256 cc0dd0ebd57612c50966604d41fcc7ed7d788b58003438f21a29dc60959db64a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9914ae403369714e44d4cc818a215fff38d832a975d5f3e720f6ed1c78de3164
MD5 9e6d6db2383f524781b7e9067d6c7837
BLAKE2b-256 2aabf2f2299d0d8501c041ee4605dcdefb3deac7b73cb776f5a1ef369bde3c8b

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.12.1-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.1-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.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 521c2a66d6dcb4c156465c6306e926916ea8407d29bf3062b13e9f7d54410d30
MD5 3854b8c016d0fa099bab9c96e26a04dd
BLAKE2b-256 a884229e6c8df596a6d94ae7cf39c03d69b873a0bfd1429cb5c378135d6822dd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f71c086e596ea3f84dcd4ee13009dfbb593f0b4ce41294c1be3d5165d216e8a0
MD5 db5c15f36c4adafa6f1cb11619f98532
BLAKE2b-256 786c64487d847de1fd2803e4f9d2a3c66f15d8cfd6a6bf10aeea796e9d3a04cf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 06395b2b17a33c90b7e1818f21b1d0d87452e600ef0338a6ca7cc5c1b11b7541
MD5 0fe2c82505a84b23f31a35d60673008d
BLAKE2b-256 815ae2ef20713ae4a5878eecf0c5b7667844fdc910dc5ab23770faa0d8130121

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.1-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 07908ef8863015626399cfbaac4429c885f62d1e16aa2a2df47ea5c457e81229
MD5 1a94ab251d4c4f24b12a4653ac231739
BLAKE2b-256 0a4ed5369ca060015156ddeb3257d3978db5c1cef500c58d8d06ac8d5acae2b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e8029598f6d2b2769571bcbfd7469bdcd1fe2c0fe9bce1d487fbafdfa7392a0d
MD5 507cc84175ba9515d89dbf4736a57dc6
BLAKE2b-256 8ac25fd717fead8a9f0e6f4f3323454c34843fb3f6b88bc827b8468f7cc32de6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 826648f893dafe9be4b52b67c217fc174d9dc00287de918191d08273bfc02e15
MD5 8285291580af755341b9c23602d02a49
BLAKE2b-256 c6bba345c4fa83d4d4981e4fcfc525a75162804caf8718c22b50618ba35430d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for unicorn_binance_local_depth_cache-2.12.1-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.1-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.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5094120eb03ac1312745f990af759ab3def6350fd816d60babb9252a896605df
MD5 e00d11fb0bf6d8508e2da71d4763d2f0
BLAKE2b-256 6b532474ea268a495fdf415c1df0773a070893029f89ebc9c2c9f2b7fe6adf5a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b3315843d77616dc622bb2df04a2dda15cb855c40f69caf5a49f54bca56b1fc9
MD5 83b9d25583e98f2e4806d41a0cc505e0
BLAKE2b-256 7731eed1995e6e772518b06a4bb869b00327a3e873a847e8ed73c46e1a9f3cce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ad63d8d99564329f07da813d1e4a238d3c9fc3d5ceb0dfc760f350dece3045a1
MD5 8a292a11e46b3dcb5bb37fb15c006a97
BLAKE2b-256 abe1a65243744b6a9224e742800b03bc85cfa730fe7f3f70228fe21f45785c83

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unicorn_binance_local_depth_cache-2.12.1-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 7cc8a5a580fb31d2ed1b1b7893577e69114e431c6d56db017efaa7a8002d84f6
MD5 3661c6602b5d1d198df3e1824ab4b112
BLAKE2b-256 3425d2ace71fb6c11fe86532f9502a46849bdc91af073e57e3e88183d11fcb67

See more details on using hashes here.

Provenance

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