Skip to main content

Python bindings for scnr2

Project description

scnr2 Python Bindings

Python bindings for the scnr2 high-performance scanner generator crate, powered by PyO3.

Installation

You can install scnr2 directly from PyPI:

pip install scnr2

Local Development

To build and install it from source in your local environment, use maturin:

cd scnr2-python
uv run maturin develop

Basic Usage

The scnr2 module allows you to define a scanner using a declarative syntax similar to the Rust scanner! macro.

import scnr2

# Define your scanner
definition = """
MyScanner {
    mode INITIAL {
        token r"\d+" => 1;           // Match digits (Token Type 1)
        token r"[a-zA-Z_]\w*" => 2;  // Match identifiers (Token Type 2)
        token r"\s+" => 3;           // Match whitespace (Token Type 3)
    }
}
"""

scanner = scnr2.Scanner(definition)

# Scans the input and returns a list of matches
input_text = "123 abc_456"
matches = scanner.find_matches(input_text)

for m in matches:
    print(f"Token {m.token_type}: '{m.text}' at [{m.start}:{m.end}]")

# With position information (line, column)
matches_pos = scanner.find_matches_with_position(input_text)
for m in matches_pos:
    print(f"Token {m.token_type} at {m.start_line}:{m.start_column}")

Advanced Usage

scnr2 supports advanced features like Lookahead (positive and negative) to handle complex lexical structures.

Lookahead Example

import scnr2

definition = """
AdvancedScanner {
    mode INITIAL {
        // Match 'a' only if followed by 'b'
        token r"a" followed by r"b" => 1;
        
        // Match 'b' only if NOT followed by 'c'
        token r"b" not followed by r"c" => 2;
        
        token r"a" => 3;
        token r"b" => 4;
        token r"c" => 5;
    }
}
"""

scanner = scnr2.Scanner(definition)

# Scans for patterns with lookahead constraints
text = "abc"
matches = scanner.find_matches(text)

# Token 1 will match 'a' in 'ab'
# Token 4 will match 'b' (because it IS followed by 'c', so Token 2 fails)
# Token 5 will match 'c'

Memory Management Note

The current version of the Python bindings uses Box::leak for runtime-generated DFA tables and matching logic to satisfy internal Rust lifetime requirements. While highly efficient for long-lived scanner instances, creating an extremely large number of unique Scanner objects in a single long-running process may result in memory growth. It is recommended to reuse Scanner instances whenever possible.

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

scnr2-0.5.2.tar.gz (76.3 kB view details)

Uploaded Source

Built Distributions

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

scnr2-0.5.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

scnr2-0.5.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

scnr2-0.5.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

scnr2-0.5.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

scnr2-0.5.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

