Skip to main content

A case conversion library with Unicode support

Project description

anycase

PyPI version Build Status

💼 A case conversion library for Python.

Features

  • Automatic case detection, no need to specify the input case
  • Extremely fast, written in Rust ✨
  • Support for Unicode characters
  • Support for providing acronyms in title case

🚀 Getting started

Install using

pip install py-anycase

Now convert a string using the relevant function.

import anycase

anycase.to_snake("XMLHttpRequest") # returns "xml_http_request"

🤸 Usage

The py-anycase package provides a set of functions to convert strings between different case styles. The following cases are available.

Function Output
anycase.to_camel(s) camelCase
anycase.to_pascal(s) PascalCase
anycase.to_snake(s) snake_case
anycase.to_screaming_snake(s) SCREAMING_SNAKE_CASE
anycase.to_kebab(s) kebab-case
anycase.to_screaming_kebab(s) SCREAMING-KEBAB-CASE
anycase.to_train(s) Train-Case
anycase.to_lower(s) lower case
anycase.to_title(s) Title Case
anycase.to_upper(s) UPPER CASE

Additionally, functions where the "word function" is "title" accept an optional acronyms argument, which is a mapping of lowercase words to their output. For example:

>>> anycase.to_pascal("xml_http_request", acronyms={"xml": "XML"})
'XMLHttpRequest'
>>> anycase.to_pascal("xml_http_request", acronyms={"xml": "XML", "http": "HTTP"})
'XMLHTTPRequest'

How does it work?

This implementation divides the input string into words and applies a "word function" to each word and calls a "delimiter function" for each word boundary (the space between words).

Word boundaries are defined as follows:

  • A set of consecutive non-letter/number/symbol e.g. foo _bar is two words foo and bar.
  • A transition from a lowercase letter to an uppercase letter e.g. fooBar is two words foo and Bar.
  • The second last uppercase letter in a word with multiple uppercase letters e.g. FOOBar is two words FOO and Bar.

Benchmarks

A simple benchmark against various other libraries is provided in ./benches. The following table shows the results when run on my Macbook M2 Max.

Library Min (µs) Max (µs) Mean (µs)
py-anycase 26.666 176.834 30.909
pyheck 51.000 131.416 53.565
pure python 63.583 108.125 65.075
re 81.916 171.000 87.856
stringcase 99.250 222.292 102.197
pydantic.alias_generators 182.000 304.458 189.063
inflection 229.750 360.792 239.153
caseconversion 1,430.042 1,838.375 1,559.019

License

This project is distributed under the terms of both the MIT license and the Apache License (Version 2.0).

See LICENSE-APACHE and LICENSE-MIT for details.

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

py_anycase-0.1.0.tar.gz (18.7 kB view details)

Uploaded Source

Built Distributions

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

