Skip to main content

No project description provided

Project description

Python compat PyPi GHA Status Coverage Documentation Status


Documentation: https://tamp.readthedocs.io/en/latest/

Source Code: https://github.com/BrianPugh/tamp

Online Demo: https://brianpugh.github.io/tamp

Tamp is a low-memory, DEFLATE-inspired lossless compression library optimized for embedded and resource-constrained environments.

Tamp delivers the highest data compression ratios, while using the least amount of RAM and firmware storage.

Features

  • Various language implementations available:
    • Pure Python reference:
      • tamp/__init__.py, tamp/compressor.py, tamp/decompressor.py
      • pip install tamp will use a python-bound C implementation optimized for speed.
    • Micropython:
      • Native Module.
        • mpy_bindings/
    • C library:
      • tamp/_c_src/
    • Javascript/Typescript via Emscripten WASM.
      • wasm/
    • Unofficial rust bindings.
      • See documentation here.
  • High compression ratios, low memory use, and fast.
  • Compact compression and decompression implementations.
    • Compiled C library is <5KB (compressor + decompressor).
  • Mid-stream flushing.
    • Allows for submission of messages while continuing to compress subsequent data.
  • Customizable dictionary for greater compression of small messages.
  • Fuzz tested with libFuzzer + AddressSanitizer/UBSan.
  • Convenient CLI interface.

Installation

Tamp contains several implementations:

  1. A reference desktop CPython implementation that is optimized for readability (and not speed).
  2. A Micropython Native Module implementation (fast).
  3. A C implementation (with python bindings) for accelerated desktop use and to be used in C projects (very fast).
  4. A JavaScript/TypeScript implementation via Emscripten WASM (see wasm/).

This section instructs how to install each implementation.

Desktop Python

The Tamp library requires Python >=3.9 and can be installed via:

pip install tamp

To also install the tamp command line tool:

pip install tamp[cli]

MicroPython

MicroPython Native Module

Tamp provides pre-compiled [native modules]{.title-ref} that are easy to install, are small, and are incredibly fast.

Download the appropriate .mpy file from the release page.

  • Match the micropython version.
  • Match the architecture to the microcontroller (e.g. armv6m for a pi pico).

Rename the file to tamp.mpy and transfer it to your board. If using Belay, tamp can be installed by adding the following to pyproject.toml.

[tool.belay.dependencies]
tamp = "https://github.com/BrianPugh/tamp/releases/download/v1.7.0/tamp-1.7.0-mpy1.23-armv6m.mpy"

C

Copy the tamp/_c_src/tamp folder into your project. For more information, see the documentation.

Usage

Tamp works on desktop python and micropython. On desktop, Tamp can be bundled with the tamp command line tool for compressing and decompressing tamp files. Install with pip install tamp[cli].

CLI

Compression

Use tamp compress to compress a file or stream. If no input file is specified, data from stdin will be read. If no output is specified, the compressed output stream will be written to stdout.

$ tamp compress --help
Usage: tamp compress [ARGS] [OPTIONS]

Compress an input file or stream.

╭─ Parameters ───────────────────────────────────────────────────────────────────────────────╮
│ INPUT,--input    -i  Input file to compress. Defaults to stdin.                            │
│ OUTPUT,--output  -o  Output compressed file. Defaults to stdout.                           │
│ --window         -w  Number of bits used to represent the dictionary window. [default: 10] │
│ --literal        -l  Number of bits used to represent a literal. [default: 8]              │
╰────────────────────────────────────────────────────────────────────────────────────────────╯

Example usage:

tamp compress enwik8 -o enwik8.tamp  # Compress a file
echo "hello world" | tamp compress | wc -c  # Compress a stream and print the compressed size.

The following options can impact compression ratios and memory usage:

  • window - 2^window plaintext bytes to look back to try and find a pattern. A larger window size will increase the chance of finding a longer pattern match, but will use more memory, increase compression time, and cause each pattern-token to take up more space. Try smaller window values if compressing highly repetitive data, or short messages.
  • literal - Number of bits used in each plaintext byte. For example, if all input data is 7-bit ASCII, then setting this to 7 will improve literal compression ratios by 11.1%. The default, 8-bits, can encode any binary data.

Decompression

Use tamp decompress to decompress a file or stream. If no input file is specified, data from stdin will be read. If no output is specified, the compressed output stream will be written to stdout.

$ tamp decompress --help
Usage: tamp decompress [ARGS] [OPTIONS]

Decompress an input file or stream.

╭─ Parameters ───────────────────────────────────────────────────────────────────────────────╮
│ INPUT,--input    -i  Input file to decompress. Defaults to stdin.                          │
│ OUTPUT,--output  -o  Output decompressed file. Defaults to stdout.                         │
╰────────────────────────────────────────────────────────────────────────────────────────────╯

Example usage:

tamp decompress enwik8.tamp -o enwik8
echo "hello world" | tamp compress | tamp decompress

Python

The python library can perform one-shot compression, as well as operate on files/streams.

import tamp

# One-shot compression
string = b"I scream, you scream, we all scream for ice cream."
compressed_data = tamp.compress(string)
reconstructed = tamp.decompress(compressed_data)
assert reconstructed == string

# Streaming compression
with tamp.open("output.tamp", "wb") as f:
    for _ in range(10):
        f.write(string)

# Streaming decompression
with tamp.open("output.tamp", "rb") as f:
    reconstructed = f.read()

Benchmark

In the following section, we compare Tamp against:

  • zlib, a python builtin gzip-compatible DEFLATE compression library.
  • heatshrink, a data compression library for embedded/real-time systems. Heatshrink has similar goals as Tamp.

All of these are LZ-based compression algorithms, and tests were performed using a 1KB (10 bit) window. Since zlib already uses significantly more memory by default, the lowest memory level (memLevel=1) was used in these benchmarks. It should be noted that higher zlib memory levels will having greater compression ratios than Tamp. Currently, there is no micropython-compatible zlib or heatshrink compression implementation, so these numbers are provided simply as a reference.

Compression Ratio

The following table shows compression algorithm performance over a variety of input data sourced from the Silesia Corpus and Enwik8. This should give a general idea of how these algorithms perform over a variety of input data types.