scnr2-0.5.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (4.0 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

scnr2-0.5.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.2 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

scnr2-0.5.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.9 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

scnr2-0.5.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.9 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

scnr2-0.5.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

scnr2-0.5.2-cp314-cp314-win_amd64.whl (580.8 kB view details)

Uploaded CPython 3.14Windows x86-64

scnr2-0.5.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

scnr2-0.5.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

scnr2-0.5.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

scnr2-0.5.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

scnr2-0.5.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

scnr2-0.5.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (4.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

scnr2-0.5.2-cp314-cp314-macosx_11_0_arm64.whl (657.2 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

scnr2-0.5.2-cp314-cp314-macosx_10_12_x86_64.whl (683.9 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

scnr2-0.5.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.2 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

scnr2-0.5.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.9 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

scnr2-0.5.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.9 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

scnr2-0.5.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

scnr2-0.5.2-cp313-cp313-win_amd64.whl (581.0 kB view details)

Uploaded CPython 3.13Windows x86-64

scnr2-0.5.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

scnr2-0.5.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

scnr2-0.5.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

scnr2-0.5.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

scnr2-0.5.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

scnr2-0.5.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (4.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

scnr2-0.5.2-cp313-cp313-macosx_11_0_arm64.whl (657.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

scnr2-0.5.2-cp313-cp313-macosx_10_12_x86_64.whl (684.2 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

scnr2-0.5.2-cp312-cp312-win_amd64.whl (580.9 kB view details)

Uploaded CPython 3.12Windows x86-64

scnr2-0.5.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

scnr2-0.5.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

scnr2-0.5.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

scnr2-0.5.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

scnr2-0.5.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

scnr2-0.5.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (4.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

scnr2-0.5.2-cp312-cp312-macosx_11_0_arm64.whl (657.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

scnr2-0.5.2-cp312-cp312-macosx_10_12_x86_64.whl (683.7 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

scnr2-0.5.2-cp311-cp311-win_amd64.whl (582.1 kB view details)

Uploaded CPython 3.11Windows x86-64

scnr2-0.5.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

scnr2-0.5.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

scnr2-0.5.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

scnr2-0.5.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

scnr2-0.5.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

scnr2-0.5.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (4.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

scnr2-0.5.2-cp311-cp311-macosx_11_0_arm64.whl (657.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

scnr2-0.5.2-cp311-cp311-macosx_10_12_x86_64.whl (683.9 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

scnr2-0.5.2-cp310-cp310-win_amd64.whl (582.1 kB view details)

Uploaded CPython 3.10Windows x86-64

scnr2-0.5.2-cp310-cp310-win32.whl (535.2 kB view details)

Uploaded CPython 3.10Windows x86

scnr2-0.5.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

scnr2-0.5.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

scnr2-0.5.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

scnr2-0.5.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

scnr2-0.5.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

scnr2-0.5.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (4.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

scnr2-0.5.2-cp310-cp310-macosx_11_0_arm64.whl (657.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

scnr2-0.5.2-cp310-cp310-macosx_10_12_x86_64.whl (684.2 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

scnr2-0.5.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

scnr2-0.5.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

scnr2-0.5.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

scnr2-0.5.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

scnr2-0.5.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

scnr2-0.5.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (4.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

scnr2-0.5.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

scnr2-0.5.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

scnr2-0.5.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

scnr2-0.5.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

scnr2-0.5.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

scnr2-0.5.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (4.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

File details

Details for the file scnr2-0.5.2.tar.gz.

File metadata

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

File hashes

Hashes for scnr2-0.5.2.tar.gz
Algorithm Hash digest
SHA256 f6f8fe37f6485416f1a7d18d7fe95b9503f1315b2b0b1f1a96deb20d46f3ad28
MD5 dfc85dfff1180f11f190df858c7eaad4
BLAKE2b-256 e20e682ac8607b61dabd535ab3a13c8a50ea0c9ad68455d1aa5682edd3f81a98

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.2.tar.gz:

Publisher: python-release.yml on jsinger67/scnr2

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

File details

Details for the file scnr2-0.5.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for scnr2-0.5.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a380c1a6c51d1f482105349ea9e119d1a81a53ffd087544aa29cc89b5743953f
MD5 cdc505b6da75bc4549e6fcf2d37019ea
BLAKE2b-256 b9ce852114d058e3b57444aeadfd9b0aed1d6c4990d9eda1598f355d21c94474

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python-release.yml on jsinger67/scnr2

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

File details

Details for the file scnr2-0.5.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for scnr2-0.5.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 05946e1de68467660c1867259cdb576847b94eab89e921802c2514b481b83d55
MD5 ae10c2cae011ac48201beb4aa76806a7
BLAKE2b-256 e85310ad3121fdf538df25e25fd7505414faae3641451d3a976814ff80a33114

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: python-release.yml on jsinger67/scnr2

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

File details

Details for the file scnr2-0.5.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for scnr2-0.5.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8a3dbe3e25e177b90156b169b694ba6fd2c6c49bb35486e84abae6b9e4114156
MD5 966d59f838189fe7dd1ba8658f9cf885
BLAKE2b-256 e99d240a3b77dea0bbf6e3ed82de36ca05b4afdf4720bacbd472d3b0306ee634

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: python-release.yml on jsinger67/scnr2

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

File details

Details for the file scnr2-0.5.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for scnr2-0.5.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8a4d9dfb5a55970f757cecaa78eaa5ff9f29784478ebc5fc47c5295ceaf805fa
MD5 d2e04cc132eaa93a638344094a5931d6
BLAKE2b-256 18b75feb933bfddd5a4c7c38fafb37ee49397a3063e33974a07855c63c0aa3cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: python-release.yml on jsinger67/scnr2

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

File details

Details for the file scnr2-0.5.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for scnr2-0.5.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 01db5af5e8f817d044411b99d76a870066afb632be6976888cb158413fc7d9a8
MD5 8281b78db3533fa45d5a63178e02a52c
BLAKE2b-256 61cf7583e3a240f4957a45b8a259144da65830b720212cfd82b0f47d0a22c577

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: python-release.yml on jsinger67/scnr2

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

File details

Details for the file scnr2-0.5.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for scnr2-0.5.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 af7d9b99ea317ce22fb94015902d5ddcee973806f0a62f1642829725d502b86f
MD5 46ede16facbc51c13c534ebad5ae421d
BLAKE2b-256 8d6dc45a77af5ae5141d5630e6de8c9a770a836ec7641dbb19b62953d89ec545

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: python-release.yml on jsinger67/scnr2

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

File details

Details for the file scnr2-0.5.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for scnr2-0.5.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e4a4c9f47907da12bdbde629426b990f6cd36a32d6b2b483ab3c46cea973b169
MD5 55252b7f75c7c0f800c6c3df8494c701
BLAKE2b-256 b3aa716ff5c9b0de8bcb1db90b883d428221042bfbade5a089d5691111ac1317

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: python-release.yml on jsinger67/scnr2

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

File details

Details for the file scnr2-0.5.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for scnr2-0.5.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 66db668dcdeffb0575bd63595c97b6945c3a5776294699cee4686c86091fb53e
MD5 c0782e9f24fc1516846ea0973456ec04
BLAKE2b-256 67ee55f9b38becbb459202d433bbfeeb7747b2564e70bbd17e9357c1c8d405f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: python-release.yml on jsinger67/scnr2

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

File details

Details for the file scnr2-0.5.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for scnr2-0.5.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 eaa0f3afa58746023edfdf6638a324366c70179dd36c32f3b56b65af4a6970b2
MD5 b83d35197d1f5c4c47a7418810bd69f5
BLAKE2b-256 29aed15bd4f03b1a0369255a5336d712adeb9017cc92032c45d0584d0625c0f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: python-release.yml on jsinger67/scnr2

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

File details

Details for the file scnr2-0.5.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for scnr2-0.5.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c64b7e1cdc886d8c43120260c20f50d80650392bb7ec088b3f6cdf6f08c66389
MD5 de38d3e0802ec24b4f1258d921781c06
BLAKE2b-256 12baad71fda1f8878764184519d5117e6051ee8147309118c2421cf997fab00c

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: python-release.yml on jsinger67/scnr2

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

File details

Details for the file scnr2-0.5.2-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: scnr2-0.5.2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 580.8 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for scnr2-0.5.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 cd124899630d1947d2eb6978e0503185ec9dbcde8501e186c4cb143439d760f6
MD5 4fef4f9df58aaf12fa14a4b343c2a236
BLAKE2b-256 2c1ec936ed098c165fa22fbba792c23837e2890e2da0a5facae2a5b2bd6f29a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.2-cp314-cp314-win_amd64.whl:

Publisher: python-release.yml on jsinger67/scnr2

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

File details

Details for the file scnr2-0.5.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for scnr2-0.5.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d6f0c93976985005a4243e9585ec2f9b788d1c0865be4af630d332eabc528de1
MD5 25f5ac73816ed17435f62ce58e92fdbe
BLAKE2b-256 09de10d4205d585194a8c06bd469113f07b25bc57d07355644fe5d89c2413ee5

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python-release.yml on jsinger67/scnr2

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

File details

Details for the file scnr2-0.5.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for scnr2-0.5.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8d4db67d2be8e9d7ec06e8501bbe2b9602db11a0e900d229fdac3a5b72aa3115
MD5 884f287e4f11a7cbedad5de6a01ad9fa
BLAKE2b-256 59c821a27c00adc9cdc0fa8d9f2665372df926a48a78a6fb65359c394dbc869f

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: python-release.yml on jsinger67/scnr2

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

File details

Details for the file scnr2-0.5.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for scnr2-0.5.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8e3b1cc5846ef22559815765812e6a9089d1bcf6b63570861858e525f5ee37c5
MD5 31e0fc787f62fa22f82c47325bcab5f7
BLAKE2b-256 dee9e52cdff4a1b1673a4b0a545928a3cef9cf338f56457c49c0271e7711d64b

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: python-release.yml on jsinger67/scnr2

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

File details

Details for the file scnr2-0.5.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for scnr2-0.5.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e6686f2587c00370af018429f10304461722b54dfee9b210aff2cc08cddc8289
MD5 fda89c0e42751ce2ffd132e92a0ad2cc
BLAKE2b-256 76254420711bb5a2f47cd7f1d18671afc63ca413c51604a98a6030b0b72d8795

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: python-release.yml on jsinger67/scnr2

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

File details

Details for the file scnr2-0.5.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for scnr2-0.5.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9c2bf06a0f799e98b24394dbe3f5a9de5c96e346647e422c75083f6fa83f53e0
MD5 fd676b54f550f0907a365c658ded3539
BLAKE2b-256 80b50c0dbdb0f4520912efcda118c53f705483f70a66bbbd45cb1248e12a82c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: python-release.yml on jsinger67/scnr2

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

File details

Details for the file scnr2-0.5.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for scnr2-0.5.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0ce72a010621216979d54fc5fadaf360e2ad9ecaeca2ae01b996dda3011b594a
MD5 e6550b3006297c62411148ecc3a6560f
BLAKE2b-256 0c5a2f7c236bb10c4ce67c3a953f08e84faf8cc66d3c188b14c5d0cc02040b9d

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: python-release.yml on jsinger67/scnr2

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

File details

Details for the file scnr2-0.5.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for scnr2-0.5.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f6ce18528d0888e478ab5e12ea63fef7c039d114e9fe4271010c9a94c22ec7ee
MD5 0113f2bee4bc66bfc7a171ac8b299073
BLAKE2b-256 9fc7a98d3861589e47227134bb2d9e8c7867bb2e1cf26b0a099a2898da2df8b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.2-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: python-release.yml on jsinger67/scnr2

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

File details

Details for the file scnr2-0.5.2-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for scnr2-0.5.2-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6af2e04a9aeebb2bddddd56cb982e41c79c576deaf8889ded36b39e3c4f4305e
MD5 d5faeb0600ac1c6fab51c96071baac76
BLAKE2b-256 4af0335531f351b7b74abaf40327f12ae2c1d17817c47d18284332cfad24fc5b

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.2-cp314-cp314-macosx_10_12_x86_64.whl:

Publisher: python-release.yml on jsinger67/scnr2

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

File details

Details for the file scnr2-0.5.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for scnr2-0.5.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1961ff92b98ba787ca5c3667a71078ecd74c6ed5cfc0de88e0aff76d2176e90a
MD5 ab9327c6583beb755e352af9fe49b656
BLAKE2b-256 6182a9c32ec4a092fe3995ba5bbe770c6b35ae5057ade18ecdb49fc2296d6757

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: python-release.yml on jsinger67/scnr2

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

File details

Details for the file scnr2-0.5.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for scnr2-0.5.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d829f90fad8abc8839216fc325b1dd79a86b7809ba2ff927b0b4d34b14f1489a
MD5 2381941a39870d5d5186114bb383a3b7
BLAKE2b-256 f61ce64a56f7e64a034e30b7ce1913308fc78a6cc5cc0d0955a270a5322fcfbe

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: python-release.yml on jsinger67/scnr2

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

File details

Details for the file scnr2-0.5.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for scnr2-0.5.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7c0e79998d54c5afabebe08d315b79edfff9a36d3faaa757cd4240c7d38db769
MD5 963a6b7ced6c079c99e10ce253eb885a
BLAKE2b-256 3077f3afc9d9d140550d13c928ca775e0aa837f26aca4b6e10ff1adb48db2584

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: python-release.yml on jsinger67/scnr2

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

File details

Details for the file scnr2-0.5.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for scnr2-0.5.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5bd8f27b20a254078db32d2231366414749cb9cd7e89327a5c544ecfaee5d7f1
MD5 f6581953cb1aa496351229644464a490
BLAKE2b-256 3ac6131a4d56974d898441ab14c57e82d3e7d0937d38f55158d98759aa6102ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: python-release.yml on jsinger67/scnr2

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

File details

Details for the file scnr2-0.5.2-cp313-cp313-win_amd64.whl.

File metadata

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

File hashes

Hashes for scnr2-0.5.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 299dc84af16032784716ce5c847ebfbcb5961ea9cf92b5b5731ec6340e0e8089
MD5 f9296d0092bdb89ff15bc3d41f78be22
BLAKE2b-256 07ca55d7ed9bb06228fe0b32da870c9181c781617e217d6ee3b34fc25ac88d1a

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.2-cp313-cp313-win_amd64.whl:

Publisher: python-release.yml on jsinger67/scnr2

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

File details

Details for the file scnr2-0.5.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for scnr2-0.5.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 21a768ed354644172e3738841fa811f4423b01c981f0f25fe7c9311161911515
MD5 8f47fb1742a4a674fefcd463b453b9ce
BLAKE2b-256 4aea042b0041bedecb455773d23fbab3517b305c01e4091519debb86c10a91b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python-release.yml on jsinger67/scnr2

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

File details

Details for the file scnr2-0.5.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for scnr2-0.5.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d510ea34ae698df116e53039fc7db595302bc388cf6721cb68fc278df77933be
MD5 d0e36c60ecb89d09bc7e9bd4ae2f3a85
BLAKE2b-256 cb158a106b84b3bbe32bd065d7d84846ff265901fa0365ede996cecac5d4cd0d

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: python-release.yml on jsinger67/scnr2

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

File details

Details for the file scnr2-0.5.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for scnr2-0.5.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bc3f0921c49b9a55eda9e5b4b850a820ea812b9aa17ba42e726febfd1678cd6f
MD5 e21d89be61aa8095821ae98cb854d2d2
BLAKE2b-256 ae8dac0aac9bd90e50de53cc0e156f3fffc591d517ded70abf682cba67818869

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: python-release.yml on jsinger67/scnr2

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

File details

Details for the file scnr2-0.5.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for scnr2-0.5.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6c0eec6d514485cf208a05b0d2ae761423c82041d20617a130f95825efd57fd5
MD5 e412714dd9bc3d829d2658e589b34277
BLAKE2b-256 5af9597dff45a732611568c347f844a7a4a336bbe24b631d854dbfed73386d01

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: python-release.yml on jsinger67/scnr2

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

File details

Details for the file scnr2-0.5.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for scnr2-0.5.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e743298008ca8f2e4d8c5436054fb5a5ab2715a28248808b68e538d26c59855e
MD5 962238fb8b830a22f81127b3bc80ec7d
BLAKE2b-256 913ed17981b4823eb5e5b2988b0d76891bac8685d3a13e5c2820104532c4c087

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: python-release.yml on jsinger67/scnr2

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

File details

Details for the file scnr2-0.5.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for scnr2-0.5.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b699c8355f2414ba46b791efa3301ca761355daacedb5ea7e3fbe8282da02bd7
MD5 be1be2203b12c86cff5d040cd49ab452
BLAKE2b-256 4f184b706db1a2b78acf2f54777e9168d25c7eab113b04b3814d198bc2b30d9e

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: python-release.yml on jsinger67/scnr2

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

File details

Details for the file scnr2-0.5.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for scnr2-0.5.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ea4240de5236a5988a42ea3d45f2494b24ed61320b90f4544fcb3466e9e9d622
MD5 96e0570e06448f6daad127d75e3c423b
BLAKE2b-256 07523fae8d2868f8c1752802415fdc56dee011a4f5ec1f1f09067c01d214bf48

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.2-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: python-release.yml on jsinger67/scnr2

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

File details

Details for the file scnr2-0.5.2-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for scnr2-0.5.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8e90bd387791d1d44b54d3088ba53ceaec9f07cc63e91876ecf7a3e637f1e323
MD5 747353d198e735f494bd19eb21eacf2f
BLAKE2b-256 d257dd672b5cb53678c119b4ea6b5c54ba6c188ca3afd195027220744e250e70

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.2-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: python-release.yml on jsinger67/scnr2

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

File details

Details for the file scnr2-0.5.2-cp312-cp312-win_amd64.whl.

File metadata

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

File hashes

Hashes for scnr2-0.5.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3b1eafd7ce5c75327474e326554b1059c961391b011f052ebb94682f10feb48d
MD5 100f08197a85d7309ad90fd8f8b6781c
BLAKE2b-256 fb7cc49fc88fcf7d4f4ea6c2fe0c634ecbf7fb12b1d8a79bc586999446d77811

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.2-cp312-cp312-win_amd64.whl:

Publisher: python-release.yml on jsinger67/scnr2

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

File details

Details for the file scnr2-0.5.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for scnr2-0.5.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 987c9132dd3b6d21ecbf47edb63a19ec5467856ded887edeb1a7da0c702de774
MD5 fc80fcc9403cdcd5d3238f1de049606b
BLAKE2b-256 48c3c6c16da0d1008d1e8fc10b09ac1d5b150faeb3804e3d712c9a2144a64829

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python-release.yml on jsinger67/scnr2

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

File details

Details for the file scnr2-0.5.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for scnr2-0.5.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 98c156a7d63e289c5685f6ef0f83b6c73a55ae99ae7b7a56e4b5e2b6a9296836
MD5 2dc040c98840cce9ea35ae1b0adf833c
BLAKE2b-256 a2979c43101ac365abe8d8c0ef8e31e4a474da10d290315b618fdf7f6cada2cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: python-release.yml on jsinger67/scnr2

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

File details

Details for the file scnr2-0.5.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for scnr2-0.5.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 435913f06067fc539472bd3bd0f0ced5af16faacb4f6cdbfbcd0b4710f0406c6
MD5 2477d88f95a45bcfde626eddf707b922
BLAKE2b-256 037e794e209684e48232eb04f595909ffc808108e1154fcf960fe9c5b0eb4cda

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: python-release.yml on jsinger67/scnr2

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

File details

Details for the file scnr2-0.5.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for scnr2-0.5.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 611453969e515f0555008bfa12dc266816b6cf6e88a8265a938a462b2e950c66
MD5 42228c306c25af63335e355d9cf0bf8c
BLAKE2b-256 7a8d992c331d8e325e6a131e83938a07ca2536e899bcda9eb0766e603c2dd6ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: python-release.yml on jsinger67/scnr2

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

File details

Details for the file scnr2-0.5.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for scnr2-0.5.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e1dc743aff1cf3645c7f75ec31e6872c30b3c8310f5aa2fb55159b24e758a5f8
MD5 0b98e6897ecd2cf3ef70bf454c0b4c5b
BLAKE2b-256 01c67909cd429e6e31f538c722752a94799faf760676a7beac28c745de1e69d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: python-release.yml on jsinger67/scnr2

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

File details

Details for the file scnr2-0.5.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for scnr2-0.5.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 69a2dc6a3ec75e946e454b688134e3195a65964a2b81669cc5162e1fd9ae3bac
MD5 3bb7b6b4bfc0e1b991ed0df983e3e363
BLAKE2b-256 55115cfcaa70a17258f51aaf86b0c526f407bd86a0ad9421d1d1401df69fd8fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: python-release.yml on jsinger67/scnr2

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

File details

Details for the file scnr2-0.5.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for scnr2-0.5.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ad79b8021783d1ed6325050fa6ee88c053fce4c38e465ff1d5814b4104330dfe
MD5 b5302876b7aa1a2784606bba15fd4417
BLAKE2b-256 45b8acca470d6fe806f35df0e50a57fc6e98401f0fbd5ad12c54ba2299f5debf

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.2-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: python-release.yml on jsinger67/scnr2

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

File details

Details for the file scnr2-0.5.2-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for scnr2-0.5.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d00e96e702625d06dd4613ea121d1361cf8cf391e3dd13a73633f270c07f13d5
MD5 f5c54c358a30289c2bad3925b8963be5
BLAKE2b-256 a34b4a24e6ef70892598c6dd20dee0a396e8f95b0b31b742e049a325bec6b0b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.2-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: python-release.yml on jsinger67/scnr2

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

File details

Details for the file scnr2-0.5.2-cp311-cp311-win_amd64.whl.

File metadata

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

File hashes

Hashes for scnr2-0.5.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 cbc862d52b23985ec6422cfb3a41a44956a27e1cb31ef2f13813a8c73e504daf
MD5 f8e734a0b47cba3d568bc38b321240fb
BLAKE2b-256 7569c5208616867add61b8745a987b49e1d23ccec44939bcbb15bbb13d3a3e70

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.2-cp311-cp311-win_amd64.whl:

Publisher: python-release.yml on jsinger67/scnr2

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

File details

Details for the file scnr2-0.5.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for scnr2-0.5.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7773f33bc4064494d8a3d9a54b6d41804b83f19d47fb8e4e3df19d6522772e2c
MD5 d47f1bb00fdba24a2b1c9b42953ad571
BLAKE2b-256 77ecf978e812a81b56a5b5201dbdc3728804765920f79df3d67c31a4778ac5f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python-release.yml on jsinger67/scnr2

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

File details

Details for the file scnr2-0.5.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for scnr2-0.5.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 90879f6a139070fb51e436f5d39fcb150b75ebdb0836764c43b1cc3afcdc28ce
MD5 95dc7536653b47dbd2a2f90e73b0917d
BLAKE2b-256 a942429a00319bf93f42675408df41644db1f0e5647eb6196d59ba46ed301442

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: python-release.yml on jsinger67/scnr2

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

File details

Details for the file scnr2-0.5.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for scnr2-0.5.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d09de8e04fefe0c3c4b62d9d1e2169496c2ac99df6ea60f097b81947715fd785
MD5 8822a14c50d9cb608c986192b80f8dcd
BLAKE2b-256 b65a0e2a66d64162984da640254bed7070efd41efeec1a27a3116897f17c5b8f

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: python-release.yml on jsinger67/scnr2

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

File details

Details for the file scnr2-0.5.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for scnr2-0.5.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1bb62ecfff61399c0305d86fb6763f0ec40fab1be3cf8f813371fbd282cd7a35
MD5 daeac3e332c7c7510e436f016c18b9ce
BLAKE2b-256 8b06a398c6289d1f3f3735b4362efe7c15f166dc749a3926e31a3743d102e67f

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: python-release.yml on jsinger67/scnr2

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

File details

Details for the file scnr2-0.5.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for scnr2-0.5.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9cf22403ce77436a013e5caa27a0783a276e816001df7b7b3ac2989935fe0cd9
MD5 14472e47dd60a9bd0a3318528ef0d4dc
BLAKE2b-256 7d10dcbeeb8ddf5c6ceac25f3c0a6db904aa95d1a6a58504bbc0412f9d1e5159

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: python-release.yml on jsinger67/scnr2

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

File details

Details for the file scnr2-0.5.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for scnr2-0.5.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c3288df024ec15814be7cf214c08c61c3a3675a37e384085ab26714e012ddb42
MD5 3ec801ef4441716bcc09e7badd265dd9
BLAKE2b-256 0ad26e0aad80a35c6cbd06a92ee3e373c665b0aa9a01cd438199fa0cf39d16da

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: python-release.yml on jsinger67/scnr2

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

File details

Details for the file scnr2-0.5.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for scnr2-0.5.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 435bbf2cd036ea0bc8c7d986a94c9633ef93cdd057f12aeb7be211a72d3931a8
MD5 9da5db10bd1b778a5bff0a9dfb8f3773
BLAKE2b-256 3af65bc656cebc2d84b0611c0a6420ef62f3a32c02df3e31c5154cd827f92cb3

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.2-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: python-release.yml on jsinger67/scnr2

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

File details

Details for the file scnr2-0.5.2-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for scnr2-0.5.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 68e98ba0fa52cc3ff3e4267f726044c01d7ef23059904d3486a1cc2cbf4e7391
MD5 cb40ef52cb2308406f15fce074ef3875
BLAKE2b-256 e561ec4a3c6c15bb8252cc5b2b259e795fef89901c0cf7d085c16d7ff114e1a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.2-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: python-release.yml on jsinger67/scnr2

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

File details

Details for the file scnr2-0.5.2-cp310-cp310-win_amd64.whl.

File metadata

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

File hashes

Hashes for scnr2-0.5.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a84c9b87ed3793f779c55acc41426d9b0dfd48e5edf8ff80692ff8b44fcf1e24
MD5 63868e64036273bcf7053cd2ffa75579
BLAKE2b-256 6a8fabd2276dc0a950cf360066b7cc0a108aad22b8abcdc10f9158e199ff710a

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.2-cp310-cp310-win_amd64.whl:

Publisher: python-release.yml on jsinger67/scnr2

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

File details

Details for the file scnr2-0.5.2-cp310-cp310-win32.whl.

File metadata

  • Download URL: scnr2-0.5.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 535.2 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for scnr2-0.5.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 06740020c4920adfe4fc7052b7a1c008b686602c82af24a90d9940d4c519fb65
MD5 9fd5d20eec59c882858e09ace9510cc9
BLAKE2b-256 955c355c42c337e6220c57f5a901afff85ad0cd4f2c125ef200ed4ebde6b9fa2

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.2-cp310-cp310-win32.whl:

Publisher: python-release.yml on jsinger67/scnr2

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

File details

Details for the file scnr2-0.5.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for scnr2-0.5.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 62b19a0bb254b57fffe20a37dafafc13988c022441ba8f9f2a792bdb2be1a665
MD5 f63e734a5d4f5524b6ffef23c56eb1e6
BLAKE2b-256 bfc69c28f031d83788b3973301dfa42b092e0c69347df7f4b586018db090870f

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python-release.yml on jsinger67/scnr2

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

File details

Details for the file scnr2-0.5.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for scnr2-0.5.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 dfd5103bf68e22b02a3c5364d55c6df68cd8022d28ad858ede8fe2685920ec7e
MD5 7d3c8b568ad8bbaa8f0ffcc36537c377
BLAKE2b-256 51720a31a12aac7628d6d01a50b80a253e5fd20a17e6ed9198828989662edb6d

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: python-release.yml on jsinger67/scnr2

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

File details

Details for the file scnr2-0.5.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for scnr2-0.5.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 460243564a24dba49994f9403076900aca118d1cb67b6a12e275390de6f5e4a6
MD5 aca3fb1f4a56ae6ac3982631757f1d49
BLAKE2b-256 d9f1a076c89083fafeb47e14530301e100acf502d6c089123e87651758330a12

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: python-release.yml on jsinger67/scnr2

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

File details

Details for the file scnr2-0.5.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for scnr2-0.5.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b52142df8a0bd958e8c4d644fd413e9309cf80f187585479f22b51ab63d0132c
MD5 8b2e0b40741a0da48f989e326441923f
BLAKE2b-256 2d000ecca10b23086ba70e90b3d6c294011095b809dea35c0d993c516e09684c

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: python-release.yml on jsinger67/scnr2

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

File details

Details for the file scnr2-0.5.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for scnr2-0.5.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5486be8931a6e4588561f1a332ed217f764bcc2271f99b1a1b05f40bfe4946ed
MD5 d03da6bb8a177f85bd6c19bfd1767293
BLAKE2b-256 eacaa7f189de6fc9cdff312b9f400b793e78c0bd147c831b9b6c98b9419ceec0

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: python-release.yml on jsinger67/scnr2

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

File details

Details for the file scnr2-0.5.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for scnr2-0.5.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 900e47347e9e22482581c8b646b6858f268306b8493726e365adc8d8579c8df4
MD5 3e5a7d7e9c688a2de6990095b494a52a
BLAKE2b-256 fdbffda5cfce0591ff5bd74a19d3313942d10698c57b3541768d6627394709b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: python-release.yml on jsinger67/scnr2

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

File details

Details for the file scnr2-0.5.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for scnr2-0.5.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ffffe6a605872e4353560773e25d3889506c9880f7b8f42413efc23ad9ea65ae
MD5 4b6a8e24d70b375a779a2458405ab186
BLAKE2b-256 3b3237c0ead02abd8aaa5a55aff7437e29eb464451e4b48a012da320a243d3a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.2-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: python-release.yml on jsinger67/scnr2

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

File details

Details for the file scnr2-0.5.2-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for scnr2-0.5.2-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7fbe74ed8405b72b96ce7ec4eb39755af4cc77a09d13e68dbb776478fe0d954a
MD5 9bfb7c2ed79c4287ed3b2ec0690b7d74
BLAKE2b-256 ea4564389825a30ca1db48356f0dfffab32f91668688434b275cfc52da589f44

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.2-cp310-cp310-macosx_10_12_x86_64.whl:

Publisher: python-release.yml on jsinger67/scnr2

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

File details

Details for the file scnr2-0.5.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for scnr2-0.5.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 461960d56a7a44de33123e3b737f55cf4a7cd4e93be69eccb84c0946c4be072e
MD5 28d468b442f84eb1aafc5924a6234b1b
BLAKE2b-256 e92e62bb7acac51ace08a2df76c728cf4e6179006a958de9100cc06819e6299a

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python-release.yml on jsinger67/scnr2

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

File details

Details for the file scnr2-0.5.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for scnr2-0.5.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 27515b21b5d5852e04d23d14bc34941dac94cdc46e31c1d8e1ce9de65dc969cf
MD5 4214c062912f2b7a359bb5793609f934
BLAKE2b-256 49d50cdf9e849050f1924ab0a03b95884d6c943c73bcd3a773c9cadd015e5070

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: python-release.yml on jsinger67/scnr2

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

File details

Details for the file scnr2-0.5.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for scnr2-0.5.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b62d0fed68d5f2f3f07a9832df500e0fcca7934044daaaf43472066bbaf152a1
MD5 136ec6a93436ad0baf3f9d67e23d0a96
BLAKE2b-256 d70e3401ea3fafd2cb89c341cd915da588b2b833e37d6a1847667c592566dec0

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: python-release.yml on jsinger67/scnr2

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

File details

Details for the file scnr2-0.5.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for scnr2-0.5.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c1757a6bc4f32b151f2ee2f85cd4ba653161a7bb354e56e25fea1d162a0db05e
MD5 ec147aad09a41eb490dc9084dafc40b1
BLAKE2b-256 b57234f03476451aa946a0e984ac5db03cef8c4ed3ce67b20980120a75fa2a9a

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: python-release.yml on jsinger67/scnr2

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

File details

Details for the file scnr2-0.5.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for scnr2-0.5.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 00362d0b1e041c23021fa7d0a2486c27faaff954f6870f31c04ae00600c21acc
MD5 4c9c02fd6ccb1be3c0c4683a729ed9e2
BLAKE2b-256 c895ba75d1d7f65a6f3a719f4774ed0ef34be4633773e7e55a5270ef276d0a17

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: python-release.yml on jsinger67/scnr2

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

File details

Details for the file scnr2-0.5.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for scnr2-0.5.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 30512f76b1c2f1605739f543ba11c1e60798fe2943dc92d2b9c04c63e24dd625
MD5 ee0bcd722e66405739207fe5f37b41d2
BLAKE2b-256 3bf2fed41d60c4d94f35767a75b1405b49370b69179fdcb240d9c03d645184e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: python-release.yml on jsinger67/scnr2

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

File details

Details for the file scnr2-0.5.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for scnr2-0.5.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6f4e82d570b38d814dfd1b11e90b993fe10eb40fba8bdd78da4d450764143b3f
MD5 bad33974f308f9ec6d64db16eef5bb02
BLAKE2b-256 8117b50b05f5b8c4d6c7cf784476535dad0802221cc13db43484e24590d431d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python-release.yml on jsinger67/scnr2

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

File details

Details for the file scnr2-0.5.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for scnr2-0.5.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 30a0eff9cd93ca3f135311762ffa4d477672e5af5bf8cf074f27207f8a693afd
MD5 7090b4d4ab86fe7b85110f4d92723317
BLAKE2b-256 af9b8632dc851ed7a6de398b427cac109d525052347117dc57138d8e0e55e878

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: python-release.yml on jsinger67/scnr2

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

File details

Details for the file scnr2-0.5.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for scnr2-0.5.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 74714df5dcb15a2a53e34db9fd8b46936f2b5531c5ba1c086c532f5d26109806
MD5 9dc861de2420002aa396a67cee89c23f
BLAKE2b-256 cb4b2d571cc638a7062449fd8a7d98fc64bf52294f2bcac0a211b3a465a8840b

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: python-release.yml on jsinger67/scnr2

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

File details

Details for the file scnr2-0.5.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for scnr2-0.5.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9d3b1319d107f9620e66aa6ed6d11a892e5cd73916edb1d64d7a3db5be16d32e
MD5 e47a7c9fa2e8990b5d8185fa5c0a15d9
BLAKE2b-256 d37d84b7a37946da2577a97c9090b0379bf8e4229aabeafd549b84143d7bbee8

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: python-release.yml on jsinger67/scnr2

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

File details

Details for the file scnr2-0.5.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for scnr2-0.5.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 665ec5bd1c42f6257e236276af6f66022fbc1cd5025b106f3679475d7187842e
MD5 d102e3f0bd1c39d16a2257edf34c7821
BLAKE2b-256 3aac3a981fbfc64d3269eb36a7d713be504b3aaf95c74b2c20e9d2aaac9ba9af

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: python-release.yml on jsinger67/scnr2

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

File details

Details for the file scnr2-0.5.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for scnr2-0.5.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 263fe1a8c5c31921a98d2d9e430de03d2b45c6ad0568d82cc1524ceafb02da3a
MD5 c0e92e1c1eca7ab12d2d426ce99a8f63
BLAKE2b-256 84b691a676d44efddc9ffac46ff14b8be790913fd973592e52244d0e7fd75632

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: python-release.yml on jsinger67/scnr2

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