Skip to main content

High-performance Betfair price stream reader

Project description

tickrush

tickrush is a performance-first ingestion layer for saved Betfair Exchange price stream data. Its sole purpose is to get historical Betfair MarketBook updates into flumine as fast as possible.

Installation

Initial releases are available from GitHub. A PyPI release will follow shortly.

pip install git+https://github.com/mberk/tickrush.git

Python >=3.10 required. A Rust toolchain is required to build the PyO3 extension.

Usage

To use tickrush when running a flumine simulation simply apply a trivial monkey-patch to HistoricalStream.create_generator. Here is an illustration using the flumine LowestLayer example strategy:

# Store original create_generator for restoration
_original_create_generator = HistoricalStream.create_generator

# Monkey-patch HistoricalStream to use tickrush
HistoricalStream.create_generator = tickrush.create_generator

client = clients.SimulatedClient()

framework = FlumineSimulation(client=client)

markets = ["tests/resources/PRO-1.170258213"]

strategy = LowestLayer(
    market_filter={"markets": markets},
    max_order_exposure=1000,
    max_selection_exposure=105,
    context={"stake": 2},
)
framework.add_strategy(strategy)

framework.run()

# Restore original
HistoricalStream.create_generator = _original_create_generator

Intent

tickrush is obsessively focused on minimising the time taken to:

  • parse archived Betfair stream messages
  • produce MarketBook objects consumable by flumine
  • access fields on said MarketBook objects

Everything else is deliberately out of scope.

Technology

  • Rust parser exposed via PyO3
  • Low-allocation decoding of Betfair stream messages
  • Efficient runner- and price-level cache reuse
  • Thin Python surface designed to integrate directly with flumine

Roadmap

Planned future work includes:

  • A compact proprietary file format for even more efficient parsing
  • Offering a range of stripped down MarketBook-like objects to avoid unnecessarily constructing unused fields
  • Switching to a pure C extension to minimise getter overhead

Status

This project is under active development and not yet API-stable.

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

tickrush-0.1.0.tar.gz (858.7 kB view details)

Uploaded Source

Built Distributions

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

tickrush-0.1.0-cp313-cp313-win_amd64.whl (257.4 kB view details)

Uploaded CPython 3.13Windows x86-64