dataset raw tamp tamp (LazyMatching) zlib heatshrink
enwik8 100,000,000 51,016,917 50,625,930 56,205,166 56,110,394
RPI_PICO (.uf2) 667,648 289,454 290,577 303,763 -
silesia/dickens 10,192,446 5,538,353 5,502,834 6,049,169 6,155,768
silesia/mozilla 51,220,480 24,413,362 24,229,925 25,104,966 25,435,908
silesia/mr 9,970,564 4,520,091 4,391,864 4,864,734 5,442,180
silesia/nci 33,553,445 6,824,403 6,772,307 5,765,521 8,247,487
silesia/ooffice 6,152,192 3,773,003 3,755,046 4,077,277 3,994,589
silesia/osdb 10,085,684 8,466,875 8,464,328 8,625,159 8,747,527
silesia/reymont 6,627,202 2,818,554 2,788,774 2,897,661 2,910,251
silesia/samba 21,606,400 8,383,534 8,346,076 8,862,423 9,223,827
silesia/sao 7,251,944 6,136,077 6,100,061 6,506,417 6,400,926
silesia/webster 41,458,703 18,146,641 18,010,981 20,212,235 19,942,817
silesia/x-ray 8,474,240 7,509,449 7,404,794 7,351,750 8,059,723
silesia/xml 5,345,280 1,472,562 1,455,641 1,586,985 1,665,179

Tamp outperforms both heatshrink and zlib on most datasets, winning 12 out of 14 benchmarks. This is while using around 10x less memory than zlib during both compression and decompression (see next section).

Lazy Matching is a simple technique to improve compression ratios at the expense of CPU while requiring very little code. One can expect 50-75% more CPU usage for modest compression gains (around 0.5 - 2.0%). Because of this trade-off, it is disabled by default; however, in applications where we want to compress once on a powerful machine (like a desktop/server) and decompress on an embedded device, it may be worth it to spend a bit more compute. Lazy matched compressed data is the exact same format; it appears no different to the tamp decoder.

Ablation Study

The following table shows the effect of the extended and lazy_matching compression parameters across all benchmark datasets (window=10, literal=8).

dataset raw Baseline +lazy +extended +lazy +extended
enwik8 100,000,000 51,635,633 51,252,694 (−0.7%) 51,016,917 (−1.2%) 50,625,930 (−2.0%)
RPI_PICO (.uf2) 667,648 331,310 329,893 (−0.4%) 289,454 (−12.6%) 290,577 (−12.3%)
silesia/dickens 10,192,446 5,546,761 5,511,681 (−0.6%) 5,538,353 (−0.2%) 5,502,834 (−0.8%)
silesia/mozilla 51,220,480 25,121,385 24,937,036 (−0.7%) 24,413,362 (−2.8%) 24,229,925 (−3.5%)
silesia/mr 9,970,564 5,027,032 4,888,930 (−2.7%) 4,520,091 (−10.1%) 4,391,864 (−12.6%)
silesia/nci 33,553,445 8,643,610 8,645,399 (+0.0%) 6,824,403 (−21.0%) 6,772,307 (−21.6%)
silesia/ooffice 6,152,192 3,814,938 3,798,393 (−0.4%) 3,773,003 (−1.1%) 3,755,046 (−1.6%)
silesia/osdb 10,085,684 8,520,835 8,518,502 (−0.0%) 8,466,875 (−0.6%) 8,464,328 (−0.7%)
silesia/reymont 6,627,202 2,847,981 2,820,948 (−0.9%) 2,818,554 (−1.0%) 2,788,774 (−2.1%)
silesia/samba 21,606,400 9,102,594 9,061,143 (−0.5%) 8,383,534 (−7.9%) 8,346,076 (−8.3%)
silesia/sao 7,251,944 6,137,755 6,101,747 (−0.6%) 6,136,077 (−0.0%) 6,100,061 (−0.6%)
silesia/webster 41,458,703 18,694,172 18,567,618 (−0.7%) 18,146,641 (−2.9%) 18,010,981 (−3.7%)
silesia/x-ray 8,474,240 7,510,606 7,406,001 (−1.4%) 7,509,449 (−0.0%) 7,404,794 (−1.4%)
silesia/xml 5,345,280 1,681,687 1,672,827 (−0.5%) 1,472,562 (−12.4%) 1,455,641 (−13.4%)

The extended parameter enables additional Huffman codes for longer pattern matches, which significantly improves compression on datasets with many long repeating patterns (e.g., nci, samba, xml). Extended support was added in v2.0.0.

Memory Usage

The following table shows approximately how much memory each algorithm uses during compression and decompression.

Compression Decompression
Tamp (1 << windowBits) (1 << windowBits)
ZLib (1 << (windowBits + 2)) + 7KB (1 << windowBits) + 7KB
Heatshrink (1 << (windowBits + 1)) (1 << (windowBits + 1))
Deflate (micropython) (1 << windowBits) (1 << windowBits)

All libraries have a few dozen bytes of overhead in addition to the primary window buffer, but are implementation-specific and ignored for clarity here. Tamp uses significantly less memory than ZLib, and half the memory of Heatshrink.

Runtime

As a rough benchmark, here is the performance (in seconds) of these different compression algorithms on the 100MB enwik8 dataset. These tests were performed on an M3 Macbook Air.

Compression (s) Decompression (s)
Tamp (Pure Python Reference) 136.2 105.0
Tamp (C bindings) 5.45 0.544
ZLib 3.65 0.578
Heatshrink (with index) 4.42 0.67
Heatshrink (without index) 27.40 0.67

Heatshrink v0.4.1 was used in these benchmarks. When heathshrink uses an index, an additional (1 << (windowBits + 1)) bytes of memory are used, resulting in 4x more memory-usage than Tamp. Tamp could use a similar indexing to increase compression speed, but has chosen not to to focus on the primary goal of a low-memory compressor.

To give an idea of Tamp's speed on an embedded device, the following table shows compression/decompression in bytes/second of the first 100KB of enwik8 on a pi pico (rp2040) at the default 125MHz clock rate. The C benchmark does not use a filesystem nor dynamic memory allocation, so it represents the maximum speed Tamp can achieve. In all tests, a 1KB window (10 bit) was used.

Compression (bytes/s) Decompression (bytes/s)
Tamp (Micropython Native Module) 31,328 990,099
Tamp (C) 36,127 1,400,600
Deflate (micropython builtin) 6,885 294,985

Tamp resulted in a 50841 byte archive, while Micropython's builtin deflate resulted in a larger, 59442 byte archive.

Binary Size

To give an idea on the resulting binary sizes, Tamp and other libraries were compiled for the Pi Pico (armv6m). All libraries were compiled with -O3. Numbers reported in bytes. Tamp sizes were measured using arm-none-eabi-gcc 15.2.1 and MicroPython v1.27, and can be regenerated with make binary-size.

Compressor Decompressor Compressor + Decompressor
Tamp (MicroPython Native) 4700 4347 8024
Tamp (C, no extended, no stream) 1754 1656 3172
Tamp (C, no extended) 2036 1894 3692
Tamp (C, extended, no stream) 2838 2452 5052
Tamp (C, extended) 3120 2690 5572
Heatshrink (C) 2956 3876 6832
uzlib (C) 2355 3963 6318

