Skip to main content

No project description provided

Project description

plsfix

PyPI package

plsfix is drop-in replacement for ftfy, written in Rust and ~10x faster.

>>> from plsfix import fix_text
>>> print(fix_text("(ง'⌣')ง"))
('⌣')

Installing

Python

pip install plsfix

Rust

cargo add plsfix

What it does

(Taken from the ftfy README)

Here are some examples (found in the real world) of what plsfix can do:

plsfix can fix mojibake (encoding mix-ups), by detecting patterns of characters that were clearly meant to be UTF-8 but were decoded as something else:

    >>> import plsfix
    >>> plsfix.fix_text('✔ No problems')
    '✔ No problems'

Does this sound impossible? It's really not. UTF-8 is a well-designed encoding that makes it obvious when it's being misused, and a string of mojibake usually contains all the information we need to recover the original string.

plsfix can fix multiple layers of mojibake simultaneously:

    >>> plsfix.fix_text('The Mona Lisa doesn’t have eyebrows.')
    "The Mona Lisa doesn't have eyebrows."

It can fix mojibake that has had "curly quotes" applied on top of it, which cannot be consistently decoded until the quotes are uncurled:

    >>> plsfix.fix_text("l’humanité")
    "l'humanité"

plsfix can fix mojibake that would have included the character U+A0 (non-breaking space), but the U+A0 was turned into an ASCII space and then combined with another following space:

    >>> plsfix.fix_text(\xa0 perturber la réflexion')
    'à perturber la réflexion'
    >>> plsfix.fix_text('à perturber la réflexion')
    'à perturber la réflexion'

plsfix can also decode HTML entities that appear outside of HTML, even in cases where the entity has been incorrectly capitalized:

    >>> # by the HTML 5 standard, only 'PÉREZ' is acceptable
    >>> plsfix.fix_text('PÉREZ')
    'PÉREZ'

These fixes are not applied in all cases, because plsfix has a strongly-held goal of avoiding false positives -- it should never change correctly-decoded text to something else.

The following text could be encoded in Windows-1252 and decoded in UTF-8, and it would decode as 'MARQUɅ'. However, the original text is already sensible, so it is unchanged.

    >>> plsfix.fix_text('IL Y MARQUÉ…')
    'IL Y MARQUÉ…'

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

plsfix-0.1.8.tar.gz (71.5 kB view details)

Uploaded Source

Built Distributions

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

plsfix-0.1.8-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (10.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

plsfix-0.1.8-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (12.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

plsfix-0.1.8-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (10.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

plsfix-0.1.8-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (9.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

plsfix-0.1.8-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (10.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

plsfix-0.1.8-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (10.3 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

plsfix-0.1.8-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (12.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

plsfix-0.1.8-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (10.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

plsfix-0.1.8-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (9.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

plsfix-0.1.8-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (10.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

plsfix-0.1.8-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (12.1 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

plsfix-0.1.8-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (10.6 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

plsfix-0.1.8-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (9.5 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

plsfix-0.1.8-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (10.4 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

plsfix-0.1.8-cp313-cp313-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.13Windows x86-64

plsfix-0.1.8-cp313-cp313-win32.whl (1.2 MB view details)

Uploaded CPython 3.13Windows x86

plsfix-0.1.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (10.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

plsfix-0.1.8-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (12.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

plsfix-0.1.8-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (10.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

plsfix-0.1.8-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (9.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

plsfix-0.1.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (10.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

plsfix-0.1.8-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (10.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

plsfix-0.1.8-cp313-cp313-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

plsfix-0.1.8-cp313-cp313-macosx_10_12_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

plsfix-0.1.8-cp312-cp312-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.12Windows x86-64

plsfix-0.1.8-cp312-cp312-win32.whl (1.2 MB view details)

Uploaded CPython 3.12Windows x86

plsfix-0.1.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (10.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

plsfix-0.1.8-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (12.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

plsfix-0.1.8-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (10.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

plsfix-0.1.8-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (9.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

plsfix-0.1.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (10.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

plsfix-0.1.8-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (10.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

plsfix-0.1.8-cp312-cp312-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

plsfix-0.1.8-cp312-cp312-macosx_10_12_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

plsfix-0.1.8-cp311-cp311-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.11Windows x86-64

plsfix-0.1.8-cp311-cp311-win32.whl (1.2 MB view details)

Uploaded CPython 3.11Windows x86

plsfix-0.1.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (10.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

plsfix-0.1.8-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (12.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

plsfix-0.1.8-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (10.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

plsfix-0.1.8-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (9.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

plsfix-0.1.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (10.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

plsfix-0.1.8-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (10.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

plsfix-0.1.8-cp311-cp311-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

plsfix-0.1.8-cp311-cp311-macosx_10_12_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

plsfix-0.1.8-cp310-cp310-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.10Windows x86-64

plsfix-0.1.8-cp310-cp310-win32.whl (1.2 MB view details)

Uploaded CPython 3.10Windows x86

plsfix-0.1.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (10.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

plsfix-0.1.8-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (12.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

plsfix-0.1.8-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (10.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

plsfix-0.1.8-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (9.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

plsfix-0.1.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (10.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

plsfix-0.1.8-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (10.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

plsfix-0.1.8-cp310-cp310-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

plsfix-0.1.8-cp310-cp310-macosx_10_12_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

plsfix-0.1.8-cp39-cp39-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.9Windows x86-64

plsfix-0.1.8-cp39-cp39-win32.whl (1.2 MB view details)

Uploaded CPython 3.9Windows x86

plsfix-0.1.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (10.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

plsfix-0.1.8-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (12.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

plsfix-0.1.8-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (10.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

plsfix-0.1.8-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (9.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

plsfix-0.1.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (10.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

plsfix-0.1.8-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (10.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

plsfix-0.1.8-cp38-cp38-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.8Windows x86-64

plsfix-0.1.8-cp38-cp38-win32.whl (1.2 MB view details)

Uploaded CPython 3.8Windows x86

plsfix-0.1.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (10.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

plsfix-0.1.8-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (12.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

plsfix-0.1.8-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (10.6 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

plsfix-0.1.8-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (9.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

plsfix-0.1.8-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (10.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

plsfix-0.1.8-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (10.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

File details

Details for the file plsfix-0.1.8.tar.gz.

File metadata

  • Download URL: plsfix-0.1.8.tar.gz
  • Upload date:
  • Size: 71.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.1

File hashes

Hashes for plsfix-0.1.8.tar.gz
Algorithm Hash digest
SHA256 5382f7a582f3f635fde6d5062d5204e629624599f8ffcff3f4539fad12c36dc8
MD5 917c22ac8a6fd21b8f5f651a7f8d343c
BLAKE2b-256 38301981033957d0f0574a0d9cb78addd0d03c9a064f5625bce79cdebe6e8aed

See more details on using hashes here.

File details

Details for the file plsfix-0.1.8-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for plsfix-0.1.8-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c73ebf864cf9fff2eef17c0c57d894a46eefe0c16c8eb917c8123f42cd784fdd
MD5 f9f8b269b3486bd46c1d7f9812444627
BLAKE2b-256 7259908c9b6dd78ebe9e706c97dfa198627c18d5b394af456e347fada0ca8349

See more details on using hashes here.

File details

Details for the file plsfix-0.1.8-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for plsfix-0.1.8-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f2f4e551022a671a37eb5f94f53103940a8a02b37745dd91ce0fb15162907574
MD5 14d525256e2ae6e104996d99f017f6d6
BLAKE2b-256 96bb48c4d0cb7ecba2be3a369bb8edac0a2b36b433b8150f7aa60bf23a4ddfa0

See more details on using hashes here.

File details

Details for the file plsfix-0.1.8-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for plsfix-0.1.8-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7e35eaf29b4d3d6f5205a1bd04515b693af57bae6ace76af975dcdf7aabe29c6
MD5 afd4140c19901232fe59d832819f34b0
BLAKE2b-256 85e62dfcd24ef569eba0c942167c42a3f008a3e3c02b41bab041d62ce1ac4c1b

See more details on using hashes here.

File details

Details for the file plsfix-0.1.8-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for plsfix-0.1.8-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7c2e3a89a197746cdc8787029dd8e1026d4213d7e4a1de8c73d2d1d09266a8a1
MD5 a3469df7739424eff8dfa81955699bc9
BLAKE2b-256 897aebe4a362204f953e1109524e085a89e233a0ec60b30d7c1657f8498bf176

See more details on using hashes here.

File details

Details for the file plsfix-0.1.8-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for plsfix-0.1.8-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 473ca2c7adc5ff8afe5b272bddf617dde1370d3b3b1181ca479a4ae23660b14a
MD5 7caa20a750dccc8a1e995bab509b0193
BLAKE2b-256 83718511427421878e6a09c03c4df24e95c752dd77f41c76b883b177eea3f072

See more details on using hashes here.

File details

Details for the file plsfix-0.1.8-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for plsfix-0.1.8-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 643d48af8e1b40f138c0d39004323c33dc6babeec706db77c6a7f87878940151
MD5 f33cb6960d6f6740f20d5a3108943940
BLAKE2b-256 a01f9bfb3dc153fb4341c53d3b344447b5e8fc5f21199ed97a38f686defdd6f2

See more details on using hashes here.

File details

Details for the file plsfix-0.1.8-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for plsfix-0.1.8-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 642b84b52d09991dd17b6871e643f7a15bcdfd4407ae39a3bb27146460385bc9
MD5 47fbd7d7acab7d5b6cea00a60ecb6393
BLAKE2b-256 2bf1aba69b36831ebd95f99e9d98952824a94fa6c0c2f74546964e0a08f0d6c8

See more details on using hashes here.

File details

Details for the file plsfix-0.1.8-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for plsfix-0.1.8-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a2acf7a049de50183eddaa0ed05576197798f490afb52706f3c8ec1a7abcd57d
MD5 a9a7a3570f95e7166c4173e5215817ea
BLAKE2b-256 76d094d135633bc74a568ad9dfef8ad520af1a775751bb91c438dc8b2b8215cf

See more details on using hashes here.

File details

Details for the file plsfix-0.1.8-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for plsfix-0.1.8-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ada105f0136e8930cba00f35b53cc902e823441d7e877d9acef399a0b80886ad
MD5 2de1ecebab536ba8fa5fdb825f8cef7f
BLAKE2b-256 20d70fea03e175e74d47a00c688986a0354cd0c3981076b9846037f2679f69f9

See more details on using hashes here.

File details

Details for the file plsfix-0.1.8-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for plsfix-0.1.8-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e4039ee9d946db4b731aff15e2f40fad51bf28c1b0b0db9c4e7e05ce87eddba6
MD5 995d5023450b8c5d85b23e51fabeb415
BLAKE2b-256 6a3e5bc07a810c0f5c11f39f128cc5f9c967beacf78ffd3ad39b3bd6fa5a8c97

See more details on using hashes here.

File details

Details for the file plsfix-0.1.8-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for plsfix-0.1.8-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2cb689903513dd00dc7cdd865b85eef737cb435a271107620739a753ef1abcb9
MD5 61707ba14010cdf6366fdc9b81db9fe0
BLAKE2b-256 74b57e604671426d47022e6ba40cc38208d50f3b3b51d221774c3cfe1189b2e9

See more details on using hashes here.

File details

Details for the file plsfix-0.1.8-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for plsfix-0.1.8-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e7a99f5ed86eb2d0600bf37f5084c063dec6afc2e9276b52ffc659029cc2ae62
MD5 b3a3a27a1f2c89c12dd065caa7cb7f15
BLAKE2b-256 2f9edf6051e7f6daec87e416d2bfaf0cf249eedf32798ffdea01d55e17558b4f

See more details on using hashes here.

File details

Details for the file plsfix-0.1.8-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for plsfix-0.1.8-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a8518f16955ac58d5f7bbcba110caf89f48024f780956a4193da9436e1dc9493
MD5 a7fc994014881b3efa5ce7797b93b2e0
BLAKE2b-256 12f40806292ee123fb4b7472cb8d1f22d137b9e00154ab9a325a4606fb3a84e9

See more details on using hashes here.

File details

Details for the file plsfix-0.1.8-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for plsfix-0.1.8-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d6f95e1cd1e692d581906245b383501dac149068c252469ed478d74d7b647ecd
MD5 c55d347deeb08b8014f8c900fc86ea92
BLAKE2b-256 87bdf9b358f8abcc8c42a348cd311de4f14c8ff7aead98af7a1e9334b954502b

See more details on using hashes here.

File details

Details for the file plsfix-0.1.8-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: plsfix-0.1.8-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.1

File hashes

Hashes for plsfix-0.1.8-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 83a6ff8ecec7a30b74a08852c6493b0ab4bb07cb07a60fedc73e363760256f28
MD5 9ed94ca24729b251e70544eed2947e6a
BLAKE2b-256 abbe7e84d5f25c38e096c237550c4b6be68dec110b5bc18c6b43423fa372858e

See more details on using hashes here.

File details

Details for the file plsfix-0.1.8-cp313-cp313-win32.whl.

File metadata

  • Download URL: plsfix-0.1.8-cp313-cp313-win32.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.1

File hashes

Hashes for plsfix-0.1.8-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 fd016869dc1eea7454c86ef6dfbafa863fe744e4081bd0e0495a38f0b6677bbb
MD5 3e13ad5f39bca184fe69ef24e4d7ef4c
BLAKE2b-256 dccb2efcca9ac1730a6bd20a0b80b825f7aeb34e5d4f807ea01756f3043388fc

See more details on using hashes here.

File details

Details for the file plsfix-0.1.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for plsfix-0.1.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6d403d64b8bbf7218e817d1636188f9065318da2835db0350f97602bdb529b4c
MD5 b266ce6766b774c3aefdeda4a65efe95
BLAKE2b-256 1de53901634d1349a56be5afd3b66d875bb8062f3ec4eabd414002b82dec9ebe

See more details on using hashes here.

File details

Details for the file plsfix-0.1.8-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for plsfix-0.1.8-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a0509da8e5f2bb75adf78197a80facb5af4ea534d47688ac6985f59a6b89db5c
MD5 5db884061b985c0d03166e8d141f4a1d
BLAKE2b-256 3ee46e737534dd447c8f5997e1fc83d6d09a5b40197cdfaa055c184ef9b400ec

See more details on using hashes here.

File details

Details for the file plsfix-0.1.8-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for plsfix-0.1.8-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 eacd0d33f3066576751e6138d9a87c080cb6afbd401e57f7e731f1ad7f47cb32
MD5 7acf68064062fc9b04892e738d19f3e4
BLAKE2b-256 8a513091f74a81f4b340b7c933b8e421f02709e43b48b68d426a8a7b81051f13

See more details on using hashes here.

File details

Details for the file plsfix-0.1.8-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for plsfix-0.1.8-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1bb19eaf53a28b9669f7930fa6eb5a8bb89af4545bbcc0d1b2256fb90424a4cc
MD5 0f3cb120bf1e990a1178a1a6152eaca8
BLAKE2b-256 25c8d4eb6f6d7095ab64232d6a2c97d44c5d7ff5d24e9fc63da044a3634d6ea1

See more details on using hashes here.

File details

Details for the file plsfix-0.1.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for plsfix-0.1.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bd23867f4598092f2599a4b9968adf505176fbfb35dae3d056d51b4e8b6ac2a3
MD5 9f0afbe6f1bb839ae4d2438277d22711
BLAKE2b-256 1f31e757c349185b89d87e23ec8eecbb8b3f87329a56a900a20f3d080b3f5609

See more details on using hashes here.

File details

Details for the file plsfix-0.1.8-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for plsfix-0.1.8-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0ffa72a7f8d0bf67d0a5189a150dac93e9983eb7a6a328d88396c6dd1f4ecfd6
MD5 877e41ac244ff5398bd53fba8a1fc75a
BLAKE2b-256 998ae6333d3225e548231b96a810a3953680c63544e9f7f2a381ffe400745b43

See more details on using hashes here.

File details

Details for the file plsfix-0.1.8-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for plsfix-0.1.8-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6f80f9c1936c08b609cae3d0505ffb0b1ab470ca999e2699240e793ab38e1a09
MD5 b67d2e0136d148dd2ceba0a70f42165e
BLAKE2b-256 d1c583c3695c89697451b4dcb259c624ce493de661b98287e66fbfe817e88ef3

See more details on using hashes here.

File details

Details for the file plsfix-0.1.8-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for plsfix-0.1.8-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1399d08719dbd168e43d84760bbb1147ba8c81a31943283e4f57f42f6d72a415
MD5 f4d3b18dc8e2788d29857947b9eda396
BLAKE2b-256 db73ac658b6b1eecf006f4d72ef968869f2607112acd1c2149fb6ee393fb7d85

See more details on using hashes here.

File details

Details for the file plsfix-0.1.8-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: plsfix-0.1.8-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.1

File hashes

Hashes for plsfix-0.1.8-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c1aef9d6ad1b94e279ee56806e5da2ab9e9182319800b2063154844dd8dc901b
MD5 f56a9ae9be4308ac10c2567434fa98e6
BLAKE2b-256 fc47c4787ced555faea6ce4d16855c8dd6f4e1cff25f73878332523082083357

See more details on using hashes here.

File details

Details for the file plsfix-0.1.8-cp312-cp312-win32.whl.

File metadata

  • Download URL: plsfix-0.1.8-cp312-cp312-win32.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.1

File hashes

Hashes for plsfix-0.1.8-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 2c1b4b2f348f2e4796ff0ffdab3a905608ccbfbf5318aa619673e6bb7cf47a3e
MD5 16066d062c0b33279d6a9d935c42f21d
BLAKE2b-256 d04bc52247178f1028be8ecb5a04725798863ce76212e5c9c8302cf7e1a9ecd9

See more details on using hashes here.

File details

Details for the file plsfix-0.1.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for plsfix-0.1.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 15a32adb9c1537f71bc1418719069003a5edddb0e63ab0ce67ce47f41e7045b7
MD5 42e914967c58d4eeba63f09a87f00c0b
BLAKE2b-256 f8ddeabd22d2a59b938cf229120b13b75a922b5c0697efbf2acd7c5614fdd9b5

See more details on using hashes here.

File details

Details for the file plsfix-0.1.8-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for plsfix-0.1.8-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a51a6f209d2b9d0c17e29313ddd8f70d3d741f1bad2462998ffcbd64828d4ceb
MD5 b07c6ad2c5e92b1275d138ff94e4264d
BLAKE2b-256 286107347ddc984168f90a9e02e041f309ce3a0950fef44bbbc50234b4ad4ea2

See more details on using hashes here.

File details

Details for the file plsfix-0.1.8-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for plsfix-0.1.8-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 26b00eb1692dd891a5dafb086b0a22ea8a4b3a43ecb8bd3d0dc63cefc9a849e9
MD5 077f662b1db9b6e91183fe090c53a013
BLAKE2b-256 943fba3aba0986fd3e9a5305fc33595a9b3f5c1a507b02661fa4e9fd6b53819e

See more details on using hashes here.

File details

Details for the file plsfix-0.1.8-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for plsfix-0.1.8-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 62d271400cc5958a4c50f5911c05126702e5a7f09ccd4af14da5c48b694edab9
MD5 a41d5fbe1e03cf4e22585be9070fc15f
BLAKE2b-256 7c6f412ab92405325c3be18e6616f3e6e068d938762b6b7d3cfb4b568aebb01a

See more details on using hashes here.

File details

Details for the file plsfix-0.1.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for plsfix-0.1.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e7dac8cc6abdbbcdce20abaf63411a230c3e2b88ae4b248d6062fc2921b2750f
MD5 3517164d8875e20df3de4edf284e9961
BLAKE2b-256 1b1cfde5b02c6bda5cf6c92c9e2ce07d09d51c27f77d3af8fcbee82eb432c35d

See more details on using hashes here.

File details

Details for the file plsfix-0.1.8-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for plsfix-0.1.8-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6e85311e1c8b70facd9a733c4c43e696224b97cd55382b10559202d127915215
MD5 f415030909c19ca274f65b9e6355aa71
BLAKE2b-256 02cc081b77627c403ab2fa5bca04c17fe38014f74e38b13b4079011ce2591478

See more details on using hashes here.

File details

Details for the file plsfix-0.1.8-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for plsfix-0.1.8-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6dc52ac28104fb1e1c9b299d1e3b49ee0ee3950e287895bc2a554ad707c8f579
MD5 395bbb0b2fdf0fb79f6e0ee3e497deb7
BLAKE2b-256 c56b8a0fbe045e70c83a16610eaf2ab5ada1e11c86d279045550d2d8b8c45d6f

See more details on using hashes here.

File details

Details for the file plsfix-0.1.8-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for plsfix-0.1.8-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d55dc1622348fe7864c1fab08b4ecd2bee898592c37d593612d404c9e6077fac
MD5 bcc3ac064070cc66df71fc7b1db40fe6
BLAKE2b-256 e7f5c83ecd686d910f56a917c81f493f38521c8d7c3ea84854e56075ea36f93c

See more details on using hashes here.

File details

Details for the file plsfix-0.1.8-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: plsfix-0.1.8-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.1

File hashes

Hashes for plsfix-0.1.8-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f6876f5e0b59b4f73fbe9d051b2ee4e20df7be34235274b2f7272e4b8aa0ce82
MD5 9607f812bef006f6240e0fa03f8febf7
BLAKE2b-256 a5c8c2d978dca4e895f8228b5d65523e68fc272ba71b5a2b7db4923512b6a1c4

See more details on using hashes here.

File details

Details for the file plsfix-0.1.8-cp311-cp311-win32.whl.

File metadata

  • Download URL: plsfix-0.1.8-cp311-cp311-win32.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.1

File hashes

Hashes for plsfix-0.1.8-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 af9e3a48cd1b9f6e5a233b42f662a179e7988f93e66bfc194fb782a1d9dbdc94
MD5 3d337906244dbdbeefce66a5a4ac3b81
BLAKE2b-256 b9b750ff76b8f5f0f4818358a01fd743df3bdef660da31830e8b2bce0648ba61

See more details on using hashes here.

File details

Details for the file plsfix-0.1.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for plsfix-0.1.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 254025216c6a4ca8d2827f2d8b51b47b4803208fb496d8498efdee22233d0d29
MD5 0733580250c6fc5c6b4e42d5c28d5641
BLAKE2b-256 25e8ae5d6ece9ae373099daaf86abefc44cebfe5b3ede54683aee6ff6619a1ec

See more details on using hashes here.

File details

Details for the file plsfix-0.1.8-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for plsfix-0.1.8-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d653f8060c2e6341a50e521cad6a36201dc189f37c8032bdebc6700fab7de98f
MD5 9ef411212187542e1cee76d037f72392
BLAKE2b-256 5a6fdffa9c52bdc82225cd584d5d580a1be2c53bf492bb3dd99085514ac96ca0

See more details on using hashes here.

File details

Details for the file plsfix-0.1.8-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for plsfix-0.1.8-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5706383eb0a525cc4af3071e900952917ea9e8bdfff2c449365c7850436c2ef3
MD5 04bfc1e9774e7ac500b2c2982458daa6
BLAKE2b-256 def50f563ae949147e06f011f4164e32d39e4de6ffeb0795652519df924bf223

See more details on using hashes here.

File details

Details for the file plsfix-0.1.8-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for plsfix-0.1.8-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1c58e6a0b6d14afc26d34d722972896e7702753fbf8e2f9e3b5f534caceaaeab
MD5 c1efce165f986b5df187edd9471c4dc7
BLAKE2b-256 6199cbbd658fca3ec84bc1e009377c22f45f74ccb78bc3b4eb5fb2985f661197

See more details on using hashes here.

File details

Details for the file plsfix-0.1.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for plsfix-0.1.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3ec6556267515a05f1fb0998593fb270e36cb3f23941fcaee2346dfeef43e7e6
MD5 64e0369cf0ef21b1acea0b3f78365344
BLAKE2b-256 858e4150ddd37a8f5bcb287b817b944f38bce5450993669aabc0454852711d8b

See more details on using hashes here.

File details

Details for the file plsfix-0.1.8-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for plsfix-0.1.8-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 42b9326624e3847dd78fc7d7680161d2c00041e0cc48b0f609293db2a81e2730
MD5 7e7d6a5894ac6b6f2fa239b353aa9df5
BLAKE2b-256 ce9ab1f5005562bad034389980e74c856149332432ea625f1bfbf82199d2b831

See more details on using hashes here.

File details

Details for the file plsfix-0.1.8-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for plsfix-0.1.8-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b96d070265dd6159b5e2157115c90b4936ad7984fbf79a9ecf5ba8493268a7e5
MD5 76ebb0bcc0a1b42bdc97e0f6b5243660
BLAKE2b-256 81809c54a61bdba383629ece324fc1c891f004aa406771a220c31c9ed9a314bf

See more details on using hashes here.

File details

Details for the file plsfix-0.1.8-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for plsfix-0.1.8-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 99d4148dbd0a85c816712728d7293c3d7f167dd4d98cbc36a5a12458724c6544
MD5 d783f91300a71e1f4df88071fea55706
BLAKE2b-256 3d14dca32bff1241b36f18cf97bfce446b3f4e4c1ca0be45df523bca5919fadc

See more details on using hashes here.

File details

Details for the file plsfix-0.1.8-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: plsfix-0.1.8-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.1

File hashes

Hashes for plsfix-0.1.8-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b11c397827b33731e6cc4decda7981d3f0da851fd0638e311f5d3ec7ac0a1c06
MD5 712b550b0f11cf227aaa4f5ba8d2ebec
BLAKE2b-256 6787353f5510c1ad55edcc03d1dac5505750887d27cd18323812bb93cebd7985

See more details on using hashes here.

File details

Details for the file plsfix-0.1.8-cp310-cp310-win32.whl.

File metadata

  • Download URL: plsfix-0.1.8-cp310-cp310-win32.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.1

File hashes

Hashes for plsfix-0.1.8-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 97a1b817cee5ef0a6145612b8e38406f26ec618a4fc483191fb41ac2c8d2209d
MD5 8f420b3ca3f6c32f26948f91b612842f
BLAKE2b-256 24e95a74de77018308106b21ff7a23e65beebb97f347775f70026bf4a9d9e75e

See more details on using hashes here.

File details

Details for the file plsfix-0.1.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for plsfix-0.1.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1b759a3aa62592982f67657060bc6fe4c126dee61a9ad6a22aa5e805ad4a6c76
MD5 a15c21e1fa99e7d173032ef4fe58488e
BLAKE2b-256 03534f748a6f3b616a83946db1a5d63371579e4976dd5463202f9eaeff262455

See more details on using hashes here.

File details

Details for the file plsfix-0.1.8-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for plsfix-0.1.8-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 dad04f11790f4918c53ba1bd2bd9bdd20c5c93d4aeeb1e65af31930f71269156
MD5 70fef3561ca93d2cf42576c2d624e07c
BLAKE2b-256 af90936fc6e6e3796fd7c7bc28587bae13bff1f3a285645d17741fb7c494426e

See more details on using hashes here.

File details

Details for the file plsfix-0.1.8-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for plsfix-0.1.8-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3e2dbadbb9148a89eea81e22d0a645a27e74e33f4fe18a86da4f7f1428996154
MD5 a60a74e067af31a6d7c4be6f98bf8a70
BLAKE2b-256 97467b301fbe1914e26ded823907884c511d4eaeac13a636dd08681fa020deb2

See more details on using hashes here.

File details

Details for the file plsfix-0.1.8-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for plsfix-0.1.8-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e825cda5baa8ab3d2d1f36ef26bbd2d93025c1c2e6ecea8c7a3c59de883de5e6
MD5 b0a662b175e5c84050beba4cddc7faa7
BLAKE2b-256 baf71fa65eaba1410a720fc971f8fc3340f47b0713f77682cee736647ebd438b

See more details on using hashes here.

File details

Details for the file plsfix-0.1.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for plsfix-0.1.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ed9104303a45b38311f70f4f97802dadd927d173674d7a0d501a5e6cc0736758
MD5 ff235ab70affec907abad2e36a387f13
BLAKE2b-256 93ec8846740618ad1f61adf8677601a98828cd0ea87e78d47a13786b8d64566e

See more details on using hashes here.

File details

Details for the file plsfix-0.1.8-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for plsfix-0.1.8-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b1f029595197f5a7f5771240fb08076e08c3fe5b1fdc25464c6eb47f3beb18c8
MD5 ac6d97a7d473cfe03298c8d8707ce140
BLAKE2b-256 871543438538f1f5d322f0247b846878708f4ca0918855b51c5987a4b6c649f3

See more details on using hashes here.

File details

Details for the file plsfix-0.1.8-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for plsfix-0.1.8-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e7536477bebd24c944b03e21df836ab63b2b4bc4d179c80d4aa78d3f8e0b0d99
MD5 791d0306ce560f47f46e89de4e3112bf
BLAKE2b-256 6bb65715157c8d6e0cea7c70fc48dbf2a5ed50e7c63184ca9dab0c8df7ca6630

See more details on using hashes here.

File details

Details for the file plsfix-0.1.8-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for plsfix-0.1.8-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 802471d2c347c1bad6249e7dc13c92de3f8423401926e8b6116fc30fcca849ff
MD5 90f55d91f293c313ae58f2a45786c40c
BLAKE2b-256 ed978a5a8b0a659a3f8c5fc41b12e64454be7592c6c704dea7de566581dce149

See more details on using hashes here.

File details

Details for the file plsfix-0.1.8-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: plsfix-0.1.8-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.1

File hashes

Hashes for plsfix-0.1.8-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 3289d8540eccae9476b34f0110bac3c07eb16a7fa0c9053a60ba5b9ce29e84f4
MD5 0bd16f6ff7aee4231b5b80233aa7dbc5
BLAKE2b-256 dc01bb6c10752f1b65cd1abdfc4f81cb9963a3281f3918c9d595cc395334700c

See more details on using hashes here.

File details

Details for the file plsfix-0.1.8-cp39-cp39-win32.whl.

File metadata

  • Download URL: plsfix-0.1.8-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.1

File hashes

Hashes for plsfix-0.1.8-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 2fdcfa292831fc7537642df24d12317f4f57bdc19e8b17303fc6990ae3fb1bfd
MD5 1ecac29c7c0e588ed2084ff1d631b38e
BLAKE2b-256 f0c651423e76fabf7cdd5c780ef7a7c2b8cb861cca851af897954a19ea154fd6

See more details on using hashes here.

File details

Details for the file plsfix-0.1.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for plsfix-0.1.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a2b3b01bd26b837cb284c791d9a08944a96d4da3c8b2ba157bd98efa37d823f3
MD5 a2f51f43fc8a6ea8bac0e5b002e91902
BLAKE2b-256 5f4a2d3ed0cf406248213334c7149c00841ffbcdc2a2541df6b97481caa354c3

See more details on using hashes here.

File details

Details for the file plsfix-0.1.8-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for plsfix-0.1.8-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 751b6caa700177c9d712c12e51f8a0af03c7054c24e8008165aab4673123fb6c
MD5 1002beca81358c44c44ee867701264d2
BLAKE2b-256 fdf7c0c11007ce1440f5b874df77cdaf6aef65b6de6c3e4dffa682c0579075c5

See more details on using hashes here.

File details

Details for the file plsfix-0.1.8-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for plsfix-0.1.8-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 66abc14c28a00b1de9fc7279efd6bfdd7d49673cb20ae2c3e372acdc71ab2cc3
MD5 d5f65dd7567c1d7be2d6305b68dca00d
BLAKE2b-256 0c73e75b9baa919732f654151199dd62ce61bdf24028df38e1b52b4cb3e0c3d9

See more details on using hashes here.

File details

Details for the file plsfix-0.1.8-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for plsfix-0.1.8-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 be824c8cc3753a60710140cfaf9194ab76240cf5b7a11b66cd905d7948adc638
MD5 287343cd0186e685b233b59f09f09cc2
BLAKE2b-256 12ad64fd4be529bb82535071e740a08bbb2738c1de80a927430accef65d10e91

See more details on using hashes here.

File details

Details for the file plsfix-0.1.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for plsfix-0.1.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7a823200e4e3c1c56afb5e42d93078baeb79cb058effe17cebc29da3d488fc25
MD5 d6201370e61b686bcd957b61f7be2f5e
BLAKE2b-256 7ff276a85b6a3c23eaeaa699dd4caa93730e18c6462bfe7a218e28df281ab69f

See more details on using hashes here.

File details

Details for the file plsfix-0.1.8-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for plsfix-0.1.8-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 17668d07ce605996c91313877cf1843f9add7f1f075ea425a66cdcc6dfa6605e
MD5 1e7c9b7159711690ab00fe9401e68490
BLAKE2b-256 24552940020351d4db5f89b75514b76215db1f9a44ad79c200b2e35d567e8527

See more details on using hashes here.

File details

Details for the file plsfix-0.1.8-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: plsfix-0.1.8-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.1

File hashes

Hashes for plsfix-0.1.8-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 56b57d4882d6dbce2ecb54c14ca2fa82811e717183dd6e32fc716c8d727e19f6
MD5 fb8fb5ccc0fd863e09fb8b2c7475fd1f
BLAKE2b-256 d2501cb1005fc0c7b025d2b41d17fe213b44e41fe08eb46d61df6678ec84dba7

See more details on using hashes here.

File details

Details for the file plsfix-0.1.8-cp38-cp38-win32.whl.

File metadata

  • Download URL: plsfix-0.1.8-cp38-cp38-win32.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.1

File hashes

Hashes for plsfix-0.1.8-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 78bd5a16e99c8416b12de1cef70f5514359e5705a309c7aa88cc54a449572860
MD5 57da95950a2ceb5e8faeb1ee6002fd5c
BLAKE2b-256 7b34e4a7a72bdf9172c054a794092bd9f7bd921ef2c5b06ab539b7563c4ce018

See more details on using hashes here.

File details

Details for the file plsfix-0.1.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for plsfix-0.1.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7a349fc607e967415e0c184186a062ac742e919ce973ac46ac59331486c8f9a2
MD5 1cd27e01561412ddb0f211dab44e4fc2
BLAKE2b-256 395b9ad105505457a66b319c48625e485e8e0a2522fe08297b1742f062db94cd

See more details on using hashes here.

File details

Details for the file plsfix-0.1.8-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for plsfix-0.1.8-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c182898942953f887397d83650f6c3a2bd21af8e1600958c6bb976a209ff6bfc
MD5 974d70e4102ef628ba495175ef6037ad
BLAKE2b-256 d0950271f8d7f3822cbacb92678b5165ae69cd03a51592392985ba1ee421ae3d

See more details on using hashes here.

File details

Details for the file plsfix-0.1.8-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for plsfix-0.1.8-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 281163a54d90708b58591454bd29d3c3c5b6984d93e54be5e5cb7b5c94ff25af
MD5 b8168c963bdc4b89a126c0de638dc4b6
BLAKE2b-256 0ff971954483b7c5f0916247c6e90c9a36550402b396d62943d90d48b9ef7355

See more details on using hashes here.

File details

Details for the file plsfix-0.1.8-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for plsfix-0.1.8-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7749302467d0d0e5841c69991dbc7f25e7972905e812fa045fd8f37dac92a794
MD5 ba3f41daed1b4427c670b65c87422a5e
BLAKE2b-256 025942f80cee0699ef9bc9dda59e25d2996868dfff32222c6a992e33e080d5d4

See more details on using hashes here.

File details

Details for the file plsfix-0.1.8-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for plsfix-0.1.8-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 24f24e71ce38040ab5e3e05d318dfbef95e3fcf18d12a8227d1543aae780559b
MD5 cd65949b9af70d4206605c5d0364b61f
BLAKE2b-256 02977b0dca0cba33533bb2193b5875b1b67b192a2b24a5e82de4cce9bad4763c

See more details on using hashes here.

File details

Details for the file plsfix-0.1.8-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for plsfix-0.1.8-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5df2f624f1db4445b72d2173b15d768cb6aa38e93548a2ae560332f3c5e5331b
MD5 8dcb7e7155516953c874aff1bf94546e
BLAKE2b-256 1efa93b37a2f5c5dfca2bb3e210645188faa7525ac066534935b44c4da2cb8ff

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