py_anycase-0.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (437.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

py_anycase-0.1.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (463.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

py_anycase-0.1.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (536.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

py_anycase-0.1.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (447.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

py_anycase-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (267.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

py_anycase-0.1.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (307.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

py_anycase-0.1.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (324.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

py_anycase-0.1.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (273.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

py_anycase-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (268.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

py_anycase-0.1.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (282.6 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

py_anycase-0.1.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (437.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

py_anycase-0.1.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl (463.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

py_anycase-0.1.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (536.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

py_anycase-0.1.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (447.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

py_anycase-0.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (267.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

py_anycase-0.1.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (307.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

py_anycase-0.1.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (324.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

py_anycase-0.1.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (273.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

py_anycase-0.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (269.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

py_anycase-0.1.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (282.7 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

py_anycase-0.1.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (438.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

py_anycase-0.1.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl (463.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

py_anycase-0.1.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (536.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

py_anycase-0.1.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (448.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

py_anycase-0.1.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (307.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

py_anycase-0.1.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (325.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

py_anycase-0.1.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (273.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

py_anycase-0.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (269.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

py_anycase-0.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl (435.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

py_anycase-0.1.0-cp313-cp313t-musllinux_1_2_i686.whl (461.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

py_anycase-0.1.0-cp313-cp313t-musllinux_1_2_armv7l.whl (534.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

py_anycase-0.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl (445.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

py_anycase-0.1.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (304.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

py_anycase-0.1.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (322.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

py_anycase-0.1.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (271.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

py_anycase-0.1.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (267.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

py_anycase-0.1.0-cp313-cp313-win_amd64.whl (133.1 kB view details)

Uploaded CPython 3.13Windows x86-64

py_anycase-0.1.0-cp313-cp313-win32.whl (128.4 kB view details)

Uploaded CPython 3.13Windows x86

py_anycase-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl (435.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

py_anycase-0.1.0-cp313-cp313-musllinux_1_2_i686.whl (461.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

py_anycase-0.1.0-cp313-cp313-musllinux_1_2_armv7l.whl (534.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

py_anycase-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl (445.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

py_anycase-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (265.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

py_anycase-0.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (304.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

py_anycase-0.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (323.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

py_anycase-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (271.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

py_anycase-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (267.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

py_anycase-0.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (280.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

py_anycase-0.1.0-cp313-cp313-macosx_11_0_arm64.whl (233.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

py_anycase-0.1.0-cp312-cp312-win_amd64.whl (133.2 kB view details)

Uploaded CPython 3.12Windows x86-64

py_anycase-0.1.0-cp312-cp312-win32.whl (128.5 kB view details)

Uploaded CPython 3.12Windows x86

py_anycase-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl (435.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

py_anycase-0.1.0-cp312-cp312-musllinux_1_2_i686.whl (461.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

py_anycase-0.1.0-cp312-cp312-musllinux_1_2_armv7l.whl (534.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

py_anycase-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl (445.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

py_anycase-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (265.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

py_anycase-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (304.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

py_anycase-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (323.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

py_anycase-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (271.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

py_anycase-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (267.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

py_anycase-0.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (280.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

py_anycase-0.1.0-cp312-cp312-macosx_11_0_arm64.whl (233.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

py_anycase-0.1.0-cp311-cp311-win_amd64.whl (133.4 kB view details)

Uploaded CPython 3.11Windows x86-64

py_anycase-0.1.0-cp311-cp311-win32.whl (129.1 kB view details)

Uploaded CPython 3.11Windows x86

py_anycase-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl (436.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

py_anycase-0.1.0-cp311-cp311-musllinux_1_2_i686.whl (462.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

py_anycase-0.1.0-cp311-cp311-musllinux_1_2_armv7l.whl (535.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

py_anycase-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl (446.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

py_anycase-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (266.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

py_anycase-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (306.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

py_anycase-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (323.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

py_anycase-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (273.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

py_anycase-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (268.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

py_anycase-0.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (281.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

py_anycase-0.1.0-cp311-cp311-macosx_11_0_arm64.whl (236.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

py_anycase-0.1.0-cp310-cp310-win_amd64.whl (133.5 kB view details)

Uploaded CPython 3.10Windows x86-64

py_anycase-0.1.0-cp310-cp310-win32.whl (129.2 kB view details)

Uploaded CPython 3.10Windows x86

py_anycase-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl (437.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

py_anycase-0.1.0-cp310-cp310-musllinux_1_2_i686.whl (463.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

py_anycase-0.1.0-cp310-cp310-musllinux_1_2_armv7l.whl (536.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

py_anycase-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl (446.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

py_anycase-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (266.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

py_anycase-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (306.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

py_anycase-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (323.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

py_anycase-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (273.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

py_anycase-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (268.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

py_anycase-0.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (282.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

py_anycase-0.1.0-cp39-cp39-win_amd64.whl (133.6 kB view details)

Uploaded CPython 3.9Windows x86-64

py_anycase-0.1.0-cp39-cp39-win32.whl (129.2 kB view details)

Uploaded CPython 3.9Windows x86

py_anycase-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl (437.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

py_anycase-0.1.0-cp39-cp39-musllinux_1_2_i686.whl (463.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

py_anycase-0.1.0-cp39-cp39-musllinux_1_2_armv7l.whl (536.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

py_anycase-0.1.0-cp39-cp39-musllinux_1_2_aarch64.whl (447.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

py_anycase-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (267.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

py_anycase-0.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (306.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

py_anycase-0.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (324.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

py_anycase-0.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (273.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

py_anycase-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (268.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

py_anycase-0.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (282.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

py_anycase-0.1.0-cp38-cp38-win_amd64.whl (133.5 kB view details)

Uploaded CPython 3.8Windows x86-64

py_anycase-0.1.0-cp38-cp38-win32.whl (129.0 kB view details)

Uploaded CPython 3.8Windows x86

py_anycase-0.1.0-cp38-cp38-musllinux_1_2_x86_64.whl (437.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

py_anycase-0.1.0-cp38-cp38-musllinux_1_2_i686.whl (462.9 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

py_anycase-0.1.0-cp38-cp38-musllinux_1_2_armv7l.whl (535.9 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

py_anycase-0.1.0-cp38-cp38-musllinux_1_2_aarch64.whl (447.1 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

py_anycase-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (266.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

py_anycase-0.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (306.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

py_anycase-0.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (324.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

py_anycase-0.1.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (273.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

py_anycase-0.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (268.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

py_anycase-0.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (281.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

py_anycase-0.1.0-cp37-cp37m-musllinux_1_2_x86_64.whl (437.3 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ x86-64

py_anycase-0.1.0-cp37-cp37m-musllinux_1_2_i686.whl (462.9 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ i686

py_anycase-0.1.0-cp37-cp37m-musllinux_1_2_armv7l.whl (535.9 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ ARMv7l

py_anycase-0.1.0-cp37-cp37m-musllinux_1_2_aarch64.whl (447.1 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ ARM64

py_anycase-0.1.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (266.7 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

py_anycase-0.1.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (306.2 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ s390x

py_anycase-0.1.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (324.1 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ppc64le

py_anycase-0.1.0-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (273.1 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARMv7l

py_anycase-0.1.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (268.8 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

py_anycase-0.1.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl (281.7 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.5+ i686

File details

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

File metadata

  • Download URL: py_anycase-0.1.0.tar.gz
  • Upload date:
  • Size: 18.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for py_anycase-0.1.0.tar.gz
Algorithm Hash digest
SHA256 51092086f50bdd5c63c32a82bf64540568f4f61b53396cbda3f25072a2a15e99
MD5 209018e3777a12f5d42deb2a6ce6f310
BLAKE2b-256 4007caa4c964c1ba9d27680435765f2481abdb5c60c43b1d2f269f16cb18104b

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cf41aa5792f1a87f629ce074e2feb8e4aa6f5c4648a7a50207f4ff53e43c0ce5
MD5 95f336d750f402ab9f6e840ff5cdb677
BLAKE2b-256 818e878717cff8aebca0620228172d540199479e8d6319007bac2a6a86f4cbd3

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9e00f2a416678b70d9419d0edf1b891ebc4076678bdd2812a01c6766a494f5d6
MD5 69a0b3c7ea79bc6b2562e42df6ddc27f
BLAKE2b-256 f386f1ddff4f35b6e065e6c198cdef284a74eb0be5689a275543d9869a8d346d

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 494cc4b5933e59458dbd517f9e6d83c1e05474c34be412f0ea582d263a3cc71c
MD5 da7ba329dc5f5c210a86e35845980060
BLAKE2b-256 cd850b2ee9bae51b3900578f5b8da37d8979e02955bba4df54f3035cffbeeaab

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4305bf8a38e330ebf10d2ab7fc172c450fd5bb2c28e31377191719e6cd280266
MD5 29f734b789809ec752b47ea0fad720b9
BLAKE2b-256 ccca39a29f70c8f64950bc92fe78620bbb10d507b7909c25c95f0bbd74cbe462

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 50909caac91fc2cc242569ba28a7521d785417eb453b4170c23ecc161af67db9
MD5 edb1529bd43ff4f03793ac59755c0ed3
BLAKE2b-256 8ed524f700e89adae289246537c356fb2fbf39a2f525072857b6170117a3c1e6

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 77fce84c081d93c4f511841e1d9fceca8e7df4ba77d2867615f571a2a4abc6a1
MD5 2fc7cc23eb35065a7c992c90bbffffa5
BLAKE2b-256 21e8f5f97217d27e7413a8d6864f9e8045bc43e79f4aa673fd821e366b1addfc

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1bbc9e75cef7d9a6b9a0613a385e3dcaf7a0e325cd6605062ffaac8b15a943fe
MD5 f4806922d974b274011ab26baed10d24
BLAKE2b-256 49096dc24dd41bd069d96d12a457368d533e03275acef762b3e61c06bbb1e40c

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3068b116ce75bb9a1bb8299ba6abc6367266de6c6ed7f4a189b76417d89e170d
MD5 183a18208054a2b6b8fd9f010548c54d
BLAKE2b-256 7100c2f6882b7e6a345a492679eb7b75b13df1b8547935a06de90d572e57fdb7

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 77cd4b8a727e359e61b3b3b02a70ae69556233b4b709802e0d808c9d957fb809
MD5 109d5e2a4ffb42826ddcacd4a252b5ac
BLAKE2b-256 3ed32d19df6474422b8d8955579a1410ec00282b2372d8ba3ab9b7fc1b832d3d

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0e13e972e7407afafcdbc48cff6e77f5e7a468e3eeccc98ac5cfa7e8f35b4f67
MD5 25cf277843dc923351e2e6eeec8248ea
BLAKE2b-256 c8458344eb721e53358c7c43ae756259cadcda7b129d422b5f12ec330759a1b9

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d1732af4275cc8231e3be492648a0dd4624d5c8ca32fad133665e160be71d586
MD5 a598e9071cabf9186491b03ed4ac6e28
BLAKE2b-256 1a493bdefc5ee0edbe1abf8201c933b0dd82afa95d8bfdcb616aff30193f020d

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 32ce21222a49ec11e6815514bcb74708451f885bffe2753a7fecb43917e29dcc
MD5 2e9026ee0b688c5108569440f077dd90
BLAKE2b-256 0e094d27fd4af7151e79ac105c8d06d2fd4843288d468ccf7f14f069f51f102a

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fa31e2e088215db19f089c04bc63b9b302be4bf499aa4409d0c7dc1385dd4938
MD5 e77f757c814f819086dd7ae1e94e1902
BLAKE2b-256 57b4b05ed07b76b3477f7ce2d979f1634a24cedb2975ad2cd445439f5dff4325

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3f26df42be671982520233cfe7b1bae1b3abaaf98790309caec2e5ebdb0d7b7e
MD5 f0537876c1e6ac8fc4ce369cd0133d7d
BLAKE2b-256 26c46619b08c1bd07ac2555b22bfce5103f45c761ddf17dcb71aec7fe2f49296

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3155547c9d2a7af00e311df5a9cfb3c3eec314b60af6e3f7f15df6d05aca717d
MD5 e355d5d688ffcdee33570187e0b8c1ee
BLAKE2b-256 626ced7b1f422a11ad203cd26425e0777f5f0608e5c930e6053d3106bd05f1cd

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 70fb1eb217f234a797ddf863bcab060c4ed560dd9235f6896825200c478d5f3c
MD5 b2ff2e61b5aa74824a26f3be203b623b
BLAKE2b-256 04389d30b8ca2d6a0ae72beed39509d581a1aca48e2bd8ce50a6186af1b072b5

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6332286ce0e1437101b271cd4021222c86cb96ca870d55bfc3374b7be88d1287
MD5 eddd80d6a70e385d2c6c0d00d83de163
BLAKE2b-256 22d86b9e058b0f8851dd960b9db93effdd06bb5211cd6e9a32770965094953b2

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ec2504ecf7519670bc821a5bd9131d04c122c65641a8bc1f034975fa3783da3c
MD5 5ff04363fcb75fba1e13ea328a4cf5c0
BLAKE2b-256 177457e09960371c467365628945216d336a1dfbceba3407eb495bd4e8321979

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 358d6b212e0e5258df7c583a506c7ac7485ad47188448b10e05b6cd99352d00d
MD5 7aa633290e02d7d40e7e2c9aca8839f5
BLAKE2b-256 77458ac17ad9a909752ee0d3a35d219144513a908dd0db3c2fe808b89bce8bed

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 32fec8f570e212c289d7fc4647f795dbe9666ec2ffd1725ef1a84d2c5ec52a07
MD5 9b69b6344f9ae3ba0d8196a4c7ff4a81
BLAKE2b-256 05fccc05bce377650cc242707bfcbe9780434ad11069ef078405ef775c18f9d2

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c25c94ccea6f5155993656d303f43ccea251b248a4c1f04a1f0cf5c078f6242d
MD5 41a931ba2290767db3d2baa652ee7040
BLAKE2b-256 1432c7aa6c2b740145650f4dfb8c17729ed450f2cb1adc227175881f8ebca208

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 43ddbad53ce901b86f2e873c062f7d5e0e97c338e7c9658cbb55b673b7cb9ff8
MD5 285fdca88f2f6ab6d1535ed7cd8bb654
BLAKE2b-256 d7ae91d140cd52b0e2f98c27a833e810b9ca82b0694b8e7659708a581effd101

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 535d074515f8cfa138433d21040ffcfa75afff4b5d149f7da5b446150ab03b8f
MD5 651e45ac611757fe28bac77627d72afc
BLAKE2b-256 69d8be49bcaba4a9d2f2c89b32a4602d9eb88be5d132513be59594f17afc6ba3

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4214de6e752468f7a6f1b81f459c871b213a448e182d313e1423d688482a95ee
MD5 ea131059b00b2d226e0e3ea47d221891
BLAKE2b-256 e87b401f5b68221cca2b79bdefca8e4f942c325e3e9824bc4c49ca5fb7f00ae5

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 772688684037259129b8384ec0c9ccf063c6966bb1ddf6c3220d1fd2ecd62c04
MD5 32e6613dc4f7450030c288dd4a52eb41
BLAKE2b-256 35bd234bc1d7e31a6cd8d7b70b0f82fc7373dd6cdfb893901b66b07d31fef345

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 599c25cb6919f007613c124c1ef1611863402e8d7d02dc5db82681da72cd13cf
MD5 f5aca4ac8f4cd6b465bb63da3de60777
BLAKE2b-256 9944e5aa4dcc670e10da26669731c84d88335b3877d370d27f6239cae248752f

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 191af6064811d64ece337ba61b0c6c86b6c337ff0b23788e3693e372bb89a16d
MD5 dcddc6d694195684c9e7602817077576
BLAKE2b-256 7ec48c39fbe5702f677cba07faaca59fb5b15ac0d053ac3c0f8de0e1c835e174

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fff92e29b9845ba6a1248d741784c10a1a5c0a235c16eb07e75e17113a9c715e
MD5 f12980707568211c9a399be6f4ca3c79
BLAKE2b-256 dc1baacaa977e3ab2f747bf158e448f59e933c9ce9d62dd67941ffacac3f46c7

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a8aa469bd2216c911ddb3597afe150532757dcf4313bdbb68921fbc0340fc4fd
MD5 e5ab217233ee2d8ce45b73268eadbb02
BLAKE2b-256 94dd4a608f8c8fa53d7faf46f0fd82487793d8db574da3a94195c8f668a77685

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b4ae419dc6ed8d2216c757d94bbee04d91fa14fc25addac1d159c33e0a0b703a
MD5 38a2426bda944cb60583ddbc3fd90163
BLAKE2b-256 6ff7a7c38e4e379a207c9026bcdbd5577ef1453c060108b053dbd45a0049e5b1

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e455cc01157a9fc771d36bdf118e0f841fc2821522a6b16807729bf0fdabe879
MD5 44f060e98c0f577803e98c0157cc6684
BLAKE2b-256 4a04df09ce640e123ff7771076a2d37807f4274841d4081ae0bd527808cdaf51

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dda00c707b136e651c8b876a19ba0f4a0233b52391776a7ead5f5e215da2563a
MD5 f5c10bcf0471b417c53f27663c41d443
BLAKE2b-256 69209e62d69c3cdea777967ce39eef2ad7693bc0a6119ac65c87e2721e062c84

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 44b29af7ef5a04d70c42e8229a6cb6d56cc5edadd39db415183a79b4fe1ae033
MD5 1aa1a15d41b8b7ea24f5422845b7901a
BLAKE2b-256 ba588e043fcb75d7a54f48ffc6748f267882c654a1bed7fdf53f752b88f645fd

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7092c3360b153f2160b1cdcc075e400be0fe6e78c110bcda78a94a2433592e4a
MD5 903f3a4cd0438bc2f57b58c81e807a53
BLAKE2b-256 766e2f66b3388599dd06295c4b5e5a0a6ef2a7ea3dc8f022866e8ba3cfb57dec

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2749a1ce0e85fabbc9a7d97365e136af65fd35dd4eed134617222ab2a40a52b2
MD5 1406c3393b40ad1b22f5ce541ee40aaa
BLAKE2b-256 141775f064dcde068624ff6bb31565e6b506b6e3a3fa963fa3185fdf4595f6ea

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ccea7a72b8c81ca574da78bd53c6de9854db4b7d345b9f29b27392524cd10664
MD5 3dccb8f7c60bf4b257a757113c950c74
BLAKE2b-256 be1aa28c04e2060bc34cf92187b9de9bb875b1ad41dad4db00ca4b5896e28770

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_anycase-0.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 41e648c80151b3cf4aff471fc116c5dfce19beb5828bd058e05febd86558ead1
MD5 d052834e589a2be649f79ab1216d71eb
BLAKE2b-256 510e12c5e0ac454e3f21e6007e429f04bf694a6ba4d76f5eec3da8e8269ad5c9

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: py_anycase-0.1.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 128.4 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for py_anycase-0.1.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 c236815e77bfa387d51aeeafe451db58e7b154568f4ccfe73f393ca931bdcce3
MD5 ae4699544f58cee2914e2e4ae37284d6
BLAKE2b-256 cc2deb67ac6f4fd348304822e0621e40346832005a259d20afbca7dd4e306e2b

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2ddf921bbbfee9adfb5bf782f6f02367aa18c1cae0f2a616d82eb2050ee7e4bc
MD5 25a0355b0f7fecbd3fbbb9745f03e11c
BLAKE2b-256 eb41da6652ecc1a35f705b44c9248d42c9ba1f1a36d0347a821daad6391eb754

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 61e92f719b8740e59b3acbf5423ca7db1c457c969c1e4c8725d54334a3ab67a5
MD5 a1bb504133a5f61ef734c4e05ec4c20f
BLAKE2b-256 ef11d8706eb2b0eff72071b6bb338a9ce195a8b4a436b9aef78e4e97d0b34e4e

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d32b31cec5271a7d3da1acf99e02fa1a3e92dad421436e5c04263b99a8fa99b9
MD5 8866b7587c917d70a22a2ecddbd80199
BLAKE2b-256 e54be709c9d3b73e146b85d38944fef16e06a67a4d72d1206e1c74b89a64b2e9

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b1fc22ed7c431db956fa2c0ae3993f10cf35f18cfa33093e8ac1805bcdb1d392
MD5 845da47806a60bf76e9394a2cbb4c566
BLAKE2b-256 7e6a68010e1c55fcd3d424ef22b04c9818b031bef7c8ece0d333bb595c6ec089

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_anycase-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 697e26071fa9782188552f002cea6531772f3a5064e61d60c99adfc2127d3190
MD5 3d60af4844383dfe2ca12fe132e1883f
BLAKE2b-256 d3c82a8015b3981e03020bcde0321d2b353661bd406db58359f924baa53e4b58

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 417cc9e0478e13d9d11eb094626b0ad029b4030b0d179312c5a83ab9b5f7d61f
MD5 54fded7bf2ac434e3256d5ee8492c20a
BLAKE2b-256 0b0eda8803283021c322eade4447bd2462c31b601c137c9c0beff06af19717bf

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8855f1dfe087161853ecf133eaafd94b0f6cda9890fd9e5b35c1815a3fea5a15
MD5 f550f4610047edcb467fe060362789b9
BLAKE2b-256 90693479e570d1857093c9883c2c4f92803bf7fb067857003fee08d15483a3a0

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f038b4676b5a492bb9ae2575075728f4fa6638c2863fbf548e3c730a9e7e793c
MD5 c0d20ed5a9210c45f431f5c8507c4583
BLAKE2b-256 78b9797106c696e3bf13e0ecf17bec790d5712d4aa95899a038242793d08df64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_anycase-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 540f49441ce10113ba2a18a0e5071d31a55aac83917c7dec5e9e6b96da60d6f0
MD5 0d5f77b03e9b52b3ac45959f12df964f
BLAKE2b-256 88f66c235887fdd5e754ce6f3d3302bc7013cfa13627af30f15c4f0c7189cc48

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 89f7268e9a92c7f0127c8526288cbec7c862c81ea110a8c0f31d5f1eb4f08e1b
MD5 55ada2f7e580a465b7fde9e330d51b05
BLAKE2b-256 ea57992a62e5dc67997f89154a504df6642bef48324d46efcdba94bae8ab7d0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_anycase-0.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8940e6b9e2ebb55b91817c83ef553a445595b452cdecbc4b0296df4b8cd99664
MD5 1db8a9c6b67de7d95b0467946bea6edc
BLAKE2b-256 4269bd28f8f7f61e762f3d2bf05f4b462d7c1b930c3434406b858acaab540c69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_anycase-0.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7ef8f5596bc712dc29a37aa9aeb1ecd53ea642b023d7e8420a8451c0796110f0
MD5 076dc4ba903b9a14625328c789b73871
BLAKE2b-256 0829f3a36e4f7a13aa63f6926132c9d900b2b75becb6622ad29105bfd90704d1

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: py_anycase-0.1.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 128.5 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for py_anycase-0.1.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 48ef6e8f9a3558054e320f15d5a9374ca64c876e37d77f1804d5b372eaa13d54
MD5 3fce913c93b9e1a1548a23af0c66a921
BLAKE2b-256 d2660012f79f90a427cd1179429792b515a1491a4dff7b30df3cc571ad304e42

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3c58c84b1365dbe4e7e018d30bcb518ee5ea3e6a8b9e41ec7beba1a86f9d8576
MD5 db78efbc35a798ff7134739559828d83
BLAKE2b-256 599afa626e1d4bcaf190991d000279b4a932881b0f02147c4d1b109ae9b294fb

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d99339a821881fb4f61e6097d10c17c3ff187e32e0b03973cd8912124b5e1bba
MD5 96caf069217fa4edb514faa723b05541
BLAKE2b-256 b077bd2a8926d3fa17723551c60bc81d55c53769b8f0b4860147a42292e41aa2

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cb0fe1eabb6f50004aa04ef8c6affc2ca6dbe1f9f8b2731d95770455a3fd7fa9
MD5 fcde2fba6088ad28c15df6ed2ed9296f
BLAKE2b-256 739c1a8bf880cf25ed23a56e0a37f83aa87c34e95a3443fe408705325493da2b

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 430489fec144998c77515682dcc7e44c2bbbfc1b55484f91fd9fe670360265f3
MD5 e562baeca13a035b50c7fef87ffcd4c0
BLAKE2b-256 2936e22ad92928dea4aa9c5331bcaaa646352e4e1c971bc9d14cf58ab0a30f1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_anycase-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c60efe3b22c08299d3f42ba245bdfb1d2d631a2990cbec5192c7d0ecec6bca8d
MD5 5ab18b3530983bec007cf7bcbd7e1184
BLAKE2b-256 320665a707e9c9f393c0300054b2f7b24d2695c24635a94d40d05a531b9abbfa

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2ebafbf915d6af9f68f854b55f50e26b8cffed82a510f4f585e9aec742091a89
MD5 2e411ba75d6127916f2cf8ff853a9aac
BLAKE2b-256 573199af779f48f0f93b841f4ec386b65bfbd61c2ec8e55082bfbc77d60dfd3b

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 851757fb02648cfd9834d5d8059fd7da89cda9beecb905c6185fe3b33ff22491
MD5 f33619085f2c46e7d884b624d9da40e4
BLAKE2b-256 0875a0d1fa74c698ec4714d449039cf51a246cbdd5ca01802bd4ae12efe4ca2e

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5e516922ca4a0bd7708653ec919376930254088611f5906a4b3dd6cef87f3e83
MD5 0cf2a21d108d0be582775cba36ecdb34
BLAKE2b-256 4f7dffcce7728d19f4f15d844d3632e9248445048a9c3ed0fe410aabecc24962

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_anycase-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5e3852da4ebd4e72770508b48dfaf2dde415b218a4f28832b638718ebd3f75d4
MD5 5e66182947e7d34879225d0deb50f5a4
BLAKE2b-256 d9af2be551facd4b1a9f63295e1d08db1ffae4c16769c707e8335f9b869e5fcb

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a9e0244845bfef5d221559a033f25c177c38b492a462e8ccc79477c42517b6fd
MD5 ddd8b0ea231461d40c50425bf72a4a6a
BLAKE2b-256 c491bb7a7ec17d0ace8966963af946525e37f0096ef7e5a5f7d3879ad9d20d63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_anycase-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d63195020603128230e6bdf5559b9600836cf1a5062638b18713f969b24ee6a7
MD5 73d0f68f528a21e04966fb7f6866471d
BLAKE2b-256 3b31dcc4f0822f0e4edda55d616e93976d558520f9f747b98d5639309a954571

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_anycase-0.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 dc8ab2116840c8e825f24662b064d800f43e223a8f8beed443e98e50e5dc8a61
MD5 9e70ade7777ca9e34fb945e6ad16601a
BLAKE2b-256 406904343c45dd07f4b62b464e7cd1c874ec7ddf33e2e19c269ce904b19d4b84

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: py_anycase-0.1.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 129.1 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for py_anycase-0.1.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 15b943883895bb9991c22473e3467e7d5dc0a51b7f83ca5c9c06a3d34bf8b877
MD5 93f0f050ccc078460d32942e4ad49a9c
BLAKE2b-256 0de1b77f66bd1e21ce124926a699cbb4efb3b071fdc13e35147f7792ba9d7531

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f1e404ddcef0d279a722942b6d499cdeb0ce572fab9ce87f64d1762588781973
MD5 067aa961e2c840c585593b51beb25334
BLAKE2b-256 34515a689049fb73d4674d17221561fe034ec9b1dc0d4d8558e6a709a5f78ee3

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 065f7c0a8e50d1ca000ba16b3d86bad9508ee08871a0bf1b1acb43fcd9c350ae
MD5 f3cfab405401da74eef5dd73326b55df
BLAKE2b-256 4e99280dab8305bc2aa5f9d077e9c4e3ec62a8d0b872935d8977a40b4136142b

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 69b5092d8cb3656ba61987f935f57a478f7ec9c3d0b4b2e78165bd9a04cfdfa2
MD5 2c1e7525bbf8afb559cb8af90fc34f44
BLAKE2b-256 3e0fadb80ea13e24fdfff1670b3567509e4efc002af6a7605517b1d11b0292fd

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8f7b20861cd62de3bec531ceeea2ae25a162e9b978f094223109a76b6c7bc1a1
MD5 fa2d5322609718ab832734863b8eb508
BLAKE2b-256 68a6b0a570a5b8431db967a97e04d1bfb8424159a1dbd604f6a4f84485072de8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_anycase-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 03d6aa7a727e7192b2650b774aa1f52b2a82092d22922799a51254fb54d41a94
MD5 e90c920208d6a543ffdfa5ed2df75c27
BLAKE2b-256 ff1c5dc10496db720ac0c8d3c34442ab59d61bf49a4b02df8ca5d6718913eda9

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 40aa0f8c38e7f953ece38374750e9831e0fcf738da3622f52077f9821a660ca8
MD5 4f9ffcba77ddfc7584be34f711cbc52b
BLAKE2b-256 5ae30ab5c490376010f45d00266362c45fd0fa6bb4a7732dfbb691496e4006d0

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c968a7e59c60ab85ce0a86c108ce3739db2c9039f141a9dd709ca9ce8cc52b38
MD5 340a414d77dc9273c85ab0c1d28f88b4
BLAKE2b-256 87f32f04e00f81b60df4a13e96ebf79d0270194598d1969b7a8935d14abc7f73

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 642ac762d058a05381e2f5f377386fa21895a0fa5626e0326f3c58de67a43906
MD5 21f9e33d8775479f869b90506b2d0057
BLAKE2b-256 2c1fca994bd1869232f05c7a1d4d4ad9305f26e108cd5ff0926e2c79d097c605

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_anycase-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5b9e45e2bc8793d0f0b1982ac479c2eca6ff588f5a6d1356dd07ec932644b079
MD5 6a7a273eb2ac90ddc2fa5a8edf9f2e45
BLAKE2b-256 47f5990519c40fb6694e5f0b6ec30b6c40152e6d5ee702ec29b2907f61326465

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 39c5cb954d7018e146485162004298bd5d3a44fc03e2626fbf6d38794dd0fcc7
MD5 cd08309df493b6bba2dc5356ccc0edbe
BLAKE2b-256 8bedd1987097c9c6df959a8e4493ed55d895883b48980fadf6da6fd89d9d63e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_anycase-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2302fc6fa80f88fd489b0953a530aff51d4a537d8e416863c320808bc0150194
MD5 2105d194b60d71e2e17a4f72b681609f
BLAKE2b-256 6bcb2ae15fbbff8b04e5dd64e659c773a5063403b45713005b678c26e9e46a47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_anycase-0.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 dd683ae4fabc03c201afe5793ef607488b83a160be628d3a00e2a2b214a9c342
MD5 802f5546c06084e5871c530e8a70595b
BLAKE2b-256 504cc327f33b08234ef029f264b3908c2b66cc1c5110a65bb6fc430a6c4ac163

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: py_anycase-0.1.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 129.2 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for py_anycase-0.1.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 0b542d481d9400b77c04e217847dfe0acf757d8aff6cb2957e1bb9a9a2e4724e
MD5 c01b653001262a6225b2fa96e2224160
BLAKE2b-256 a2e194f0058d4a0eaa42f856b726137b748403a3848cafd3b67e87efcfc79783

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 256d91270bd4e830349373b96909d8d7b62c5d529ff73e768eecd2bf2dbf960e
MD5 2e5b8b7070cc84ed4b53df10ad33bbe2
BLAKE2b-256 2e343dda0edacaf9d25346fd2d781041475e43bba4dd431f34b3a8575a60b3f2

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4ad5cd2400c04558af73fcc8f86c735ef21ebc1620a72c50ddf15b0a5808fb11
MD5 aad7f0c1455a75f8ae3c55d2b9040a30
BLAKE2b-256 c44e8d24fd16ddb6fe2381847df2fb5f22e7ae1ed81343da9014d3bacec7c51c

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 834989b5b659643bdc9e5e3e2536beae0426e763b6d8849849ebb3b379ed20be
MD5 56b310302f00e77cbb3a45d261e677cc
BLAKE2b-256 83a96f5d2fea96d23fe25157c607fec932135b6f439bfb714800f610ac8d52e8

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 84f256f1863f5b4edf7d65640987d7560c5825663602388f2ca8f9ce5f8066a0
MD5 56ca1b4e73bf62372efe70ab61573597
BLAKE2b-256 b7f5f67374b3c8cf68f69e9bfd40a649e3ba0689810834e89f8882bb1be05ccc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_anycase-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0eef1f93bf4e66f80e96a9ffaed10164781e62204ea68d2c262261650e785268
MD5 bffbf3dedfc46a0446a0b258557197d7
BLAKE2b-256 0477ba33bd154f2579fe1d3f4aabaeeda8b399f9643c0f5874440ed6a7215507

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 17a3c95797bea4f313090b0d469f7792e8752ecd482934b28ed306a7c62682c2
MD5 da703003850b9d1fb1c49bf1cfccdea5
BLAKE2b-256 d054568b26356a8e2211434c8a1f2c1d820402e7505608075229613acfe67471

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 56bb91d0c282625ff946df9f91a3d42b8011f0090ce4c068e39c61a0c0d0393c
MD5 cc4e917377556e1768f112a273768a99
BLAKE2b-256 2910afc6f1fda71ff55410c09b77a315e577d36937188c7daeecbea47e22d4ac

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 14122ad24cb68396bb453aad21319250b0dd3387a55ff382c6890e5889c0de64
MD5 1c13b5148f02a9c6c42feef4b7889599
BLAKE2b-256 5907e14fcb95aa79c0cc0ff5a08049b24279db4d439ce4cbe8487174fb510354

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for py_anycase-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 79d78241a83328e4632e57431683fb6d96cc165b5839c95dfa5ea24da7dc6c99
MD5 0c992ba0955f2c6fd3acd1c5217f066d
BLAKE2b-256 5e4ccc0733d61d057f0ea3809ee6c1b2e2291e27fa6a38c89c71d0e1101b416a

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 66d700bf4737211682e3b0329c3e9063c6854e193ca7fb9b9898825d153607b9
MD5 f2529cb883b555d39b1f130e76c6c921
BLAKE2b-256 49e4cba1dc523fdecdc9c8e53cdfb84387677ca5e5c2d9a86dfebd7b5240c4fd

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b509295928fad048660dae7b12756bc29898a29f0851d1afb4bfde078704c511
MD5 d652242b2325e8023255a18ebcb0a3ca
BLAKE2b-256 f7c197f28d6a41a51ef598a19c09e1b7d2f589410f5acb7595a84fd65eddbec0

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: py_anycase-0.1.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 129.2 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for py_anycase-0.1.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 d01af015c85c9686dd86fe6c7504830b532cf7a6c3512dbfb1e264ebec43fd75
MD5 323f2688cd01850d65fe795091e724f9
BLAKE2b-256 cc597d341216c78a3e2ffc029bceafa19645cd167992772ed3578e3baa306a21

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 05b0f7c531659124033ad6e3bf607f68a4aa2971946ed8cc510160627b41edc7
MD5 f120bf9f5f969889c2f1eb99bfdd3431
BLAKE2b-256 ba449323e582b727bc0e9e664d2554c895096ef423ba66683961a064a9352589

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1f13f03db4d1598151dbadb3c8981bcb464a237f8b745983a98442bed45a3192
MD5 055070e1d4f736768e4b4017a2f56508
BLAKE2b-256 db58569d418e7275a40a27fad16284632dde9d4c9f214f3016150a1b5a11b36c

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bfe483b1ca9ef8bbf1c7686e2e32cfba9bb97f67a89c13199c4aedf357d474d7
MD5 8903db042813a705b5e548960cbcc200
BLAKE2b-256 aa6561f7e42f7e73079bf45d27d495604ee89ac0b07ae5d37d672126853d1a77

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e9f5a096190e5109c6d42b22c51848d283c86ac83db0a439effb2cb235fb42fc
MD5 430d237fb9ef924e6e0a1560bf5cf90a
BLAKE2b-256 3eab3a53a4286375ed38690a28455cdb9ad3d3730b310f33b3071353f4b5ec2e

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 381b3db30987ef69d78270924d2f65d8b44187bd98cd018ee187efe8720b9448
MD5 6e8201e25eaf07105dd5c3463b63e4d7
BLAKE2b-256 70675c2b74c780248db85b3677499a86216db46fdd423bce7d2552a059d479d2

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d7d361746c8b64384edb89d330053945bc1ecea334e08b66e3f958f90553a265
MD5 b531c95bed514f9ae5694483aac0a6b9
BLAKE2b-256 74bb0d68f5fe5be42fb98986d123f62639a299171f91adab0f635ef3afe0850f

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5259e353c2e624d508884a61cb59928715d83174217cde014ca62b824e28379b
MD5 5f75332652e900c88af075ed4e563df8
BLAKE2b-256 12236134b0d037a118d88eb585f809137b42fa787fe987e127ad250dba475fb6

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 68d8fee6a9cc3da3e29d874c4b69a5bd01120278d8b7ca82c6264f0f75f01d37
MD5 13fc57285fded7eb97bdc9b5563fffae
BLAKE2b-256 09c05a3420c27dc8d0779b1fbf6e72995543c9d9bd9657148384a6a49fb9e27a

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f5862a8e85899a6612ac6c33e1710795c09f5941faf98d2b860fd407b6255931
MD5 413d2941888c83c6304c6b1162dd0ba7
BLAKE2b-256 4166a94b918e7be8f5c5bf7e37ce0e9519b3a10f4a71e6a0d6af31da41d728cd

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 92403ba05d85dfdc0d5994b3d490e1be3baff411aaa9ffea06e9facc80d0303e
MD5 fb41b0d3c33c0499630ccfc7fdfcf724
BLAKE2b-256 ca364dad187deea0d6feab98fa6a2b45974748e9857551588917bfc4f7ec9e3f

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 851f7728f32b0c63357ce99e7c75485ba20f17577d0da59a689c2cb32d1e2457
MD5 6ea0626e532ed794717e022a048a0b23
BLAKE2b-256 4d731d9b2cfcf4cb100cdad2ff59a42186e3bd7925dd96538fed26be08ad2d39

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: py_anycase-0.1.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 129.0 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for py_anycase-0.1.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 073fffd97bbb5244e9fa0e89768d82d966112d1f15594eb48214e97d27972993
MD5 c38b88df1326b3a1909a0699cd0d4e92
BLAKE2b-256 746d7e6facd0c471303b8cef634c323dec93aafd4c2ac5fa6ac4e8751a077a15

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2ad5d484f115fdaed56f17dbc503f3c3ec3b41f2eb5a9673b09f5b313f6d4eb5
MD5 f7ae3eb102ed274c5d97bb2fe583e73d
BLAKE2b-256 38f2f81ff941e2524d2ccdcdf5d9ec59d7bcd66f01371e35b67c2a5f9db56b85

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f116f7ed0c71d26fff1d09ca118c101f48dd723676d3b0a5b04ae3e84748a23a
MD5 e1d878f544c236d883d48339f209724f
BLAKE2b-256 22af48acf0130984efb891f053a9bb0ffff6542ce2739791939dc1d4f36f5107

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8c6ea95314e2b0bae145c53932dbeeb5a599a47766bce96832571fdd3ee98273
MD5 5441410e2ea84fe7278648c5f89fcdf2
BLAKE2b-256 179e1421cf7a18bb2315d2cc3d068359da2196fcbd502b3236fbae950e9a4811

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2e2e08d08db2b4d98710c9f9408d8a487ad7b40a3dbc2f534965870e0e959b51
MD5 3aad41c5e225da5e875ca1cf6e1f21e2
BLAKE2b-256 f85f626dff9bb4411fff441e11eb5d950400d81a640f0c68eae36b4e596708f2

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d5fbc1d33737e5351166d41477d820dd9c2df40cd1c703ccf32bb4fe50997c44
MD5 bdb17192944eb6e7fd91e0a800f34d7c
BLAKE2b-256 93f85fe5f44c7e707661e1ccb32486032d6bc0ced87c1c6e52cd7613f67596a0

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 18a8266e55b2e9692c66442a9c8be850b9db1735f36d35166b808db7ea846a7c
MD5 23f30f833ee42fd2a79dfdcfddfc3fef
BLAKE2b-256 f316d44602de9120e9a552e73541ede16b6dc406d2ed05f9b1ca573072eef376

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 692f19e176696f5950dd817b438977dd75ca4e072a6e31fe92102743d4ba9dce
MD5 5612d5c229f46508506a5ad3b4ce3962
BLAKE2b-256 4c937d6674f60079e8649fd21f4ea3913ca9d6d2910cccfc56209fd5122ad588

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 736e662a2e31100fdf07cd5a0ce5f23ec54055a145cfa862c6b605853dea4a3d
MD5 7be499879bae8a96a1a0b9978ff08e43
BLAKE2b-256 7d0429cc5eb9e59ebf744584412dc08b6ba7f29a724dfdc0db40af9a091731b1

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d0b70f5e8837f3a9a55e7eee4324d135800517480afc6d73cebbfd9ce1fcb1c3
MD5 694ce39146f700011c37a49e75ca23b6
BLAKE2b-256 57fcbd4da6200013b2c051ea73f6e6b79e324f4375ad60f3beabcab233f7ce2e

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2f00b94c68604ec8dfe2a3631fc74c2a38a2146d9507091822a3f1545a77bc8e
MD5 61c1acd9bbca3ea9135d73d7412c5a18
BLAKE2b-256 0177faa48792ffd60c97748917706c78aea343504e0e66428fb8c6e6c2cc3a50

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-cp37-cp37m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f9b60781bf5479b8b6808b0ffe65b66b8288960ac48ea50d20181390d79503da
MD5 659d511768527a2d4689ae07951c32d0
BLAKE2b-256 1d29f5b2d89912d62de4a542746e5482e2b2b767427a890fa9d7b247b8e6cc01

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-cp37-cp37m-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 09e577d80c19a579fa9488f7686d7f6be16871a6103a9a1866aed359bbe12996
MD5 d2e71f67961641ae95aae3aac6211059
BLAKE2b-256 62a1a10bc1f5516cf682bfb404374488eb5e8a0df9c0e5405a78a6a9a1315f1a

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-cp37-cp37m-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-cp37-cp37m-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 548dd580afb1df9986e485330f4ce9b7ecef544bd338d325dd4d03856c5e311e
MD5 627c3b7712e5abf2f293ae6e425f8a85
BLAKE2b-256 eedf6fa5317fb51bf2b2a904adaeac190febf85c3fa74c9c4b722afdcf2ca0bc

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-cp37-cp37m-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-cp37-cp37m-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 33e101b1d80d337af361405c13025d1e0354bdd0929111d1f9d3a55dc1d4c9f3
MD5 8fddb96afbcd745bbbed19e0cce4a98a
BLAKE2b-256 3f49441cc79a0962c770181b0bd5fc89ad802f5ca9f2e31cbb4ae2e7ac37ea14

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b69182b476889949baebed3f2f92ad46dc27cfe1c890a16a8cea44ff7ea6c6d6
MD5 c0a88954316364098b50c23c3ac163a1
BLAKE2b-256 9b51d01d97817684f850c5c92f54e20c042b1c57d107485d7d3735473f43cf5c

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 851c4e1b2e8550a24fade1b494c1cfe6b22d22df60a7788971dbde8e0f0111af
MD5 9258366d27cdb532fa36a3bddd08ac9f
BLAKE2b-256 23df983d4a8595721a98900a8f01f8f40ffcc69de220acd6b9fc1320804944be

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c72e499d03946ed8c0cbfe12c98c5fa435a2e4a77e32c86ffd2e27f73a2540bc
MD5 fe4c61e4d043d2c3a204d21e89297b50
BLAKE2b-256 e54be5658208198af9a47b0e15840466e2785aac7c5d84834554dbe8d1c34de4

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 81c474e34f0e901d4c90e252f694d96c109b6d0d0eff7abb5a6974e996ba6682
MD5 60a36b8013cf2f0eb6b966656a60e86c
BLAKE2b-256 d2ace05d3afe44a1735e8b570cca5cd01afbb14de40db359098cfcbc299fec80

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b4cba0fbfbb206fa5f086456163b94620bfd8fd27b5582203e39a27ec1356e15
MD5 c8c6cd13ff2183e4914f7cbb385d29ec
BLAKE2b-256 e9618f508edcfd4e4f9b7fa79badaf1762827ac86b5eba4d8ee5a043ce1a5838

See more details on using hashes here.

File details

Details for the file py_anycase-0.1.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for py_anycase-0.1.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a9834f25aa261e08896d22f32dfcdc74e253d1b4a097050ae5e4e5e54a366bae
MD5 bc29eb0a15f3d07674b9c3baae14cc20
BLAKE2b-256 36f504980de0fea76764953c50338dd768f51df8f9a735bf2d75e4dd9d5389a9

See more details on using hashes here.

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