Tamp C "extended" includes tamp_compressor_compress_and_flush. Tamp C includes a high-level stream API by default. Even with no stream, Tamp includes buffer-looping functions (like tamp_compressor_compress) that Heatshrink lacks (Heatshrink only provides poll/sink primitives).

Acknowledgement

  • Thanks @BitsForPeople for the esp32-optimized compressor implementation.

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

tamp-2.2.4.tar.gz (80.1 kB view details)

Uploaded Source

Built Distributions

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

tamp-2.2.4-cp314-cp314-win_arm64.whl (219.0 kB view details)

Uploaded CPython 3.14Windows ARM64

tamp-2.2.4-cp314-cp314-win_amd64.whl (235.0 kB view details)

Uploaded CPython 3.14Windows x86-64

tamp-2.2.4-cp314-cp314-win32.whl (216.6 kB view details)

Uploaded CPython 3.14Windows x86

tamp-2.2.4-cp314-cp314-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

tamp-2.2.4-cp314-cp314-musllinux_1_2_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

tamp-2.2.4-cp314-cp314-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

tamp-2.2.4-cp314-cp314-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

tamp-2.2.4-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.1 MB view details)

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

tamp-2.2.4-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

tamp-2.2.4-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

tamp-2.2.4-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (1.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ i686manylinux: glibc 2.5+ i686

tamp-2.2.4-cp314-cp314-macosx_11_0_arm64.whl (253.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

tamp-2.2.4-cp314-cp314-macosx_10_15_x86_64.whl (255.3 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

tamp-2.2.4-cp313-cp313-win_arm64.whl (214.0 kB view details)

Uploaded CPython 3.13Windows ARM64

tamp-2.2.4-cp313-cp313-win_amd64.whl (230.6 kB view details)

Uploaded CPython 3.13Windows x86-64

tamp-2.2.4-cp313-cp313-win32.whl (212.2 kB view details)

Uploaded CPython 3.13Windows x86

tamp-2.2.4-cp313-cp313-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

tamp-2.2.4-cp313-cp313-musllinux_1_2_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

tamp-2.2.4-cp313-cp313-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

tamp-2.2.4-cp313-cp313-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

tamp-2.2.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.1 MB view details)

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

tamp-2.2.4-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

tamp-2.2.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

tamp-2.2.4-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ i686manylinux: glibc 2.5+ i686

tamp-2.2.4-cp313-cp313-macosx_11_0_arm64.whl (252.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

tamp-2.2.4-cp313-cp313-macosx_10_13_x86_64.whl (254.8 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

tamp-2.2.4-cp312-cp312-win_arm64.whl (215.3 kB view details)

Uploaded CPython 3.12Windows ARM64

tamp-2.2.4-cp312-cp312-win_amd64.whl (232.8 kB view details)

Uploaded CPython 3.12Windows x86-64

tamp-2.2.4-cp312-cp312-win32.whl (213.4 kB view details)

Uploaded CPython 3.12Windows x86

tamp-2.2.4-cp312-cp312-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

tamp-2.2.4-cp312-cp312-musllinux_1_2_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

tamp-2.2.4-cp312-cp312-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

tamp-2.2.4-cp312-cp312-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

tamp-2.2.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.2 MB view details)

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

tamp-2.2.4-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

tamp-2.2.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

tamp-2.2.4-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ i686manylinux: glibc 2.5+ i686

tamp-2.2.4-cp312-cp312-macosx_11_0_arm64.whl (253.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

tamp-2.2.4-cp312-cp312-macosx_10_13_x86_64.whl (256.5 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

tamp-2.2.4-cp311-cp311-win_arm64.whl (215.4 kB view details)

Uploaded CPython 3.11Windows ARM64

tamp-2.2.4-cp311-cp311-win_amd64.whl (232.6 kB view details)

Uploaded CPython 3.11Windows x86-64

tamp-2.2.4-cp311-cp311-win32.whl (212.2 kB view details)

Uploaded CPython 3.11Windows x86

tamp-2.2.4-cp311-cp311-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

tamp-2.2.4-cp311-cp311-musllinux_1_2_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

tamp-2.2.4-cp311-cp311-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

tamp-2.2.4-cp311-cp311-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

tamp-2.2.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.1 MB view details)

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

tamp-2.2.4-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

tamp-2.2.4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

tamp-2.2.4-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ i686manylinux: glibc 2.5+ i686

tamp-2.2.4-cp311-cp311-macosx_11_0_arm64.whl (253.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

tamp-2.2.4-cp311-cp311-macosx_10_9_x86_64.whl (253.7 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

tamp-2.2.4-cp310-cp310-win_arm64.whl (215.7 kB view details)

Uploaded CPython 3.10Windows ARM64

tamp-2.2.4-cp310-cp310-win_amd64.whl (234.4 kB view details)

Uploaded CPython 3.10Windows x86-64

tamp-2.2.4-cp310-cp310-win32.whl (213.0 kB view details)

Uploaded CPython 3.10Windows x86

tamp-2.2.4-cp310-cp310-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

tamp-2.2.4-cp310-cp310-musllinux_1_2_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

tamp-2.2.4-cp310-cp310-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

tamp-2.2.4-cp310-cp310-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

tamp-2.2.4-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.1 MB view details)

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

tamp-2.2.4-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

tamp-2.2.4-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

tamp-2.2.4-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (1.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ i686manylinux: glibc 2.5+ i686

tamp-2.2.4-cp310-cp310-macosx_11_0_arm64.whl (254.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

tamp-2.2.4-cp310-cp310-macosx_10_9_x86_64.whl (254.3 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

tamp-2.2.4-cp39-cp39-win_arm64.whl (216.7 kB view details)

Uploaded CPython 3.9Windows ARM64

tamp-2.2.4-cp39-cp39-win_amd64.whl (235.7 kB view details)

Uploaded CPython 3.9Windows x86-64

tamp-2.2.4-cp39-cp39-win32.whl (214.0 kB view details)

Uploaded CPython 3.9Windows x86

tamp-2.2.4-cp39-cp39-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

tamp-2.2.4-cp39-cp39-musllinux_1_2_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

tamp-2.2.4-cp39-cp39-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

tamp-2.2.4-cp39-cp39-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

tamp-2.2.4-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.1 MB view details)

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

tamp-2.2.4-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

tamp-2.2.4-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

tamp-2.2.4-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (1.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ i686manylinux: glibc 2.5+ i686

tamp-2.2.4-cp39-cp39-macosx_11_0_arm64.whl (255.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

tamp-2.2.4-cp39-cp39-macosx_10_9_x86_64.whl (255.7 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file tamp-2.2.4.tar.gz.

File metadata

  • Download URL: tamp-2.2.4.tar.gz
  • Upload date:
  • Size: 80.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tamp-2.2.4.tar.gz
Algorithm Hash digest
SHA256 c6b1f14ecdcaa7426bc5e8f79749f308684bba29b141ebfa2453038c335d613d
MD5 12e1bb90d3db15a9ae3302b21c4bd9e3
BLAKE2b-256 ebe7622f75ffb884f8ff1a51d89fc156224c8da347cecaded2f4eea320072d68

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.2.4.tar.gz:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.2.4-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: tamp-2.2.4-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 219.0 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tamp-2.2.4-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 bda6a99f93caaf12378b5a6a2bb27a7238d604ac4556e3cfbb4207ab19030d19
MD5 442c21ee9f01aa402669cc72c8aa676b
BLAKE2b-256 ebe7bf7b4241d32d312676dbd25e02bcfbb7ab37370c11d53b97eead62542b33

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.2.4-cp314-cp314-win_arm64.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.2.4-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: tamp-2.2.4-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 235.0 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tamp-2.2.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 f206a70798c89d1f2036ddb6ee5d6e91d1384a189ac2a311e4f79db55a216bc2
MD5 e824c199a5f651ed7fdb86c61409c4cf
BLAKE2b-256 3e433be3c1b49ab7821896693e0ffa081460d9bb5f05531029e0fa62de3f7ba6

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.2.4-cp314-cp314-win_amd64.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.2.4-cp314-cp314-win32.whl.

File metadata

  • Download URL: tamp-2.2.4-cp314-cp314-win32.whl
  • Upload date:
  • Size: 216.6 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tamp-2.2.4-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 806ab52f4945f11d715f9e30885ce2afcb2b19c35fc152136a80a3503afa8b9d
MD5 4333e142679c9782a555544be1d1cef5
BLAKE2b-256 b5a72a24edeb8ef0a2b8914cbe8ef32e6e401cd81b82d4e006b88cede96fee3e

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.2.4-cp314-cp314-win32.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.2.4-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for tamp-2.2.4-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a37f4422a5796c34ca8039e95a5fe8d47704e84d7be24ec3a297b46492af47af
MD5 adbecda585008fbcb072bd36e51a649e
BLAKE2b-256 34628dbb49b0409ae2e7a1e6b3e899575665f4764807206926064602e53c264a

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.2.4-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.2.4-cp314-cp314-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for tamp-2.2.4-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 2897f24bb310697ff43da4e345e369855cafb0bd9798f73193698204b43496e7
MD5 0648cdcf7b8532ac1715fc8b5544562a
BLAKE2b-256 1bb8af155bcb7cdde038f71c904b38bb6f186d1c4923b4d5c4dc4621a1896ad0

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.2.4-cp314-cp314-musllinux_1_2_ppc64le.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.2.4-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

  • Download URL: tamp-2.2.4-cp314-cp314-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.14, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tamp-2.2.4-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2e3d5707e44f796a21b4044025e13dfcfac2bdc7d356799fc8a80d455d483719
MD5 862a883b82993eb058652ddffaff97f4
BLAKE2b-256 5e5615d1251f8e2e6abd3629b810382ed40e1b40f1b92039f9b1dc2651df7075

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.2.4-cp314-cp314-musllinux_1_2_i686.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.2.4-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for tamp-2.2.4-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 640cf18956646c024414ec26e0c84554bec2fb6ef3e896a9acb9521e58cb6943
MD5 4e10cb37915ad5b9257a39b339cd842a
BLAKE2b-256 7476ffb2ee02abd16d3ae4f7e5939b1bb771722125a4dda8e1590930bd10f46f

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.2.4-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.2.4-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tamp-2.2.4-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7959a67bc44db585679c75485f29ed5b5b9ad0ecb72aa6beb134ba23fcd5735b
MD5 530e192c8d9b09c656de1ec7b8e7dd28
BLAKE2b-256 9d30c1823b5a6f574d4de6b122450ed2b365fe0e34f439c364429877317879e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.2.4-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.2.4-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for tamp-2.2.4-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 d61f609993fcc85523fd306ee05aa2b5083851394ae6c648c5023b570f195b36
MD5 d30bd7e95345eed4ba78a0c0c2e803ba
BLAKE2b-256 ac39bf260b7089566bf3b46ff4c57d3868c71d511274b87a92b65e96fb3c768a

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.2.4-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.2.4-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for tamp-2.2.4-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e0861a3d1e5920d820ca7a18d7a0a1f973c79483369c6e5cc275e39c93a11c89
MD5 e68a0e9b3d7be702457caf9fb940944f
BLAKE2b-256 170aa22800fe064f03af34defa241b2556b42be263de938f37cd1295bdd6c964

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.2.4-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.2.4-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for tamp-2.2.4-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 78c7eb040b25af8015d9359d0e86e13683ac3e8f63ea376e2ac40160b9e206e1
MD5 e71d2ca45edc6f5fd1bad1ad045cb043
BLAKE2b-256 4268d0fa63e83fdc73363828a2baad2711aedfa8a95f07c7642f956f0f945892

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.2.4-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.2.4-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

  • Download URL: tamp-2.2.4-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 253.8 kB
  • Tags: CPython 3.14, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tamp-2.2.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bc1be99aafe337c8d1403cf3e0bdb8103fca8a90e2f1ffc9c2263337a1bbfbcc
MD5 1d7fcef88ccd54b1588f135c30f5841e
BLAKE2b-256 59cd94a4d938e5a589fd98886283f4df7490a7f0c15076ae399e38f5fd500384

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.2.4-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.2.4-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for tamp-2.2.4-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 dadcb8a1401c68a5b0b0f9a0deb87f4fe83b0890bdecb1e2829f50d46994c3af
MD5 bf76d349f77292e23bbbc63fb1850dad
BLAKE2b-256 abefc1d6ada4111e3b0886a88b17bff0c7c326195b6170a763593bf67820a0b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.2.4-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.2.4-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: tamp-2.2.4-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 214.0 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tamp-2.2.4-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 9b804a6028989b83a7bfe72dc5e9c344dd14c12c2822c689b4a0ad80a38f697e
MD5 1a59bc24b824f34e4881724022b827b6
BLAKE2b-256 0b4e8839ebe66b9edd3241a524ee5d206fd9a992bd1301b1d7fd160ee6df30f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.2.4-cp313-cp313-win_arm64.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.2.4-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: tamp-2.2.4-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 230.6 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tamp-2.2.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 04490a0d9398be09d651583e250cef6c2afc6cca055d0cd93686336846f0198d
MD5 2e2b9433baf069f4b4a58176af071a42
BLAKE2b-256 97f1687315a13fd4f87e26564026570144263e8c8154cf17378637fd1f8ef548

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.2.4-cp313-cp313-win_amd64.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.2.4-cp313-cp313-win32.whl.

File metadata

  • Download URL: tamp-2.2.4-cp313-cp313-win32.whl
  • Upload date:
  • Size: 212.2 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tamp-2.2.4-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 76e231184ebb3724e76eceb2ce8bcb782da32804fe68813b0b0e05f31f1a2a51
MD5 d059a7740adb8bfb851e2d81c40e2b02
BLAKE2b-256 e670d149f078c9641dc2dd25d571f5b121657fc4dd7a66f2f9bd42970f361e36

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.2.4-cp313-cp313-win32.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.2.4-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for tamp-2.2.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 39af6f057ace39bcee1d9676b269971f0fb13067368bc7a14261ce8305d77d71
MD5 51fce8519cbf86b734b5fd6b64e79638
BLAKE2b-256 7d2145315054240ec16d2970726036040c3af44b4e29baf03c5a0500f9b05046

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.2.4-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.2.4-cp313-cp313-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for tamp-2.2.4-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 5c0cb635c0528ed5f3438df27eab3462c44e9b1b1fd508170b4b319ddc6b64e6
MD5 a804c007f6997e4ee4fa3df45e1ef637
BLAKE2b-256 631a8e9e27b8c1be64baa9f5d60a2c9f052ab08add38dec510e8afd5cd44193d

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.2.4-cp313-cp313-musllinux_1_2_ppc64le.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.2.4-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

  • Download URL: tamp-2.2.4-cp313-cp313-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.13, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tamp-2.2.4-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 50a1da2a3036555eb514212f088ac83710735057635a6d62dbf8baa0d423c269
MD5 4cfa0fee80ccf916dbb33d4d1a91ba94
BLAKE2b-256 3161e04e60e72ee6e415e71eac8fec71cec548f8cb69848b97f151e55b56e0c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.2.4-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.2.4-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for tamp-2.2.4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6bb5a3ec15ab5abaa60626b3a3f0fffeb3d6204b0962c11c4b328b7ef3e3fbae
MD5 b79387bcbe122eb52f32d2b8a3b4d3bb
BLAKE2b-256 502a97ce987fe4fb38158d0230e10de74bfdc543640881282cffa14f08e11a1e

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.2.4-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.2.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tamp-2.2.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6a04d56486e167f0ebfd925abca683e6cfa6d096cb2fe47a6ac2a313eb66a153
MD5 bd30e93d954a72b329ebb192cadba05b
BLAKE2b-256 d7c40c1e8c18cc235d7a388f60899581d0a75ebcda4a6075706762b1e2c18d8b

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.2.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.2.4-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for tamp-2.2.4-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 0ad00c3702801550312c43daf6a433177f4500691b0492fe7fa0b09d72e4d5f1
MD5 caf1a1a5ddf05f50ed94ce0b378ee983
BLAKE2b-256 706e548d9224c6a1573c7293f3bb9ff786f341b5ec4706a9ddf564b3451b4ea6

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.2.4-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.2.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for tamp-2.2.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6aeec21b3fd6d75a59be28fb91df2545016d45e558842b4846d1fb43d784813f
MD5 067c21e7cad821d109b3fac8abc8abac
BLAKE2b-256 1dccf6ec783a0fcfe4099361cd243a99e846481ae59c9b2acb3f44123da64850

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.2.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.2.4-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for tamp-2.2.4-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 c46cd7d5c9ca14755439c27e75f7ccfcb6f94837a15bc117acc4b8a868d87727
MD5 c7c8260408dd2d33fbd36869269b5ec2
BLAKE2b-256 8c95c02cc30f9f013e9b916f094f7e3f1209348f0b3ed69061d6e420b7f1758c

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.2.4-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.2.4-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

  • Download URL: tamp-2.2.4-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 252.0 kB
  • Tags: CPython 3.13, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tamp-2.2.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 114889c32f13f71901cac368438c38dd99b1bb5d406660e14aea2eb8329d114b
MD5 25dd46444ba079adfdc3f112ac40a6d4
BLAKE2b-256 4be69217ce8d6990a10aa6539ff9d15fc6292dfe30cbf37708a1b659748bd7bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.2.4-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.2.4-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for tamp-2.2.4-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 90ff3b2f13440410f23bb3c498af6967f880f7ec74905efd26ba44c99c448472
MD5 6bd88ca09d1a235bd94d1ab98ae33e81
BLAKE2b-256 a05de44c9e8435aaa7f095e45819e7471620a3f94d08093013c84ef8bca6d0bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.2.4-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.2.4-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: tamp-2.2.4-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 215.3 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tamp-2.2.4-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 faedc072c63cd0e6c1a18ad92fbb47e5187b320755066e29d475014fc3131b0e
MD5 155931c143004d6e9b5d1767cf95ecea
BLAKE2b-256 50ffe023312dac09195451f0d4ff107e1ebc060337122aaf3aec3b68bf188974

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.2.4-cp312-cp312-win_arm64.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.2.4-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: tamp-2.2.4-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 232.8 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tamp-2.2.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d936a06e5212586360c9d4d6a3bd56d52ab16807c1beeb86d84c8b055cdcc820
MD5 43880ced8e8919af9fcfad906c326d29
BLAKE2b-256 472ffbc810607ea26268925f6781d578e429863085b0c790be6dcec306c8d836

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.2.4-cp312-cp312-win_amd64.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.2.4-cp312-cp312-win32.whl.

File metadata

  • Download URL: tamp-2.2.4-cp312-cp312-win32.whl
  • Upload date:
  • Size: 213.4 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tamp-2.2.4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 bb4fb35c77de00572075075d8a274603793648ac6f50b27e154b939f09aa2dd9
MD5 10819ed6756b7e587b7aaf0d83545545
BLAKE2b-256 4ef828c3867f1dc4563e756825538f118ef6ff1dfa5aa235882396445643a7ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.2.4-cp312-cp312-win32.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.2.4-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for tamp-2.2.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7c3d1008b19e2a6fab1f0cf85ab87a292fe54ab3aef6ed5a859ebf2f5d44e389
MD5 ca797d229a58d2ca5a3567837b57b2ac
BLAKE2b-256 077cb7580425f494f4319878a70df1e0217a594e86048c55d23bbfa3b63aefdd

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.2.4-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.2.4-cp312-cp312-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for tamp-2.2.4-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 d73038f62723b2a6c877336e50f252f5b1a6e814edf78539fcfd656f1f75bc41
MD5 0a15cd49884ba82a834dcff4c84504f0
BLAKE2b-256 355c8d6db7b40ca6af4baded6ad77aad9cb1805d3c18c78b5f6ba798545e6d2a

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.2.4-cp312-cp312-musllinux_1_2_ppc64le.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.2.4-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

  • Download URL: tamp-2.2.4-cp312-cp312-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tamp-2.2.4-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e57cd59310de6366005b9f6b5d8af7fc8af59eff604c751d4bfc0382bd1557d5
MD5 5f3820c07cc366b7742e56633ab08807
BLAKE2b-256 78932cc69d2caa8ed4b04d05784256d955e9442a3540a4cc2f5436c01fe46f53

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.2.4-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.2.4-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for tamp-2.2.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8011d378a133ab18b30ca131b72573a9db5deef50a5f14592c29932391123f24
MD5 7777d284d1216d316f133b8dc2bb39b9
BLAKE2b-256 e15d8092d85783117cf4d2b7e85cbba49ac1a6e6a59e481f8cd6ae91a335816e

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.2.4-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.2.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tamp-2.2.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7ca49c08400b653a3eab33341318f2aa54a71cf20e7cd5852196cf69ecdfa28f
MD5 a729a0c0292e0414c3fe3ebf1e753229
BLAKE2b-256 621b3d4d2d2a1c002ae3022be521aa495239d251cc67dc3bf528f68c9ec40525

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.2.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.2.4-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for tamp-2.2.4-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 b3b7218893af73bfa5911606e061d63462964b9041ec07007b789132bb15942e
MD5 41468a3bc4670eb7127afbf88ca8cb80
BLAKE2b-256 bf291de012551806b101abb7af307d6b5f90655f0db9126cd17cb0b4f28cf38c

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.2.4-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.2.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for tamp-2.2.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5e7337d9d20eddbb23eb1fcbab9263332f1f669d08d8c4e4fa9f1191a77b3400
MD5 0b28699b0349e1da25d6f45d6e5f931e
BLAKE2b-256 e3e77cdd1278bc480e61bee856da5eb72841844b9b9ae33d6848831998c9d931

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.2.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.2.4-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for tamp-2.2.4-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 7159bc897a3f901ffefd05630fd9513c4a0b17fe8b4d12d84f7383aee520f7b1
MD5 155c3622e35311d3a873a164f920c62c
BLAKE2b-256 60bafa9472353d015e777b6baf2c2b3a296acb49d7f687fb3636cb1375c00f31

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.2.4-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.2.4-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

  • Download URL: tamp-2.2.4-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 253.9 kB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tamp-2.2.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5bc12e505d628776886cd085f0674c53cf11780e5f6b70ee9c00eb78f91a790b
MD5 0ae729d0110873c19ab993c8a9c782a2
BLAKE2b-256 68077f81bd02e35cae893e61b4d2c5c9920d130a4514a06a9ff47c5c57283139

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.2.4-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.2.4-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for tamp-2.2.4-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a74d03f4bddc0fa6f92197498bb893c7cdb49c63c82dcdb0cb71f88c958e0a86
MD5 624a20a159f5d9f5f80c7016770fd45b
BLAKE2b-256 f454c53b7ed1419817e8e72b1301d4601ef8114bdab6859d0799f0b20df69b34

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.2.4-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.2.4-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: tamp-2.2.4-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 215.4 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tamp-2.2.4-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 092a5c944cd91393492d410d4cbc7866b60e8a47c78b7016c0232ce05e3aa967
MD5 846bd23a4e6432f9cc0089ba37125315
BLAKE2b-256 abd2e2eac8d86f7b56133e7f42a862e76555fd326695506436d06891d0aff6e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.2.4-cp311-cp311-win_arm64.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.2.4-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: tamp-2.2.4-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 232.6 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tamp-2.2.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 57082e5fe8a2a2f476b83530110c41086a8aa1edb92523a44caf1849869a67c3
MD5 c6e3c95c586b7824f280ee38040d113b
BLAKE2b-256 93c8fdfb7ae56019c373f518dfe704f24c64eb19dc6648e5159c8225a6efd708

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.2.4-cp311-cp311-win_amd64.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.2.4-cp311-cp311-win32.whl.

File metadata

  • Download URL: tamp-2.2.4-cp311-cp311-win32.whl
  • Upload date:
  • Size: 212.2 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tamp-2.2.4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 231484848ffbbb67a1084205bb3df6029f4a13532139474472d047c7b337c9df
MD5 b31a6d150134fbc41d5965f2ff1a51e2
BLAKE2b-256 4029f60b562edf41f62bd4bbe8dfe1b6ac64687cd18943b5d0f1a57aef1aa2c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.2.4-cp311-cp311-win32.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.2.4-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for tamp-2.2.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ef4dd8f77c705b8f9ba4da91213086501176ab161d9e77d071b1c9ce0542e9a7
MD5 482d625638ca4ebe73dc2add546ce208
BLAKE2b-256 b45e0030a1137003eb67becc8e94b27b9ea8249abadc58ab30f337f92be88e93

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.2.4-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.2.4-cp311-cp311-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for tamp-2.2.4-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 35d650c3da17a879537ed1d132471d60ff6923fb1e43d62427348fa11e23f799
MD5 52865d99a10eb89e1a451af9a6fcd857
BLAKE2b-256 432ff6020d6f195ece3b9cb6d0e9cf4babba4607874aee80bff60ca5e66500cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.2.4-cp311-cp311-musllinux_1_2_ppc64le.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.2.4-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

  • Download URL: tamp-2.2.4-cp311-cp311-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.11, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tamp-2.2.4-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 db1a4e84742d62b0c8ed75a020aa77e15115bb9956238756c07bf88f4bab451c
MD5 c8ef469cad763ad1724976bae775e321
BLAKE2b-256 c4d171bb1145b3a263af6e934c6b6d922974ab788b55f2911037f08f7277f2af

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.2.4-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.2.4-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for tamp-2.2.4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2cce6cffdf942cc57aedacd9e1574d9c48c407c01345cba0c2b000b0b0acb426
MD5 ca5539136255fbc2880c2eb4415bbb16
BLAKE2b-256 3c6c709cebb185267e5bbbca31375ddd9f746cc8562b5d49a510502b2545c36b

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.2.4-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.2.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tamp-2.2.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 70d4bd2f2a87c18520253970ddcf58edb9380105fd347e638f44804796f8198f
MD5 80bae19b6de8f4d427dca237a647c0f0
BLAKE2b-256 50f04608c1d45c25d81a6d6e4a5ba3c341da83b9460bd32ab233af50d971bbd3

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.2.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.2.4-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for tamp-2.2.4-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 f952561a85f9461b25ffcdab2f51f29e6eca1151fcbf7654fc36e14188c2abca
MD5 d1fdd61e0ab3c49163517e070ab0417b
BLAKE2b-256 c2d3e142011a75e839a85f97134d233f505bfe62c1d93f41a928c24b06f54f12

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.2.4-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.2.4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for tamp-2.2.4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 13a1e7e3fd0f292ea3b323d85077c861c312d3025918fbab47888f13357d0d5e
MD5 4cf55cd18f25e62b9dfbcc9b76850acf
BLAKE2b-256 9107d5993d416056b66f50ab360410c5a0f645396328042da5726c12a43aab27

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.2.4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.2.4-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for tamp-2.2.4-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 2a80857e7274f76be1fbe59e74bb54cdb3b6390c65c6d8ff9826bf4565253a0d
MD5 6964bb6ee9886f620983af88b7afbfad
BLAKE2b-256 5eec4ddc5dc23d97ccf0332c0a5eeb925d01dbb6aa9f7140c83fbfa5b84c8bc6

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.2.4-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.2.4-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

  • Download URL: tamp-2.2.4-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 253.4 kB
  • Tags: CPython 3.11, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tamp-2.2.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b1aa1146dbede4ad718221e99698473c1e6bd99126a9877a41d2ba4d26d3e1b4
MD5 a1cf64fe86ac3665dfa196a90d976942
BLAKE2b-256 a2026d1094bc959246233c28f7a0003baf6e48ba0901239274adc2ab760ef154

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.2.4-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.2.4-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for tamp-2.2.4-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 55cb03f52d771237d8ae2f601d22970cff2c68405179573a800ecb451274e764
MD5 f02e4393bb7fcf65ef2d10b04a5f907a
BLAKE2b-256 6726f770e69ef5ed5ea69ee92bd5e2b31451a4e1d72a196d0602ffbb1b806020

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.2.4-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.2.4-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: tamp-2.2.4-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 215.7 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tamp-2.2.4-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 d9ddc2c3bceb7aad3fce1d9c2589c74455e7218a76341528d7dc3e832cf2f24a
MD5 e3fcd1978aa078409cb28d991e79ee41
BLAKE2b-256 0397adc4b96a54710d434ff9cdc866673d94bc8121039d579bd8555afc739f19

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.2.4-cp310-cp310-win_arm64.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.2.4-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: tamp-2.2.4-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 234.4 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tamp-2.2.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 725cb45487cb5c000b348af107329e77f8cafd89cf2e7f97acbc76232e31d1e7
MD5 abdf3b3142c728dfde44623d3031f622
BLAKE2b-256 dd8d1f84a184ed067741f34f53068027d308a95d7b6b74d2af7c790344226527

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.2.4-cp310-cp310-win_amd64.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.2.4-cp310-cp310-win32.whl.

File metadata

  • Download URL: tamp-2.2.4-cp310-cp310-win32.whl
  • Upload date:
  • Size: 213.0 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tamp-2.2.4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 0d5a0f4d6273dd843878c8a6f551926eafadc4080f41fe0f686190cb97e095f5
MD5 aa761a35c2009a0bc9417b2b9aff8374
BLAKE2b-256 544001207abb9d37641cb16ac858d173122c9315e085b107b3f5b0fd3a79545e

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.2.4-cp310-cp310-win32.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.2.4-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for tamp-2.2.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 491ab5ef7fbe7f7c0e47496788d2f890cdf3f51bee57da5b1056e995560f2ef7
MD5 3e2b51333fc21b7ed75cfed4e247f79f
BLAKE2b-256 b6ead56208b0b54580c9a3a66805e4191ceec6e57ec9e539a6f535e9812d9ec7

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.2.4-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.2.4-cp310-cp310-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for tamp-2.2.4-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 ad877a56469298dde408dcef782d3b691bd26e5512616439b6cd95897564af83
MD5 1f0f56da9d84d0a51760c66d8ee80a1c
BLAKE2b-256 018ec7b6e0f95b1f69451177b1388c110e968ce735195b72644b1ecba5dccfdc

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.2.4-cp310-cp310-musllinux_1_2_ppc64le.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.2.4-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

  • Download URL: tamp-2.2.4-cp310-cp310-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.10, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tamp-2.2.4-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 61efecf0ded6ad6ba0731a8d84886e3a412e21ed4fa60ba7e4ed65d143f578eb
MD5 67c5b4540d0b2a56968062ab8e1666cc
BLAKE2b-256 45f5dd3c6d6ece1825d2af6d2a1840e80cd8e491f8b3225a43353f6f3b1f2242

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.2.4-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.2.4-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for tamp-2.2.4-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 62a68ed82486f85d98ca9d878d7c67d4955e1f52252857801ca92bd0206d94ba
MD5 11d137cb51747705b1c62908e7364125
BLAKE2b-256 33da89023cd6e73ffa7344f8fa273cf2009ab8d4342b78650da60abcc3fe74b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.2.4-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.2.4-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tamp-2.2.4-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 aed66082b790d278a92664ea10ed67595f7b71a0056676b791f69ae408eef473
MD5 5652c5149b61e63c375f200e6d1833e3
BLAKE2b-256 4954690023120fb8432917b20a51b3213c1f4fa75f3d61b6151b894f22484c40

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.2.4-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.2.4-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for tamp-2.2.4-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 e31c8e251986aea2bd65e0d3974bdce61d6ff893a64da79774df218b4838ad3b
MD5 42ba017b3db1dc23b9e71724dd2da9d2
BLAKE2b-256 d1771b7d39f203e1115c08faf87cac30090de37682e0c6509d936362e43e0fdb

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.2.4-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.2.4-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for tamp-2.2.4-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2e1a8b08ebf1efb7097b59b3a9e59b83cf58485cb484cc41fb3bc1e171004743
MD5 f06efeb416f61c528762150a5d0354df
BLAKE2b-256 4599ad1dd6515699413318dc366cf788d10b9fc727c31522a65cc8c863aeda8a

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.2.4-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.2.4-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for tamp-2.2.4-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 2879a4d5f4880ea2fc450309eb6a3a5ad0af3e8add5f7963dc188c95dddf4c2f
MD5 d2e0b523692b02ca98a58cbc0fe12527
BLAKE2b-256 a9e015b3f5899c7108b74112e1a33fe55dc775a0533add5372e88c13758476ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.2.4-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.2.4-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

  • Download URL: tamp-2.2.4-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 254.1 kB
  • Tags: CPython 3.10, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tamp-2.2.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 71e55c3550e1deaaaeeb51f8b8a6fbb82f9a6a8146c9aa5c74b5b07b36d423d1
MD5 a70521d422466163a0b85ce95dbe58b2
BLAKE2b-256 0563240b10bb9591682ffd09a13621121e059efe8deed82192b9387fc6405b16

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.2.4-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.2.4-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for tamp-2.2.4-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8c1f30843c4a87c81096b6e4a74a3024922175064610dd1e594a8f14d640cfc2
MD5 88980ca40517ccfe962641f593354951
BLAKE2b-256 0af72bc83753837031044c30a05b42accdcd45c946b59d25c2def77754018186

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.2.4-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.2.4-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: tamp-2.2.4-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 216.7 kB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tamp-2.2.4-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 be5100a51e60ffc628a6fd233cbc01fadd9068958268e775c098e198e6611a79
MD5 70025371d13282f9a7bb12e2b4b82fb0
BLAKE2b-256 c2340e1fb6a02ce2a18dc31b2ce28461d1939b08f1193fb8017b767c1a3e0654

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.2.4-cp39-cp39-win_arm64.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.2.4-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: tamp-2.2.4-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 235.7 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tamp-2.2.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 08d425b2a4fd63b2d10d75d45a8bc7e56be54444190d83e68e4701600fb745a6
MD5 2addbd1fa5cdd4a564a8289a41e75326
BLAKE2b-256 31fa08b1be2b9cd76120c0c84066d87770c1251cc6777e6cc4a163cd3c21b6d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.2.4-cp39-cp39-win_amd64.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.2.4-cp39-cp39-win32.whl.

File metadata

  • Download URL: tamp-2.2.4-cp39-cp39-win32.whl
  • Upload date:
  • Size: 214.0 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tamp-2.2.4-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 b8c375aa037589c4c1ad6ba73733e98ef505df34a7b9dc7059c903dbcfd503a5
MD5 dc795b713251790f79a50d962a99f182
BLAKE2b-256 76128778d279c2c22350b792fef02023ffc138d5023d8589e7ed7a9fd8a1ced1

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.2.4-cp39-cp39-win32.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.2.4-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: tamp-2.2.4-cp39-cp39-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tamp-2.2.4-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 06277f1b39cb612cdf9ae08eca7293bf45a83a3f34dc7c0d07f6bbfbf13141b8
MD5 49be9d37db2ed7b6fc0477cfed8c5bf0
BLAKE2b-256 ba5e05ccb9bb0e90b9c44c6fac2185a3eebb2c9f07be82423c492b9bebcebfd4

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.2.4-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.2.4-cp39-cp39-musllinux_1_2_ppc64le.whl.

File metadata

  • Download URL: tamp-2.2.4-cp39-cp39-musllinux_1_2_ppc64le.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.9, musllinux: musl 1.2+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tamp-2.2.4-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 96838f6672d0e2f90d481586b45f689622a980413cae40cddf95cc25fef39e46
MD5 0939b9939f2ad9af0acdc7b87fda4834
BLAKE2b-256 620b4914aa338643c98306e0e1cf9b5fe6d2cc359baa38eb8c6550e8fe320a3d

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.2.4-cp39-cp39-musllinux_1_2_ppc64le.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.2.4-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

  • Download URL: tamp-2.2.4-cp39-cp39-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.9, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tamp-2.2.4-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 59e90ab7c88880c4332deb8ef8bbc8eabb29fe81c7f65a48f4a654d872fae22c
MD5 dddc4e490b5e83e5940761859c282b1a
BLAKE2b-256 dd71aeb5442e967783b560c8698707e1ea6385fdda5370003f3605bfbdfd2d27

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.2.4-cp39-cp39-musllinux_1_2_i686.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.2.4-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for tamp-2.2.4-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 edafcac05fcefcf8e9122033bfe9990d41a928a7a4d6841be05cdbbc2d561a7b
MD5 aad096975465eb30bcdfbbd20fe1fd64
BLAKE2b-256 2fea741b1eff3024e9a88532f21cb515acf3204ab027a82927cab482e1b1035f

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.2.4-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.2.4-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tamp-2.2.4-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3f212996188703c6e1ef4dbbf7b9a0001b9accf1e342911821e28815919204db
MD5 3edc1ab63ade057e5a40115e1ab04890
BLAKE2b-256 eb4a9691f3e81e514b3f9e78daea03d4db0695d840464051d7b722fc8038c534

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.2.4-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.2.4-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for tamp-2.2.4-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 b87cb2be45e1f8a374055cf8e70f1c101f74f4fa25054cb776c7a51a4de99e24
MD5 54195c222b1685deb3df548cfa36ba41
BLAKE2b-256 75955ad5d142dc2dd6a0f4a3210c4328c3316e5120c17473228dc3dc56093ead

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.2.4-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.2.4-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for tamp-2.2.4-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 660a2e9ae2916e6d33628f85623c9e14a2ef53b629da53341bd0ce2806919b1d
MD5 eb63a4d338e4155ea57ba386cd58e2ad
BLAKE2b-256 8bba1073c57f9755dbd18801d0ed414ebdcd3eaee12b603bedc73db37526b091

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.2.4-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.2.4-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for tamp-2.2.4-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 3d8ff8810ee333a5721009116fadb3f6a6a05922d803bf58a0476fc02080714e
MD5 858773cedf80ab443b4391f8ba3bcb26
BLAKE2b-256 717683dc82378b7d7e5972b07cddba2d9f1eba1c9ce18e178ac68a2966f54dfe

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.2.4-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.2.4-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

  • Download URL: tamp-2.2.4-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 255.8 kB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tamp-2.2.4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4caacf6b56cbf864e2e42799743e1fbc94214dff8d5f548be91e6df47a956d5d
MD5 b83cf44f57af82fd8f41971595c31a45
BLAKE2b-256 3190a89a1308b00f261ca4731feafd1c63ee9f92388cbec897c39e3389699c8f

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.2.4-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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

File details

Details for the file tamp-2.2.4-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: tamp-2.2.4-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 255.7 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tamp-2.2.4-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5bd08a0c2ec7d8debf9ecc7c42814d9ba4303801dad5613a93ddd3141ebce0b9
MD5 7e14fc0cbbd5cd86f4a4a5f6d89aa878
BLAKE2b-256 19e522bd7c29c0232f8c083fbc74a272a602a7e93b1c65e7f0777e155f6e56aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for tamp-2.2.4-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yaml on BrianPugh/tamp

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