tickrush-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (373.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

tickrush-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (360.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

tickrush-0.1.0-cp313-cp313-macosx_11_0_arm64.whl (335.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

tickrush-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl (356.9 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

tickrush-0.1.0-cp312-cp312-win_amd64.whl (257.5 kB view details)

Uploaded CPython 3.12Windows x86-64

tickrush-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (373.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

tickrush-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (360.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

tickrush-0.1.0-cp312-cp312-macosx_11_0_arm64.whl (335.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

tickrush-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl (357.1 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

tickrush-0.1.0-cp311-cp311-win_amd64.whl (256.1 kB view details)

Uploaded CPython 3.11Windows x86-64

tickrush-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (372.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

tickrush-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (360.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

tickrush-0.1.0-cp311-cp311-macosx_11_0_arm64.whl (335.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

tickrush-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl (355.5 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

tickrush-0.1.0-cp310-cp310-win_amd64.whl (256.3 kB view details)

Uploaded CPython 3.10Windows x86-64

tickrush-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (372.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

tickrush-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (360.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

tickrush-0.1.0-cp310-cp310-macosx_11_0_arm64.whl (335.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

tickrush-0.1.0-cp310-cp310-macosx_10_12_x86_64.whl (355.8 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

Details for the file tickrush-0.1.0.tar.gz.

File metadata

  • Download URL: tickrush-0.1.0.tar.gz
  • Upload date:
  • Size: 858.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for tickrush-0.1.0.tar.gz
Algorithm Hash digest
SHA256 b0c1150f90ef8b0525ab22affea262e731d0e18716e87e658f18820c4b22c8b6
MD5 f2cb109ef9a584ca3ea0f9f93d6a7ee9
BLAKE2b-256 4d8d93a0cad07c7b73b378cc24b66f67c8e6ea94477608698b9dbcc91ca7dd6a

See more details on using hashes here.

Provenance

The following attestation bundles were made for tickrush-0.1.0.tar.gz:

Publisher: release.yml on mberk/tickrush

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

File details

Details for the file tickrush-0.1.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: tickrush-0.1.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 257.4 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for tickrush-0.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 05236f0b4c942c4e84a371c6eedb4ae9499599b73b33d9fe789f6bda55822616
MD5 54fe735976cf139c08941f7080d0b6af
BLAKE2b-256 e5f8cf192e1db996bfb6ac641e697e63afc67659b943daedb10b524c42725f16

See more details on using hashes here.

Provenance

The following attestation bundles were made for tickrush-0.1.0-cp313-cp313-win_amd64.whl:

Publisher: release.yml on mberk/tickrush

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

File details

Details for the file tickrush-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tickrush-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9a480a8397ad5e485f850e00f99e40055cc4639d362340cf0af7d069852574e0
MD5 95babd0d04bc8eda056a10d3237feca9
BLAKE2b-256 7d53c62439bb042ce2dadd68c050bfd2bc6d4691d59fd53ef5010c6e07f3adaf

See more details on using hashes here.

Provenance

The following attestation bundles were made for tickrush-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on mberk/tickrush

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

File details

Details for the file tickrush-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for tickrush-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fac0f21c4198721daba47979165ea5856500c7d64b6ca67b9ef123e76f747347
MD5 ad1c1b1cb441b66bd2e840f091219896
BLAKE2b-256 95e6aff21c6ffbdb8e2768f6a1dca0abb7c40e34b11c6b683933ef45af84754c

See more details on using hashes here.

Provenance

The following attestation bundles were made for tickrush-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on mberk/tickrush

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

File details

Details for the file tickrush-0.1.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tickrush-0.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 56cd1e18f6f640d651d9a901ce901d328b1090404e63de7afd1680178774717b
MD5 2c0b1cf50cababd05fb7866ca91f9deb
BLAKE2b-256 0a7565779c13b11b2108113019040a2a4158fa41e95bba64108b72c97a138c6d

See more details on using hashes here.

Provenance

The following attestation bundles were made for tickrush-0.1.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yml on mberk/tickrush

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

File details

Details for the file tickrush-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tickrush-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8d99999c8df327c5090a421397b07fbcb62f797905bd893e38a75dd49965b413
MD5 76fa2f5504364684ca9c8451a64b4369
BLAKE2b-256 3a8f44b2b94fa8c80f325d6d7dae1b0a42a383c529a811b552fa29048d108d1d

See more details on using hashes here.

Provenance

The following attestation bundles were made for tickrush-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: release.yml on mberk/tickrush

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

File details

Details for the file tickrush-0.1.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: tickrush-0.1.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 257.5 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for tickrush-0.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8281d51280f0fc9e1d895b2a5bb0b6616c3e079b41f0febb4ca7542ad8448228
MD5 fa85c1537db6153cfe5ceba85db8358f
BLAKE2b-256 39e178fb089a9c46117a3587309ce1f23b531f634a2c28beae6b0e0123237c5e

See more details on using hashes here.

Provenance

The following attestation bundles were made for tickrush-0.1.0-cp312-cp312-win_amd64.whl:

Publisher: release.yml on mberk/tickrush

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

File details

Details for the file tickrush-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tickrush-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9dd9c7f6d51ef51ef5c8bdb69c6cecc76e8dd04790c11e2aee5b48608477e035
MD5 7fb13b1399eb93caf762aa7d91832b47
BLAKE2b-256 c37e149f1ca2f1ef89f413dda19946f677dd63552901db409a547ca1ab1d3631

See more details on using hashes here.

Provenance

The following attestation bundles were made for tickrush-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on mberk/tickrush

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

File details

Details for the file tickrush-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for tickrush-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dac89165da0dd3d5a66a3effb45a66fa692cc41c79b4d5b75657877f65e2d802
MD5 8098ef428fffa5ac0527aec2167dfb46
BLAKE2b-256 2dcc73a028bf509b8811f82e2850b9d75da4c7f7eb40f36a56ff6e4627c599cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for tickrush-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on mberk/tickrush

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

File details

Details for the file tickrush-0.1.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tickrush-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 923f1dd4b4cf1229da6e452ee74a6e70af23ad4c5029a5adbcb34fcfe34063f8
MD5 d6e87b651a5c4719c215b2aa0ca30dff
BLAKE2b-256 a03e1adfbfb8a9503a591a0739066f4cc4ddd9344595292b8138e948c003884e

See more details on using hashes here.

Provenance

The following attestation bundles were made for tickrush-0.1.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yml on mberk/tickrush

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

File details

Details for the file tickrush-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tickrush-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0aef31a96d2b4ff08cd3da3dc2bcf06bcb25b3d2da412a9735fa449cc87e4ec7
MD5 1898161b60a66689fa8cc27a57172feb
BLAKE2b-256 3876c13e351a2f46096040acb15b6c3b2d6e45f0866126a901e9e87af27c9b47

See more details on using hashes here.

Provenance

The following attestation bundles were made for tickrush-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: release.yml on mberk/tickrush

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

File details

Details for the file tickrush-0.1.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: tickrush-0.1.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 256.1 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for tickrush-0.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3ebc20e309810456a43a99f33e764f2c7b21f47ff81be399df8edf4fa69ce7e6
MD5 b3d6677ccf64093b56cf21e54296ebb1
BLAKE2b-256 492803ec869fb1bdcf3ba577e0d71317f2e8cdf004a7aa2e58f8ba2491dba37f

See more details on using hashes here.

Provenance

The following attestation bundles were made for tickrush-0.1.0-cp311-cp311-win_amd64.whl:

Publisher: release.yml on mberk/tickrush

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

File details

Details for the file tickrush-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tickrush-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 69990cf0ccba03815ba82977c6baf233dd7366639b6a8d65ccf6b7246b3fb3f2
MD5 9fd9ca39a491b119920e7106333332d0
BLAKE2b-256 2dfcca83c4829881a9428ea1837d0cca7c9d7b65cbb3901ba5d3569a41a2b378

See more details on using hashes here.

Provenance

The following attestation bundles were made for tickrush-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on mberk/tickrush

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

File details

Details for the file tickrush-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for tickrush-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cc1cdcd1b48b9324a99e3949db5dbcf95bf42dcbdf0e86a7dec7124010197414
MD5 aa215ce9201f2986c887ff4a8eabcfeb
BLAKE2b-256 f9df6f52b9372dc1313f503ad286ba1c773dafe088ab8559ea2ffe62055223ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for tickrush-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on mberk/tickrush

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

File details

Details for the file tickrush-0.1.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tickrush-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 46204a5f6f1c8fb9860b071bf1dbf131ff6937807afc73298aebac8381a0b097
MD5 a8b2129434168d6e3ed0e87a0f2c9f8e
BLAKE2b-256 aa8eb7e9c93745909546be7f474af203f622e882d097dd443261655539ff66cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for tickrush-0.1.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on mberk/tickrush

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

File details

Details for the file tickrush-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tickrush-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 47953ea04d56557c12919efe1e5ab2e08da00f7f50d27cfe6bba7ddf7201930c
MD5 14142da39de600fb19684a2674580241
BLAKE2b-256 354e18df581d2b61096d54ff1e715c92a29299871898aea5f0c3cb428873fa12

See more details on using hashes here.

Provenance

The following attestation bundles were made for tickrush-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: release.yml on mberk/tickrush

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

File details

Details for the file tickrush-0.1.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: tickrush-0.1.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 256.3 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for tickrush-0.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f03c618f0a5d3803734ba260d0a0852db5e9da594ba7fd72feef8b4ac99b1f58
MD5 10ad93568f070605e43dc1d36c2af5f6
BLAKE2b-256 79760391f054ac5793d0edda48d50eed526dd6e7fdcbc03cebca3e12f6a493ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for tickrush-0.1.0-cp310-cp310-win_amd64.whl:

Publisher: release.yml on mberk/tickrush

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

File details

Details for the file tickrush-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tickrush-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e8957f9b485ed5df947944caa1ffad99140f123d27a7446e06f5f1aee6290106
MD5 127d7ec9abcbd412661accd96b2726fd
BLAKE2b-256 8392bf8ee3f0ab3b1cdddbd6fd267d49e85687418297cba41a1b416a201b641a

See more details on using hashes here.

Provenance

The following attestation bundles were made for tickrush-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on mberk/tickrush

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

File details

Details for the file tickrush-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for tickrush-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 07a4cc8fa9c07ed3448e6d44a38b55b32c8b63fc8912d0800350c3bae5f35de0
MD5 8cc1109abba21bfa54d3a164e9861f15
BLAKE2b-256 1bf870c7c0e32f7e9f2e1dfa1c81a7674c62c127f6358dc4ee2b85f486bfb39d

See more details on using hashes here.

Provenance

The following attestation bundles were made for tickrush-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on mberk/tickrush

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

File details

Details for the file tickrush-0.1.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tickrush-0.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 be4c8c5a341b2a041e7d02bd8c460e26a2b4259506748b11a1e8341dd3cf5cae
MD5 3994ce28f1b3c9e165e1b352f6b21ffc
BLAKE2b-256 b6860f7f695b85e0f4555dc7954bc1d9373c8b56279058ab50e5d6edaa5d64a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for tickrush-0.1.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release.yml on mberk/tickrush

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

File details

Details for the file tickrush-0.1.0-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tickrush-0.1.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 294f7e3d4b6a3c49d50712e46cc774e997e12b72acb35f4e695c6c219bc99f06
MD5 5a79fd7ba94658b8137b84733eeab4d3
BLAKE2b-256 1de7f7c9a99eab802809e00dc35167cd1d774d3ccf0ae872ab01170b2bbfa8de

See more details on using hashes here.

Provenance

The following attestation bundles were made for tickrush-0.1.0-cp310-cp310-macosx_10_12_x86_64.whl:

Publisher: release.yml on mberk/tickrush

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