Skip to main content

Python bindings to Intel Instrumentation and Tracing Technology (ITT) API.

Project description

PyPI PyPI - Python Version CI codecov

pyitt

pyitt is a Python binding to Intel Instrumentation and Tracing Technology (ITT) API. It provides a convenient way to mark up the Python code for further performance analysis using performance analyzers from Intel like Intel VTune or others.

pyitt supports following ITT APIs:

  • Collection Control API
  • Counter API
  • Domain API
  • Event API
  • Frame API
  • Id API
  • Processor Trace Control API
  • String Handle API
  • Task API
  • Thread Naming API

Usage

The main goal of the project is to provide the ability to instrument a Python code using ITT API in the Pythonic way. pyitt provides wrappers that simplify markup of Python code.

import pyitt

@pyitt.task
def workload():
  pass

workload()

pyitt.task can be used as a decorator. In this case, the name of a callable object (workload function in this example) will be used as a name of the task and the task will be attributed to a default domain named 'pyitt'. If you want to change the default name and/or other parameters for the task (e.g. task domain), you can pass them as arguments to pyitt.task:

import pyitt

@pyitt.task('My Task', domain='My Task Domain')
def workload():
  pass

workload()

Also, pyitt.task returns the object that can be used as a context manager:

import pyitt

with pyitt.task():
    # some code here...
    pass

If the task name is not specified, the pyitt.task uses call site information (filename and line number) to give the name to the task. A custom name for the task and other task parameters can be specified via arguments for pyitt.task in the same way as for the decorator form.

Installation

pyitt package is available on PyPi and can be installed in the usual way for the supported configurations:

python -m pip install pyitt

Build

The native part of pyitt module is written using C++20 standard, therefore you need a compiler that supports this standard, for example GCC-10 for Linux and Visual Studio 2022 for Windows.

Ubuntu 22.04

  1. Install the compiler and Python utilities to build module:

    sudo apt install gcc g++ python3-pip
    
  2. Clone the repository:

    git clone --recurse-submodules https://github.com/esuldin/pyitt.git
    
  3. Build and install pyitt:

    cd pyitt
    python3 -m pip install .
    

Windows 10/11

  1. Install Python 3.8+ together with pip utility.

  2. Install Visual Studio 2022. Make sure that "Desktop development with C++" workload is selected.

  3. Clone the repository

    git clone --recurse-submodules https://github.com/esuldin/pyitt.git
    
  4. Build and install pyitt

    cd pyitt
    python -m pip install .
    

Compatibility with other Python binding to ITT API

pyitt provides compatibility layers that allow you to use pyitt as a "backend" for other Python bindings to the ITT API.

itt-python

pyitt.compatibility_layers.itt_python fully implements the itt-python public API. It allows you to switch to pyitt without anything else by only replacing the imports. For example, the following import for itt-python:

import itt

should be replaced with:

import pyitt.compatibility_layers.itt_python as itt

For more details, please see itt_python_compatibility_sample.py.

ittapi

pyitt.compatibility_layers.ittapi implements most of ittapi Python binding public API. Technically, the Python binding to ITT API that is included in the ITT API repository is based on the pyitt v1.1.0 code base. But, the implementations have been diverging since then. However, in most cases, it should be possible to use newer versions of pyitt instead of ittapi just by replacing the imports. For example, the import for ittapi:

import ittapi

should be replaced with:

import pyitt.compatibility_layers.ittapi as ittapi

Known Issues and Limitations

  • If pyitt is used in a function which is specified as a target for calls from multiprocessing module and an application is profiled on Linux with Intel VTune Profiler, the following error may occur:

    <...>/data.0/userapicollector-*.trace' (Data file is corrupted)
    

    This issue is caused by libittnotify_collector.so library which is a part of Intel VTune Profiler. Unfortunately, the issue is not resolvable within pyitt itself. However, a potential workaround is to use 'spawn' method for multiprocessing module in the profiled application:

    import multiprocessing
    ...
    if __name__ == '__main__':
        multiprocessing.set_start_method('spawn')
    

    Please see #1 for more technical information.

