Skip to main content

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.

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.3.tar.gz (76.1 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.3-cp314-cp314-win_amd64.whl (583.1 kB view details)

Uploaded CPython 3.14Windows x86-64

scnr2-0.5.3-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.3-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

scnr2-0.5.3-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.3-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.3-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.3-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (3.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

scnr2-0.5.3-cp314-cp314-macosx_11_0_arm64.whl (655.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

scnr2-0.5.3-cp314-cp314-macosx_10_12_x86_64.whl (679.6 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

scnr2-0.5.3-cp313-cp313-win_amd64.whl (583.1 kB view details)

Uploaded CPython 3.13Windows x86-64

scnr2-0.5.3-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.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

scnr2-0.5.3-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.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

scnr2-0.5.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (3.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

scnr2-0.5.3-cp313-cp313-macosx_11_0_arm64.whl (654.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

scnr2-0.5.3-cp313-cp313-macosx_10_12_x86_64.whl (679.4 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

scnr2-0.5.3-cp312-cp312-win_amd64.whl (583.1 kB view details)

Uploaded CPython 3.12Windows x86-64

scnr2-0.5.3-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.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

scnr2-0.5.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

scnr2-0.5.3-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.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

scnr2-0.5.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (3.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

scnr2-0.5.3-cp312-cp312-macosx_11_0_arm64.whl (654.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

scnr2-0.5.3-cp312-cp312-macosx_10_12_x86_64.whl (679.1 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

scnr2-0.5.3-cp311-cp311-win_amd64.whl (585.4 kB view details)

Uploaded CPython 3.11Windows x86-64

scnr2-0.5.3-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.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

scnr2-0.5.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

scnr2-0.5.3-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.3-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.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (3.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

scnr2-0.5.3-cp311-cp311-macosx_11_0_arm64.whl (656.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

scnr2-0.5.3-cp311-cp311-macosx_10_12_x86_64.whl (678.0 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

scnr2-0.5.3-cp310-cp310-win_amd64.whl (585.2 kB view details)

Uploaded CPython 3.10Windows x86-64

scnr2-0.5.3-cp310-cp310-win32.whl (532.0 kB view details)

Uploaded CPython 3.10Windows x86

scnr2-0.5.3-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.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

scnr2-0.5.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

scnr2-0.5.3-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.3-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.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (3.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

scnr2-0.5.3-cp310-cp310-macosx_11_0_arm64.whl (656.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

scnr2-0.5.3-cp310-cp310-macosx_10_12_x86_64.whl (678.2 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

scnr2-0.5.3-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.3-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.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

scnr2-0.5.3-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.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

scnr2-0.5.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (3.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

scnr2-0.5.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

scnr2-0.5.3-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.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

scnr2-0.5.3-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.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

scnr2-0.5.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (3.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

File details

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

File metadata

  • Download URL: scnr2-0.5.3.tar.gz
  • Upload date:
  • Size: 76.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for scnr2-0.5.3.tar.gz
Algorithm Hash digest
SHA256 6c5a15e5f465d613a17cce2818151f482d97f5add228a32da5a91925dc93c21f
MD5 a23b87da73f327101f2961a8dd6faaee
BLAKE2b-256 f2e2f4838584209b852bc795f766cdd86d733f6433c1ff8d125341f903cc88f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.3.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.3-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: scnr2-0.5.3-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 583.1 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for scnr2-0.5.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 715df98c4920943964f7454b307d59cd497c9b2dd7b14a381e500d8bbbe47600
MD5 22336e818fd295372297af3d5de81e80
BLAKE2b-256 d892fafafbb174b337b609651444340da7b3d539e36843c493f908604c82b2c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.3-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.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for scnr2-0.5.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 95c4580d3f9fdd89ca764c6ceaa347f7c7937c9c53e01abb5b8db598ad89b3e3
MD5 c98a6f6a3b29701bc736ee3ac06015c3
BLAKE2b-256 a1516170089a42340e9ddecf62008c010b0d36b8bfa7d20b51f5874ec5f1249d

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.3-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.3-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for scnr2-0.5.3-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c641237890ac7a66ff44f748321b74613f9d7ea95c7957488bde71cf5c48458d
MD5 d2d0745ff841ef771421fc4fbcd6172f
BLAKE2b-256 2520afd5fcb98e5f6640a9910837c220a042d2d61ae2af4c28b40f1152a2e3d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.3-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.3-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for scnr2-0.5.3-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1899820e7c1f089cdcc17c711c9d66188e42980c33c1facbdca7a14ee11571ea
MD5 eac44e3497bf76735788779bea52adaf
BLAKE2b-256 33d61d00afcc1a780d17d389d7a1fa2241b3fc7d0c1db7f3741afd0a96a7eeb9

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.3-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.3-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for scnr2-0.5.3-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 77978104b42a156e9149a7f6727b9be0380b6ad892700cfcc4b7e0181d27b489
MD5 066124fcb6104a07ba22f60da7a84ff5
BLAKE2b-256 76484387fcce073ff497a7deb31a61d536bb7736989cd5f700a393f8dad5fa60

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.3-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.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for scnr2-0.5.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6ce08477e88d3c3b9710f040853f431dc5aff3a2f1601d269bc73691e82f2a83
MD5 57f8e66a7e5e0543fc523b4c6a96099a
BLAKE2b-256 7fb22c456da8b5684707e860bfbdc1811a3c5725679144aed982ae5ddb88edec

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.3-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.3-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for scnr2-0.5.3-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 71d65afa660ffaac0d53b05d2b8bbce0d86dbdb2e8079ad3e9b689870a5122fb
MD5 5374e11280095a39d402dfec8ee9310f
BLAKE2b-256 a329b01222fde5536dbb9ee6c92184674b500f8f67aec39711b0f54b256e22f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.3-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.3-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for scnr2-0.5.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 22f521272ea7d56193a0a71612de794e298a814f53b60bdea3585e7224b7dabd
MD5 67c74ea65e347f49ec3eac49fcff7b51
BLAKE2b-256 26d1374abe5ca0ae000ff4962215833a87bb0b80aac1c8dad1c9dccee5330d60

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.3-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.3-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for scnr2-0.5.3-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 888cbc729e3b15a63ce1459f5f99a90050acfa538049690fb565ebb1002a15f8
MD5 9cff3a8dc593581e62430706c3b8c77a
BLAKE2b-256 dfa8aec411b377d2bea82ab3be4e12062d0ff140054d5172cae5673cd4b183b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.3-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.3-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: scnr2-0.5.3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 583.1 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for scnr2-0.5.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 44673d72f1b6c8225e05bfa50aed5e491c51a55c3d4fd7305ec716c260883b13
MD5 31400600799c300abbc6d8cab1caaab2
BLAKE2b-256 82476e09b9c0a46b81bf93250c2cde2376cd7b33de1ee6960587283b9082b073

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.3-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.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for scnr2-0.5.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1c2fa6e5a369fc38558c0e206df23e30af539f5f4f05fbaeb683cf7cec11c1eb
MD5 3a823172128d4bd51b61d9be95aa05d1
BLAKE2b-256 f562d0af5051be85de99f4ff84b6bb5900bff62f38941410deb0af908b5979ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.3-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.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for scnr2-0.5.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 32aa6d238ef240c9cf44b3c983a2d8dd6ef86607e52a0854de4cd456b1431a3a
MD5 0b2cdd14d864a7caf4c8866a5993cf33
BLAKE2b-256 b75fe024ba9ab90d3ed7931b581a387586b1b98858aa6d7f2e7aa894bdb5a2e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.3-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.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for scnr2-0.5.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b91db55db37b4daf36813b60cd758a308d5e4238881aeee4e0fe5dba45accffe
MD5 51b5f42ce0db1399eff3d4e72e67d61e
BLAKE2b-256 f42e4c44a549fe5d7a223d7c0e2d643458270a556ff17e8983c71d8f9e4d95e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.3-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.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for scnr2-0.5.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 32ebb6f8ce10e3f8e057ca178e01d1f6a262d1cfef6570ebd1a99cc9b785aff3
MD5 d5e1e8f86567e9f6851bfb5441dc9a42
BLAKE2b-256 0eff29e39664dbbd12a886ff9c4ece74119866c8ef57a4c6f7fad3be7a199294

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.3-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.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for scnr2-0.5.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 beda49eb4d39c52383456b19bafbe1062d51b29af462306cb113d8e044dac439
MD5 96189a6e991efd9578bb962b147e41d0
BLAKE2b-256 725852b06b1a8281f6b997d0e6ab1b16cb1d1e1c1dad2f90738d7182ebf6395e

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.3-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.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for scnr2-0.5.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 bc96f74b05fb593e5af16027f019b91186654ce87b8e859f7e65bef10e0fd4a6
MD5 29493ea40d2e610b7370920c9a16b1a0
BLAKE2b-256 34b6491f6c8154e8d87ab6a08947a82ef2f10d739db916d7fc147171e8072c1f

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.3-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.3-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for scnr2-0.5.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c8da94da78a32e69b20b0015baabead5c5c13634125a1175a0e9c5eaf11ac878
MD5 a560ac4ad8b1939b8fd9d769778680f3
BLAKE2b-256 d9ce2e678fce86e3121ec67eb45e38bb48bd94d9ffedc1b7d8890cc7a7bec38f

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.3-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.3-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for scnr2-0.5.3-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 99e44a2f41cab551f683cdab859f409ac22f7d12c51444a3f989ee763323014e
MD5 4182ee9e9943e65062a7c814bbdc8572
BLAKE2b-256 664951fa075540ef691c779470cf371ad702c96cbecb419c1543ea0dcf1574d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.3-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.3-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: scnr2-0.5.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 583.1 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for scnr2-0.5.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 08088d37a5d5ca1f014d03fb89480a59f95fee0d39b9de4dda59a9dfb096be9e
MD5 752c842db7bb663f34e125333764e31a
BLAKE2b-256 7fbbb837b47beaeae7482fb71d96dbcb681a3f3b44cfc4fbff2204ce6c49c499

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.3-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.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for scnr2-0.5.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bbb5a2e17a497d5c750b9d0f8fd3825b3a0a9b2fba0fd169d1836e184c39fe59
MD5 89cdf7e7514699441914cac2c45b9cb2
BLAKE2b-256 4e5689bb3b9449998a5bc0dd31bbde7dd4f293763a96d89e760040054134c439

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.3-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.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for scnr2-0.5.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 95621d8044db4fbee00db23d64efeea9b4648a6134701aa43c0eeff8a531bf24
MD5 ebd17b1cb217b6aad4d2d00115a8ae43
BLAKE2b-256 a96f366e89a23b0e758a01435c18e7408d4396bdaf01e63fee4ae8a7b2e11b58

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.3-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.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for scnr2-0.5.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f611f0d9cba5c1596426fcbad64a69c118a48c7edbc56489751baff3235d9ed8
MD5 1dbf834e886b4d6d051a16d962a77331
BLAKE2b-256 d4c1333ea5dc3990eba498a6b04683c836326da845c4a122e39d019a7ad1a8eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.3-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.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for scnr2-0.5.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1d81351cbf85181e1a44481a0549d5d48e7c26984270a347796e9d327223d550
MD5 ac9783cb5b81a93b88a5f4bcad2f3182
BLAKE2b-256 fc1dcda26048a90b751a30d8eec7c6e3783f45d18d49d7d7ccda15bd3e31c0a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.3-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.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for scnr2-0.5.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 10c592c3ad95ebfd676d7d939668cd620505e5ef450ba359a87e0822e545eeaf
MD5 f4180889290b5d91fe44475a35d6f987
BLAKE2b-256 779c1602f1f7b2590ae10246d16685f4cd5bf8a63900fb390c676be7a031e425

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.3-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.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for scnr2-0.5.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7a4f1b93a188da00e1870ed71ae18a220c8397381188e648542cc328a702f72b
MD5 f24b92afb5d5e51f141145325119117b
BLAKE2b-256 9ec1b032902d683be361235c4348b630eeef03155420858b65b311b5bda1d363

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.3-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.3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for scnr2-0.5.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 44f99daa394dd0af1afddeaa57b9fadef7a93bed8ac3aeb1d80b771fa4a303de
MD5 0ed52b97bda3db961f1b4f0fb5535f77
BLAKE2b-256 291a4b3ba3fe10eb2ce85db8fdf4851c7ca6d2516640e01b703ce14807ff6c54

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.3-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.3-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for scnr2-0.5.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5c4026fa40fcf443d34ee1871732d520bdebf5280015e99b479922b431658434
MD5 d53a4bd541c538da8349d6e7d3687230
BLAKE2b-256 b64e9faef86bbe66c6653033afff545bdf15136a0aee52a35d6b41db89301e85

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.3-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.3-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: scnr2-0.5.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 585.4 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for scnr2-0.5.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 52ef214489afd74c0b90060569b2619fb22f21d06ef45a708900e99f3460d144
MD5 0b4ded705825069f4cdfba40775b6312
BLAKE2b-256 45a67e3cd4d5f9887e2f9ee7d7c645143b5c1d0384e590daa607ac396ee5672b

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.3-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.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for scnr2-0.5.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7fae4b6042bcae96c0d63d3cc58cf276ece34e0f416a4d95c00183b7e455802d
MD5 8697b85e7ab163fdd9a70570fc977bef
BLAKE2b-256 363a324fc867419ef6a1f15ae89c42e663aead216f14e9a3ab95be414ae25fac

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.3-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.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for scnr2-0.5.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e0c3b3b90ab2b50ea2a890ab0077934c1cf3fc8103793b8d943e12ae699063a1
MD5 668519800d6ea026965be7366b84faae
BLAKE2b-256 15713ac73f1b0682d321269f3aed10ae021e2e3f21be15a8f776f0923d8add1a

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.3-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.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for scnr2-0.5.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 24a30a13adfa556f063bb724e10387dcc49de2e288ed24b9ef8136bf61bb724f
MD5 3fae30f72feecf61a9edd1ed5db93043
BLAKE2b-256 21d4541138b3a69ae4d59b52fd3bbc7e9e40dc1db14d9cc7c66c044f4887e956

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.3-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.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for scnr2-0.5.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f7594700bcd5f527663bad538988e7786ab88d2b3fab7b7ab7c699a0cf2de1e0
MD5 d8cd905e64f0feede9955b1eaa5519ce
BLAKE2b-256 c5473c354cbae68f061217c58430b2de5f7ad3f21eefefdf911ff1f85bd901b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.3-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.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for scnr2-0.5.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 908855bf86dd3c2d0cc43056e67b3d7dc1b183d14cbe3969efbc9498c73ffdff
MD5 d33288ebdaa500141dfc1ac46b3c1b2a
BLAKE2b-256 887403ac33e92b42a49afbb5c72c10cc0f68cf7ecce038ecf3c6b19dda64aff1

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.3-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.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for scnr2-0.5.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 06bc916a15c2dd895902ef44054d6125e26cff6c8009e0d42763f47cc7a88995
MD5 6b3b39012089306c5add4bc235a17315
BLAKE2b-256 319779f378f89702ee012f611c656fbb47eb2e9702d8c77cb5bdf86679a7b27a

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.3-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.3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for scnr2-0.5.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b9e1cfde790370b9287f062344e5cb3da4d7fa51d204b09065511bf88e65659f
MD5 7fda45a5b5c8f496e4a644b2eb0cbcf1
BLAKE2b-256 6e9abde4f83523b654ef244157d9a8dc26bc3630206df2541200d82083a28cda

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.3-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.3-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for scnr2-0.5.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 82a614624134d52c5edac5d0669dbe6f337ff6d4e0093f5eb6ecf7579afc8c0c
MD5 bacc9df7be91daebb922cebff0c11e49
BLAKE2b-256 345cc23759a4c8c91da4bf537cf95f518becb16733436ceb2b4ce9718b9cf913

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.3-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.3-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: scnr2-0.5.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 585.2 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for scnr2-0.5.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3b9cd535ca03b42316582af2f83d63b4061ce706e0cbb09e5a702a873278079b
MD5 c6874b7250d868aaa06d92c43430ad0c
BLAKE2b-256 e420075dffa0aafdb3be5f389b321c176448fba34285ded8de1d4d23ed51b953

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.3-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.3-cp310-cp310-win32.whl.

File metadata

  • Download URL: scnr2-0.5.3-cp310-cp310-win32.whl
  • Upload date:
  • Size: 532.0 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for scnr2-0.5.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 cf7d7fbe8c6d6e930c7b5dcb1f1df1f302fda4f10fd7ecbd6334a663f948f6c1
MD5 01998a107d4f953ac41d185da772bd9a
BLAKE2b-256 9e3a1800d46eb15e4c2e5a5bbf2caa29fd0393fbffe8da88507845f084460e96

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.3-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.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for scnr2-0.5.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 509f939f5e33303e9f32cd7d7410bc1938a74049318e70707c3e8eb5c609dfe4
MD5 6b1088d7e68027d92676b6947a503ccb
BLAKE2b-256 53200c00268ef7f48e21fc3671c12c2ea96ce227b056971af71390a16c35b207

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.3-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.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for scnr2-0.5.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 278f829bf4b89a4003d2a8a5c7d2025cd2ae3897c5f2c320b5fc6080e727fcd9
MD5 85bb5a23f56f71f2be6688c8c6cb541f
BLAKE2b-256 e0dbc041fda42cc7cef93aacb6b8e1214c2d1c32270e861739840c7cbf7c3cec

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.3-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.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for scnr2-0.5.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 31f13c692c4942aea6d4dbf3f72143204e23761f1aa874bc36b26f6c8bf0fe7e
MD5 128dbf49408c1bec5477ee0a7dae90b9
BLAKE2b-256 360ca914e03fa67c6c2d20b099332fad7ca7b5869ac5a22ab0ac4abd09f1494d

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.3-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.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for scnr2-0.5.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c8eb11b7466298e8fb9ef02daca47acc5e2d51a7a360cb802d2aa78787153ed8
MD5 01825c30b64205d558a8a832ebe530b2
BLAKE2b-256 4e56d9e8e4dbcfcb7cddedb5089a8ac74436d6eef040c1afc3f3765f832a54e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.3-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.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for scnr2-0.5.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 df1e7931eadc4b39f9af633630ff79a8f09f9e508c26b063a1ce78517d92f61d
MD5 0074762af40c1861082529429e46033d
BLAKE2b-256 f38a0e74c25e7bb898aa34155b062058a945d729ddeee11985bf10abfc0af6f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.3-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.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for scnr2-0.5.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 aa38406872a30fb3e8cbc2b34a4a8415f979adb5d6b580ee79f83c564e537d4a
MD5 45c437d41a16bf37ad7bfa2daf7467e4
BLAKE2b-256 2fee03dfbc8d2ececa64fd16b197634e618afa5358ef2539323f5c15469774a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.3-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.3-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for scnr2-0.5.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 552ad5d0fe9cdcc347d41c1daae6dd1b54367ac09258fe966cad6edec780fa87
MD5 a8ca85f5b621b7fd5ad9a9296610089d
BLAKE2b-256 dae9cfdcc98ffc9c1cabd1190405521de90af688b03bf350e169e1e70b42bb86

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.3-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.3-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for scnr2-0.5.3-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3baf412cd2fd264ab76ecbe0fd49663effbdd43f2f53732f01041f3f34bdd833
MD5 f15727a73a181a523fbc49b0686e2c47
BLAKE2b-256 d5bde6694bcb62c00c3c1efb734e55da30b5c7e135ec5bc73b7a840c1f4d261b

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.3-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.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for scnr2-0.5.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 453d4bcda4bf0aea1d222290086ba5d8e1a5f193feedde3da65178ebb3cc871f
MD5 edd7e782c211f95953ee80908586a16a
BLAKE2b-256 aacf8f7408a4db9845629920828f1b7cef0e6826c6a9feedd12271ef6a586117

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.3-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.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for scnr2-0.5.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b59617fa317126ec3a1cd34c17b2e64bc171147f29f166c80d15fdf9ff1016ec
MD5 251c6d04520808f162111a9a5435b556
BLAKE2b-256 3efd15ae7c6f70e600a408ea82646cdf2e7063821d572c9e17d13ff4a76db87f

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.3-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.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for scnr2-0.5.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fe370ebe05a95f5c3bae83a3a1d6d5e88f7a14bd1b913d73c34974257b35e281
MD5 13181725de11aab785a5264ab5b2189b
BLAKE2b-256 477e4451a4e658fd14d6f803f09d95f178ff8790c96fc08bd6db8ffd0833680e

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.3-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.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for scnr2-0.5.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3d1a126f0b2499f31f73f04177fd7c6c940fa2a3b90999e5de3d833cb5399c8a
MD5 0e7f3e89375f910333c81ad75d2162f0
BLAKE2b-256 4d340cb52e9b94ae42927a42ddbef99e75a1d07bf17c8b7fbcdef5c2529c2365

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.3-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.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for scnr2-0.5.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 68690e8311900076e12b0f5a9c1269673513485648f553c97dc48e0fda08bb8f
MD5 57174453bee412a7fb3a6f4a9b119000
BLAKE2b-256 4429a5e86447ce6bf3963ffecbd9cd993c433e596640d09f9420d0802acedaa4

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.3-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.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for scnr2-0.5.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3e327decb92c96af7bbb6cf94245efc3eef825917eeecb658b4815b12b32e214
MD5 a4e979ef7faeb0e5d0cc8c3b04f987c7
BLAKE2b-256 c1a2076aab77ce0f1d9447a9c22c01ed6ef81724dfa6b92963f6feefe27eaa1a

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.3-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.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for scnr2-0.5.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 13ff855204ce3e833dfb7185b8eeb34f0a018df0bd846a0b29b590ec608131a3
MD5 0fedeb9f4e36076a9c822f5b016f3a60
BLAKE2b-256 f5746104f9ead2604d0a91b637e0d11908c1b847bb84454e83a9690f3695b4b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.3-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.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for scnr2-0.5.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 de18a3129ba80998f29c550676d7eb27d85025e2708ab093dd3fca821898cdf4
MD5 b0864c79332069c02619e7302746bc7f
BLAKE2b-256 03eeb5f9ece14854348a6bdf993589eabbef20bd2bce87b2fdb432761a629898

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.3-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.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for scnr2-0.5.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d2b6f996d2e353c606b24f399065f7d0e827061cf141cc52533d26f7903dab0c
MD5 f7280680534a85471782effd6423e438
BLAKE2b-256 675496f5a33947aea8c00bf036594ad65b5452a6d60700b3a2dd4190703dffba

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.3-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.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for scnr2-0.5.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a983b275782b3cfb9cc8c693da23e1b4cf2e021769eeb023786a087d3b0448a8
MD5 4e6c9f273e94ae445aeb6a3d9374345a
BLAKE2b-256 1499af43e168c07cb1e062158a6f347d8cd6641fbcc8fa8b3b9c37a6ffb10fcb

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.3-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.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for scnr2-0.5.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5ae5277e437a818972ee62a8f2e6bd6ffd43c3dcca4fce98193c943a35f328f1
MD5 5b9f591d456c30f2c9f3c7af5acb44e2
BLAKE2b-256 2b3c622b99d21e44ef75d76857f4a77075293909e5f9b7033c61b5776487b211

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.3-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.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for scnr2-0.5.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 bc7e27496f88fd27b254f3a156106b59ee06dcffb927f984d9b9ad0cc63df27e
MD5 4badc108ab26f1532294731cec7c4c78
BLAKE2b-256 54b661ae3aeddc8c01b563152fc6779235d175e2d36a5ba21d7d035d28f3c53e

See more details on using hashes here.

Provenance

The following attestation bundles were made for scnr2-0.5.3-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.

Release history Release notifications | RSS feed

This release

0.5.3 This release

59 files

0.5.2

73 files

0.5.1

73 files

0.5.0

73 files

0.4.0

73 files

0.3.3

73 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page