References

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

pyitt-1.7.4.tar.gz (106.7 kB view details)

Uploaded Source

Built Distributions

pyitt-1.7.4-pp311-pypy311_pp73-win_amd64.whl (52.8 kB view details)

Uploaded PyPyWindows x86-64

pyitt-1.7.4-pp311-pypy311_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (66.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

pyitt-1.7.4-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (65.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

pyitt-1.7.4-pp310-pypy310_pp73-win_amd64.whl (52.8 kB view details)

Uploaded PyPyWindows x86-64

pyitt-1.7.4-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (66.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

pyitt-1.7.4-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (65.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

pyitt-1.7.4-pp39-pypy39_pp73-win_amd64.whl (52.9 kB view details)

Uploaded PyPyWindows x86-64

pyitt-1.7.4-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (66.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

pyitt-1.7.4-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (65.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

pyitt-1.7.4-cp313-cp313-win_amd64.whl (52.7 kB view details)

Uploaded CPython 3.13Windows x86-64

pyitt-1.7.4-cp313-cp313-win32.whl (47.6 kB view details)

Uploaded CPython 3.13Windows x86

pyitt-1.7.4-cp313-cp313-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pyitt-1.7.4-cp313-cp313-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

pyitt-1.7.4-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (250.8 kB view details)

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

pyitt-1.7.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (235.2 kB view details)

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

pyitt-1.7.4-cp312-cp312-win_amd64.whl (52.7 kB view details)

Uploaded CPython 3.12Windows x86-64

pyitt-1.7.4-cp312-cp312-win32.whl (47.6 kB view details)

Uploaded CPython 3.12Windows x86

pyitt-1.7.4-cp312-cp312-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pyitt-1.7.4-cp312-cp312-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

pyitt-1.7.4-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (245.9 kB view details)

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

pyitt-1.7.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (229.2 kB view details)

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

pyitt-1.7.4-cp311-cp311-win_amd64.whl (52.8 kB view details)

Uploaded CPython 3.11Windows x86-64

pyitt-1.7.4-cp311-cp311-win32.whl (47.6 kB view details)

Uploaded CPython 3.11Windows x86

pyitt-1.7.4-cp311-cp311-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pyitt-1.7.4-cp311-cp311-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

pyitt-1.7.4-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (245.3 kB view details)

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

pyitt-1.7.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (229.4 kB view details)

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

pyitt-1.7.4-cp310-cp310-win_amd64.whl (52.8 kB view details)

Uploaded CPython 3.10Windows x86-64

pyitt-1.7.4-cp310-cp310-win32.whl (47.6 kB view details)

Uploaded CPython 3.10Windows x86

pyitt-1.7.4-cp310-cp310-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pyitt-1.7.4-cp310-cp310-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

pyitt-1.7.4-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (242.6 kB view details)

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

pyitt-1.7.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (227.1 kB view details)

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

pyitt-1.7.4-cp39-cp39-win_amd64.whl (52.8 kB view details)

Uploaded CPython 3.9Windows x86-64

pyitt-1.7.4-cp39-cp39-win32.whl (47.7 kB view details)

Uploaded CPython 3.9Windows x86

pyitt-1.7.4-cp39-cp39-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pyitt-1.7.4-cp39-cp39-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

pyitt-1.7.4-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (240.8 kB view details)

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

pyitt-1.7.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (224.9 kB view details)

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

pyitt-1.7.4-cp38-cp38-win_amd64.whl (52.7 kB view details)

Uploaded CPython 3.8Windows x86-64

pyitt-1.7.4-cp38-cp38-win32.whl (47.6 kB view details)

Uploaded CPython 3.8Windows x86

pyitt-1.7.4-cp38-cp38-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

pyitt-1.7.4-cp38-cp38-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

pyitt-1.7.4-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (242.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

pyitt-1.7.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (227.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

File details

Details for the file pyitt-1.7.4.tar.gz.

File metadata

  • Download URL: pyitt-1.7.4.tar.gz
  • Upload date:
  • Size: 106.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pyitt-1.7.4.tar.gz
Algorithm Hash digest
SHA256 97f84a80991d91381d6c3263f5160117b14c291884ebd25838a1e866c746556b
MD5 ac3c3bac8b7469cec57ac9f3914542c5
BLAKE2b-256 b22dbec4afce7b5f719bc0a962da15e4850540395cc611e10f54743f56c5337d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyitt-1.7.4.tar.gz:

Publisher: python-publish.yml on esuldin/pyitt

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

File details

Details for the file pyitt-1.7.4-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pyitt-1.7.4-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 d1b587c3e7dcd3ab247ca76b7cab3da75790a3f46f6131b7e0e4d0e2441e6c34
MD5 2150159867495212fd052da151709709
BLAKE2b-256 28eec8bafa84438c306f86f74427fca1a3d362134df780d4dc647d02caa149f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyitt-1.7.4-pp311-pypy311_pp73-win_amd64.whl:

Publisher: python-publish.yml on esuldin/pyitt

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

File details

Details for the file pyitt-1.7.4-pp311-pypy311_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyitt-1.7.4-pp311-pypy311_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 64d9367f3bbe59ef78ab34d8cf67574938c7862be66e489fea8f4694446ed483
MD5 926dfc5f44612d0641e1fa357ab4bc1c
BLAKE2b-256 928adee6cac44aeb558f6ac697ee8e97983af0f971bd38dae9a6e2f0cf2dd135

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyitt-1.7.4-pp311-pypy311_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python-publish.yml on esuldin/pyitt

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

File details

Details for the file pyitt-1.7.4-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyitt-1.7.4-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3241c1933f20a94a6f856f1935a38dc58a17f79405b968a3e3626af4b946c9a9
MD5 e6672ee854d9f30e27afab6911a38e7c
BLAKE2b-256 bc1181f78cd54b6b614ae28d2abdeda729b49c24ada08cad08e24a64e1edea23

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyitt-1.7.4-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: python-publish.yml on esuldin/pyitt

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

File details

Details for the file pyitt-1.7.4-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pyitt-1.7.4-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 5cd03c7cd1691de823f5a0e954fda359b02bba56c325b269f29fa7eff27543d5
MD5 c9b166dc3145fe004955af11c4f26935
BLAKE2b-256 8cdd364741e299a133437f2ace2dcae1e9905bd5359efaf810afa771592661f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyitt-1.7.4-pp310-pypy310_pp73-win_amd64.whl:

Publisher: python-publish.yml on esuldin/pyitt

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

File details

Details for the file pyitt-1.7.4-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyitt-1.7.4-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2898fa618764cb6919b7e795cd93b954074e5071817db07d0153e9727f4ce0bf
MD5 9ee489966a4eb0ffec4efb628e2b0c5c
BLAKE2b-256 3fc6d165b9674b82d1ff2066c84b1a496980cd85a4a82100aa37b248728dd434

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyitt-1.7.4-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python-publish.yml on esuldin/pyitt

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

File details

Details for the file pyitt-1.7.4-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyitt-1.7.4-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9fecdec68c7eb7809c4b4a22780bce5002b75ada48ffde0c04ff9fbaf7988b0d
MD5 8392481eb2e9b28a5eda847ce7f91c9d
BLAKE2b-256 223b2f8dad1a321792a52f6a4a5d406d93c08f3c077b46595e4c618de3ba6484

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyitt-1.7.4-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: python-publish.yml on esuldin/pyitt

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

File details

Details for the file pyitt-1.7.4-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pyitt-1.7.4-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 be819f8526a2becd594bb1a5829ddd534381c27bad1cc9b02fd4c875e86b1f3b
MD5 8841cf008dfbd7c420ede45bd48ae58b
BLAKE2b-256 cfa1012919804484f5b07811b344cbaf228ca8dfc32b09818239a828dad58eb6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyitt-1.7.4-pp39-pypy39_pp73-win_amd64.whl:

Publisher: python-publish.yml on esuldin/pyitt

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

File details

Details for the file pyitt-1.7.4-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyitt-1.7.4-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f437d5b3f8964b30ef8eca38eb94b3fbe20474b90e036b082b9b9ded96a07035
MD5 1eb1f451240d0acd55a8387d8c4373de
BLAKE2b-256 761ac5ae3624de3caad26562f642d04bd63cbe08ad41ae8347c163afd4d97f5a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyitt-1.7.4-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python-publish.yml on esuldin/pyitt

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

File details

Details for the file pyitt-1.7.4-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyitt-1.7.4-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e7708f724894224bf5668807c0ab8637e4dd6dfaa7ced9efa95a75937795cf7b
MD5 20f293e6023a75b02020addf401a92a4
BLAKE2b-256 854d0c86d0b9f7ec1e7139c84451f3c8b931533c0a58ff52b6b6a50b11c7bc11

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyitt-1.7.4-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: python-publish.yml on esuldin/pyitt

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

File details

Details for the file pyitt-1.7.4-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pyitt-1.7.4-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 52.7 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pyitt-1.7.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ce86ff065dbfa98219493975ea37764df489bbc09f13b5573266749bb9e061c6
MD5 af8e43a779a64c479483b0909a9f0932
BLAKE2b-256 c1ad05e18648bae753a331482e377fedbf39cd52f2cbf2bade25a743a33403f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyitt-1.7.4-cp313-cp313-win_amd64.whl:

Publisher: python-publish.yml on esuldin/pyitt

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

File details

Details for the file pyitt-1.7.4-cp313-cp313-win32.whl.

File metadata

  • Download URL: pyitt-1.7.4-cp313-cp313-win32.whl
  • Upload date:
  • Size: 47.6 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pyitt-1.7.4-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 ee4a0b4d8f2a75caad94e855ae60bbfd629e11e6726cf6e9d109787509b798f4
MD5 613da3302019dc6222d66f38f04bdf37
BLAKE2b-256 2fdd7cb6801dadc527aad88e6e1270b8650fc3e0c964d267ca24857d2b59e19c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyitt-1.7.4-cp313-cp313-win32.whl:

Publisher: python-publish.yml on esuldin/pyitt

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

File details

Details for the file pyitt-1.7.4-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyitt-1.7.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1e26e2203e46a61f3c86feb820c310d0e1fa0d448c417f2f4a8d5971384f0ee9
MD5 5f7ceb6052dfbf08d66681a439d44f5e
BLAKE2b-256 fb5f89b56a65898c73ea630a3909838c0852788b14f548e5f58453e804f24e20

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyitt-1.7.4-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: python-publish.yml on esuldin/pyitt

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

File details

Details for the file pyitt-1.7.4-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyitt-1.7.4-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 dc2d26d772b8ebb1ebb25544f49bf79ae6f5c3bf4b1de81d28c81491e0a4ff60
MD5 5623e36a9e0b82c4fd80f0ce938d0503
BLAKE2b-256 acfffb09b0e0d4691b4dd6fad03a27bfd036289b4780da1e8e2dbb90881fe67d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyitt-1.7.4-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: python-publish.yml on esuldin/pyitt

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

File details

Details for the file pyitt-1.7.4-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyitt-1.7.4-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b1243330f0587c6af296bd85abf60fdcc49dc044894fd063f5ae1594135cb2cf
MD5 0100b9ed42e11d339c3bfd0c1c8fcc1c
BLAKE2b-256 c8078e4d25ed17253e6b8d70edd14c7c9a0337a3f22c06c057419a6d8a17dbf5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyitt-1.7.4-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python-publish.yml on esuldin/pyitt

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

File details

Details for the file pyitt-1.7.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyitt-1.7.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 620557d3e9c045d09c2cdb843109dd0b441ffd1b8ed8328a535803fe2f169b37
MD5 c33d00bed5b7c3d5b330056bbe5f76db
BLAKE2b-256 45a625f981fee6e1f85cb6d508c48f8027ec978801dc48bd9fe7c6e37023700c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyitt-1.7.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: python-publish.yml on esuldin/pyitt

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

File details

Details for the file pyitt-1.7.4-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pyitt-1.7.4-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 52.7 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pyitt-1.7.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c5f6f75d1fee2230a82adb76725d71625b26e53416ed8cddf0ebb4551a65d1e8
MD5 207465e34ec32809485087ece68bc56b
BLAKE2b-256 0acd5ee7a43acbb8eb3e8c89cac3972c6f7642d1d52745b48bfbaa1eed7f08ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyitt-1.7.4-cp312-cp312-win_amd64.whl:

Publisher: python-publish.yml on esuldin/pyitt

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

File details

Details for the file pyitt-1.7.4-cp312-cp312-win32.whl.

File metadata

  • Download URL: pyitt-1.7.4-cp312-cp312-win32.whl
  • Upload date:
  • Size: 47.6 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pyitt-1.7.4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 eec1434fb5d50d33d2055400c5bc9b533442c5352818f0cf7861d01ebdc336c7
MD5 95c8f40d3b448bd41fe3c378f5a52107
BLAKE2b-256 5e462af10d2728b34a7b45a67d331352cdf0533afcd24d7bc154bebc95851836

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyitt-1.7.4-cp312-cp312-win32.whl:

Publisher: python-publish.yml on esuldin/pyitt

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

File details

Details for the file pyitt-1.7.4-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyitt-1.7.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0649e9b7871b5286e70b58904687bf374f07a93016f7cc67654c55ae5537aa04
MD5 2519c2293d5e6af96dace5103b080901
BLAKE2b-256 d97301a4d743b6d3e5d56d5252951e3b4827e085a28560e6316bfbf9ee14f542

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyitt-1.7.4-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: python-publish.yml on esuldin/pyitt

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

File details

Details for the file pyitt-1.7.4-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyitt-1.7.4-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e86c0bf3655cc8298dcf187cbcdfc75012ea061988fff2a680a552baa2c5a957
MD5 352dbdb41c9c95123ec08a909f3dd300
BLAKE2b-256 ca33fafd45ea15873387f960be510345abc57ab36b008ff3d794eb884841098e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyitt-1.7.4-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: python-publish.yml on esuldin/pyitt

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

File details

Details for the file pyitt-1.7.4-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyitt-1.7.4-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fa51b5f2849a05b2b4301bf62eeb0cefad09ca749638266fdd4b5a28ffb40bef
MD5 5e3790fada3bce14d98388b79a56e650
BLAKE2b-256 7d2f1ab4faede7e308a88a64ebf94fadeba42d5bc3ff4515a0eca094259bf872

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyitt-1.7.4-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python-publish.yml on esuldin/pyitt

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

File details

Details for the file pyitt-1.7.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyitt-1.7.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c7600e32ffd28a09c6de4710a8ae58a0601d3eab56f03e2227e98bb005912007
MD5 aa76e68e76ead64294f3d06da7e74188
BLAKE2b-256 3ab475425b90978995ed1d71e198c279b78efa04fbd64ab6282d8895939f117b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyitt-1.7.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: python-publish.yml on esuldin/pyitt

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

File details

Details for the file pyitt-1.7.4-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pyitt-1.7.4-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 52.8 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pyitt-1.7.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7acd7823aa30a51a3d868fd7288cf618bd7de6cc88e4f087f54b3586e664f290
MD5 f6700180d050d84391b27a3b4415f475
BLAKE2b-256 091e4d3e9b6100dc2214003a69ff61c4e19266e56a30fb38236810091bf5b47e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyitt-1.7.4-cp311-cp311-win_amd64.whl:

Publisher: python-publish.yml on esuldin/pyitt

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

File details

Details for the file pyitt-1.7.4-cp311-cp311-win32.whl.

File metadata

  • Download URL: pyitt-1.7.4-cp311-cp311-win32.whl
  • Upload date:
  • Size: 47.6 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pyitt-1.7.4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 e3888de608cd3ea926b097e5cf738886a8f9da05ec7be1dccd3b20f5357d354f
MD5 5eab6b24c3188968c6e959d22c017313
BLAKE2b-256 e17633d18c2da89585da398a4d320d24819639fa2295557f22edc81fa3708ec8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyitt-1.7.4-cp311-cp311-win32.whl:

Publisher: python-publish.yml on esuldin/pyitt

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

File details

Details for the file pyitt-1.7.4-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyitt-1.7.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 85d48c8821685bcc7e833bc9e8b30c50b86775eeeb02781176e48f70c40b0508
MD5 057519d223a834d3808c3e3fe9900802
BLAKE2b-256 69c9ef4f9e05715a48d834319016fe0e6f10114f611189f95f0ec440d63442d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyitt-1.7.4-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: python-publish.yml on esuldin/pyitt

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

File details

Details for the file pyitt-1.7.4-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyitt-1.7.4-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 810a645474f8f36ba818e68b09f612d7f2e3609e57d7d32873c3f060ea8524b6
MD5 843001b9a4c5b70d90c65530cbe25856
BLAKE2b-256 24fd7c72ae00e286ec0a3287ddc5b05d3e49c9b390bbb705534315100902431d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyitt-1.7.4-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: python-publish.yml on esuldin/pyitt

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

File details

Details for the file pyitt-1.7.4-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyitt-1.7.4-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9025682bb2c1b0c0a56f35af9158a0027af9b5bb61225a7076605adc2fcada99
MD5 983ea29f9efd5b0d1dda66b14ae74d1a
BLAKE2b-256 20c59cdbf9f88ef8357e2763f75c67c0539b1eee4c90778536011887c902e199

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyitt-1.7.4-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python-publish.yml on esuldin/pyitt

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

File details

Details for the file pyitt-1.7.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyitt-1.7.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 329688833f8e2a32ea4f68296036930e7d9a40ed262aff63820686d2947fc9f0
MD5 4e0dc3cbf5cd98385997780dfb43fca9
BLAKE2b-256 5c8ad8c15d578ef2caf0892fd09e819629fb26f342bdef9b4ad33795335bf54b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyitt-1.7.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: python-publish.yml on esuldin/pyitt

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

File details

Details for the file pyitt-1.7.4-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pyitt-1.7.4-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 52.8 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pyitt-1.7.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 12e3b8cb6dab18fbd5e14ebbbb1e83506d83fb7c16b81f89d7cdef10dea724f1
MD5 3e4eba258a923dfb480b0631e9477a1a
BLAKE2b-256 7cc1eba16197cd10a0af5d21af268d21bdc42e70356dc17c792aa2495bca3193

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyitt-1.7.4-cp310-cp310-win_amd64.whl:

Publisher: python-publish.yml on esuldin/pyitt

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

File details

Details for the file pyitt-1.7.4-cp310-cp310-win32.whl.

File metadata

  • Download URL: pyitt-1.7.4-cp310-cp310-win32.whl
  • Upload date:
  • Size: 47.6 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pyitt-1.7.4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 ca670a4be69df374d5e31d32789aa06a15d9b7bc4df535cc85d757533b036d8c
MD5 958eef937bcc33935e8a46b5f0113203
BLAKE2b-256 a217a353c5280bdaeda840c2529724914742b806fc7d2653b39c3f637c2d578a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyitt-1.7.4-cp310-cp310-win32.whl:

Publisher: python-publish.yml on esuldin/pyitt

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

File details

Details for the file pyitt-1.7.4-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyitt-1.7.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 760e24383dfef23b4aab1786b446203a8dc37991926506c6a28eb3936dd73a6b
MD5 c0133e1628ce4e0f54e4405facaf189c
BLAKE2b-256 c676b66b95c67b8ab1b5484744afca9e05a74fd013119499ac79f54505ba992d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyitt-1.7.4-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: python-publish.yml on esuldin/pyitt

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

File details

Details for the file pyitt-1.7.4-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyitt-1.7.4-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 573309e90d721977c63a8b4fa6063874e3b70945c055722463931706a628a8ad
MD5 29e30ff1fdd09d4117c62328fba66fc8
BLAKE2b-256 812c74eecfbd6d4c3efb37a5448b6875a6650e01c2935eb975779a3e601e51ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyitt-1.7.4-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: python-publish.yml on esuldin/pyitt

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

File details

Details for the file pyitt-1.7.4-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyitt-1.7.4-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5a8f36baca6680439e91360ee145e7a1f370dfb6af53a772a8d60c884cde9964
MD5 bd1d72383b0ed26c2b6d7808467333ca
BLAKE2b-256 53ecdc7fbc40387284d477fe21f36fba38c954261059464b4f59997809d9451d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyitt-1.7.4-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python-publish.yml on esuldin/pyitt

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

File details

Details for the file pyitt-1.7.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyitt-1.7.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ffea9ba56dc610542633535f44bdf86ffe50dd07069b7df625f0e9669539a83a
MD5 7fe858d88a8ae20ac60fbca7376be0af
BLAKE2b-256 6151ea0e6cbe4df4448b493bd83c703bf7b9b9ec23f8ec255a0843412e8bc682

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyitt-1.7.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: python-publish.yml on esuldin/pyitt

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

File details

Details for the file pyitt-1.7.4-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pyitt-1.7.4-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 52.8 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pyitt-1.7.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 89604c4a7cc65fc3c4305bc858bd1f54aa5f02f9d764deee1f130a9b1e581d15
MD5 814f032e8726606c2b9a7faf44b02eb9
BLAKE2b-256 1660896f2ee0369f09d67f0dbedfaf5d4c1d4694fb9cd8a5a84c930ce89b4e24

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyitt-1.7.4-cp39-cp39-win_amd64.whl:

Publisher: python-publish.yml on esuldin/pyitt

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

File details

Details for the file pyitt-1.7.4-cp39-cp39-win32.whl.

File metadata

  • Download URL: pyitt-1.7.4-cp39-cp39-win32.whl
  • Upload date:
  • Size: 47.7 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pyitt-1.7.4-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 af516ee0fc2661bf63422d6650ec51d301b97925725dddb2f1da07f7bc66fd9a
MD5 fd88700225aab194e5714c5b35c2fc47
BLAKE2b-256 0b3c3c023ef5499987fb85712751787bb9ddbb3b0eff30b5c375d6984a776057

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyitt-1.7.4-cp39-cp39-win32.whl:

Publisher: python-publish.yml on esuldin/pyitt

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

File details

Details for the file pyitt-1.7.4-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyitt-1.7.4-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cd6fd009149aa0e8ccf92d1dcfe76078b129f057b99188fbb2300b51031e4169
MD5 3c04ba49784f2dbb2c962954e74cb1a8
BLAKE2b-256 9edad4a3995aff85e71ef47e3a526a7f0232db003e52c94a7801897813eba7d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyitt-1.7.4-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: python-publish.yml on esuldin/pyitt

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

File details

Details for the file pyitt-1.7.4-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

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

File hashes

Hashes for pyitt-1.7.4-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cd66b260a947fc02132789d07181bc82071eef3367077f708c6cb6e3cc2f4170
MD5 eb01c1c48dc2357e68de4d4b8706d026
BLAKE2b-256 008b32f80ba77db513e9244e20963750c2b0ad94c0da5a8bced3166f0b9da754

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyitt-1.7.4-cp39-cp39-musllinux_1_2_i686.whl:

Publisher: python-publish.yml on esuldin/pyitt

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

File details

Details for the file pyitt-1.7.4-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyitt-1.7.4-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 56fb04d93c77f5a55735e5d67fb1d5c922c2ccf66d65467cec41c52f4d4cfffa
MD5 b73fb1a41cd17f2457967f5656708017
BLAKE2b-256 930df28125935f5a2346d855bdd2063729100580cbed50baa2f322d135fa0e6d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyitt-1.7.4-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python-publish.yml on esuldin/pyitt

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

File details

Details for the file pyitt-1.7.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyitt-1.7.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 030d9480d5d0b4a33c67e8e274e97d8a1e43a5791705e1ef9ab3c7d0e4de43b5
MD5 9d5d934c8cb4fb288fd76b49e13c3e57
BLAKE2b-256 25ec212e05c142598d1ff1aa0badd3edda3a520f438fcb8a4bc99c60d87c8b47

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyitt-1.7.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: python-publish.yml on esuldin/pyitt

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

File details

Details for the file pyitt-1.7.4-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: pyitt-1.7.4-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 52.7 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pyitt-1.7.4-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 659adb1b48f9c6a1c016e8aaed273da0ae39bb03e688c3b62264483ba65a1d90
MD5 25af9fb6796ee3b6baf44e07329ad559
BLAKE2b-256 84bc5d3da9fc138e8002a520ef482bfd9bc7b4dfa99bb4dad60975db019d5b58

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyitt-1.7.4-cp38-cp38-win_amd64.whl:

Publisher: python-publish.yml on esuldin/pyitt

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

File details

Details for the file pyitt-1.7.4-cp38-cp38-win32.whl.

File metadata

  • Download URL: pyitt-1.7.4-cp38-cp38-win32.whl
  • Upload date:
  • Size: 47.6 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pyitt-1.7.4-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 d35a209e939bc30c08e02073c72d286da888537baa5653aca0989d42a6f78b51
MD5 314c7485112729fb9bda1ff4c708a84e
BLAKE2b-256 553f97e82dc77c66b49acb7c57d171eb26e922f8e69a1895f20fe53517d45721

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyitt-1.7.4-cp38-cp38-win32.whl:

Publisher: python-publish.yml on esuldin/pyitt

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

File details

Details for the file pyitt-1.7.4-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyitt-1.7.4-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c98b3b3478e1941164b35edb41ceca644c16e3382e37f678a6f125faa12c0dbd
MD5 a60ff7029a3b3832a51aed7f4bb3fcc1
BLAKE2b-256 96e41d19762a9d5a7bac77ddf628b68fcafb7c22d2ff3f93b9aa5bc841f5db38

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyitt-1.7.4-cp38-cp38-musllinux_1_2_x86_64.whl:

Publisher: python-publish.yml on esuldin/pyitt

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

File details

Details for the file pyitt-1.7.4-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

  • Download URL: pyitt-1.7.4-cp38-cp38-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.8, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pyitt-1.7.4-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8e2d681de76bf35a8a1a1123ba70c6e930611efd42caca999397c486fc471ef6
MD5 f8f4d65758da3f6aae7fad95c7669a80
BLAKE2b-256 5e115ab6063b4b4d08b7a4bb9074ff92c9a51965c2b2d77c85990f8b28537934

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyitt-1.7.4-cp38-cp38-musllinux_1_2_i686.whl:

Publisher: python-publish.yml on esuldin/pyitt

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

File details

Details for the file pyitt-1.7.4-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyitt-1.7.4-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ead239b0b35fee653e79875901f9d3effa58b77d9e3ae8529d5fc60f9538c5da
MD5 d35fe896c674a2b3c4c8429c5a954f6d
BLAKE2b-256 8ef95ef4f649d51b20f9f6569765e06d05001c2b49b66e6b0d35e6d889f36bde

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyitt-1.7.4-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python-publish.yml on esuldin/pyitt

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

File details

Details for the file pyitt-1.7.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyitt-1.7.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 011c9b26fcf0a1616692cde05e0265dad1d4457f21639d73a9a80443e91415f1
MD5 fb9907063371135d4b0f7a56f83daeb4
BLAKE2b-256 850205b7c83c7c5fb35564a89194fc34d1e2f75a63eae2ac7c82004244b6ad15

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyitt-1.7.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: python-publish.yml on esuldin/pyitt

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 Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page