Skip to main content

Python bindings for SFST focusing on transducer usage

Project description

sfst-transduce

Python bindings for SFST focusing on transducer usage

PyPI - Version PyPI - Python Version PyPI - Wheel GitHub License

A Python library providing bindings for the Stuttgart Finite State Transducer system with a focus on the usage of compiled and serialized transducers, excluding code for transducer development and testing, which reduces compile and runtime dependencies.

Should you need the SFST tools for transducer generation, please take a look at their homepage for installation and usage instructions.

Installation

sfst-transduce is available at PyPI:

pip install sfst-transduce

Usage

import sfst_transduce

# Create instance from compiled transducer
transducer = sfst_transduce.Transducer('path/to/fst.a')

# Analysis
analysis_results = transducer.analyse("easier")
# Returns ['easy<ADJ><comp>'] for example.

# Generate a string. results are a list of analysis.
generate_results = transducer.generate("easy<ADJ><comp>")
# Returns ['easier'] for example.

# Create instance from compiled transducer (compacted serialisation)
transducer = sfst_transduce.CompactTransducer('path/to/fst.ca')
# Activate output of aligned input and output layer
transducer.both_layers = True
# Analysis
transducer.analyse('easier')
# Returns ['easy:i<ADJ>:<><comp>:e<>:r'] for example.

Development

pip install -e .
pip install -r requirements-dev.txt
pre-commit install

Release

scripts/release $NEW_VERSION
git push && git push --tags

Credits

The SFST tools have been implemented by Helmut Schmid, Institute for Computational Linguistics, University of Stuttgart, Germany and they are available under the GNU public license version 2 or higher.

Please cite the following publication if you want to refer to the SFST tools:

Schmid, Helmut. "A programming language for finite state transducers." FSMNLP. Vol. 4002. 2005. pdf

This Python library is a fork of the excellent SFST adaptation by Santhosh Thottingal, changing the focus of the Python part.

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

sfst_transduce-1.2.0.tar.gz (80.1 kB view details)

Uploaded Source

Built Distributions

sfst_transduce-1.2.0-pp310-pypy310_pp73-win_amd64.whl (129.4 kB view details)

Uploaded PyPy Windows x86-64

sfst_transduce-1.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (236.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

sfst_transduce-1.2.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (254.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

sfst_transduce-1.2.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (175.9 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

sfst_transduce-1.2.0-pp39-pypy39_pp73-win_amd64.whl (129.4 kB view details)

Uploaded PyPy Windows x86-64

sfst_transduce-1.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (236.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

sfst_transduce-1.2.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (254.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

sfst_transduce-1.2.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (175.9 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

sfst_transduce-1.2.0-pp38-pypy38_pp73-win_amd64.whl (129.3 kB view details)

Uploaded PyPy Windows x86-64

sfst_transduce-1.2.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (237.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

sfst_transduce-1.2.0-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (254.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

sfst_transduce-1.2.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (175.8 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

sfst_transduce-1.2.0-cp313-cp313-win_amd64.whl (131.0 kB view details)

Uploaded CPython 3.13 Windows x86-64

sfst_transduce-1.2.0-cp313-cp313-win32.whl (114.6 kB view details)

Uploaded CPython 3.13 Windows x86

sfst_transduce-1.2.0-cp313-cp313-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

sfst_transduce-1.2.0-cp313-cp313-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

sfst_transduce-1.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (259.6 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

sfst_transduce-1.2.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (277.0 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ i686

sfst_transduce-1.2.0-cp313-cp313-macosx_10_13_x86_64.whl (178.7 kB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

sfst_transduce-1.2.0-cp313-cp313-macosx_10_13_universal2.whl (335.3 kB view details)

Uploaded CPython 3.13 macOS 10.13+ universal2 (ARM64, x86-64)

sfst_transduce-1.2.0-cp312-cp312-win_amd64.whl (131.0 kB view details)

Uploaded CPython 3.12 Windows x86-64

sfst_transduce-1.2.0-cp312-cp312-win32.whl (114.5 kB view details)

Uploaded CPython 3.12 Windows x86

sfst_transduce-1.2.0-cp312-cp312-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

sfst_transduce-1.2.0-cp312-cp312-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

sfst_transduce-1.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (259.6 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

sfst_transduce-1.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (277.0 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

sfst_transduce-1.2.0-cp312-cp312-macosx_10_13_x86_64.whl (178.6 kB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

sfst_transduce-1.2.0-cp312-cp312-macosx_10_13_universal2.whl (335.1 kB view details)

Uploaded CPython 3.12 macOS 10.13+ universal2 (ARM64, x86-64)

sfst_transduce-1.2.0-cp311-cp311-win_amd64.whl (130.8 kB view details)

Uploaded CPython 3.11 Windows x86-64

sfst_transduce-1.2.0-cp311-cp311-win32.whl (114.3 kB view details)

Uploaded CPython 3.11 Windows x86

sfst_transduce-1.2.0-cp311-cp311-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

sfst_transduce-1.2.0-cp311-cp311-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

sfst_transduce-1.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (259.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

sfst_transduce-1.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (277.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

sfst_transduce-1.2.0-cp311-cp311-macosx_10_9_x86_64.whl (178.1 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

sfst_transduce-1.2.0-cp311-cp311-macosx_10_9_universal2.whl (334.5 kB view details)

Uploaded CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64)

sfst_transduce-1.2.0-cp310-cp310-win_amd64.whl (129.6 kB view details)

Uploaded CPython 3.10 Windows x86-64

sfst_transduce-1.2.0-cp310-cp310-win32.whl (113.4 kB view details)

Uploaded CPython 3.10 Windows x86

sfst_transduce-1.2.0-cp310-cp310-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

sfst_transduce-1.2.0-cp310-cp310-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

sfst_transduce-1.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (258.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

sfst_transduce-1.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (276.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

sfst_transduce-1.2.0-cp310-cp310-macosx_10_9_x86_64.whl (177.0 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

sfst_transduce-1.2.0-cp310-cp310-macosx_10_9_universal2.whl (332.3 kB view details)

Uploaded CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64)

sfst_transduce-1.2.0-cp39-cp39-win_amd64.whl (129.1 kB view details)

Uploaded CPython 3.9 Windows x86-64

sfst_transduce-1.2.0-cp39-cp39-win32.whl (113.3 kB view details)

Uploaded CPython 3.9 Windows x86

sfst_transduce-1.2.0-cp39-cp39-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

sfst_transduce-1.2.0-cp39-cp39-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

sfst_transduce-1.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (258.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

sfst_transduce-1.2.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (276.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

sfst_transduce-1.2.0-cp39-cp39-macosx_10_9_x86_64.whl (177.1 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

sfst_transduce-1.2.0-cp39-cp39-macosx_10_9_universal2.whl (332.6 kB view details)

Uploaded CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64)

sfst_transduce-1.2.0-cp38-cp38-win_amd64.whl (129.6 kB view details)

Uploaded CPython 3.8 Windows x86-64

sfst_transduce-1.2.0-cp38-cp38-win32.whl (113.3 kB view details)

Uploaded CPython 3.8 Windows x86

sfst_transduce-1.2.0-cp38-cp38-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

sfst_transduce-1.2.0-cp38-cp38-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

sfst_transduce-1.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (258.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

sfst_transduce-1.2.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (276.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

sfst_transduce-1.2.0-cp38-cp38-macosx_10_9_x86_64.whl (176.9 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

sfst_transduce-1.2.0-cp38-cp38-macosx_10_9_universal2.whl (332.1 kB view details)

Uploaded CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64)

File details

Details for the file sfst_transduce-1.2.0.tar.gz.

File metadata

  • Download URL: sfst_transduce-1.2.0.tar.gz
  • Upload date:
  • Size: 80.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for sfst_transduce-1.2.0.tar.gz
Algorithm Hash digest
SHA256 e6c9b3670a481f4316479cead9f9f7c2c86e0bf0fc7c629ef7b42330f4dcefda
MD5 e26756387f88841cf07afee05ae93cfc
BLAKE2b-256 9e8f88dadf6f380f634c18f7d472ff2bba73eb146373f3525bcc4516c96ca396

See more details on using hashes here.

File details

Details for the file sfst_transduce-1.2.0-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for sfst_transduce-1.2.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 a276dae17da631133592ff4111bf7b75bced518f84935d024064b77179a4558f
MD5 dece9518133e3a65d59d1fde74b0da22
BLAKE2b-256 eaadc42f4eb292234bcfdfb92c51d795bff43b103c6463712c88289ac1e1a7ed

See more details on using hashes here.

File details

Details for the file sfst_transduce-1.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sfst_transduce-1.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d584bf4e236e074fe5c8b0f47274c03b75fd26e612f452d565e4ee0efb021909
MD5 2ea754ba3f0602eb381b9c2b7f4fcbdf
BLAKE2b-256 bf8496f65a79b639be83e80b68d5b546f75a2d2ad6dfd7f0ff67580c108b123e

See more details on using hashes here.

File details

Details for the file sfst_transduce-1.2.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for sfst_transduce-1.2.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ea0d65dac6fafecb516479d7355b38088d38a097f9fb0cb92331afe5a33c3bcb
MD5 28f6ae93b746cb6c1569a15912142a4b
BLAKE2b-256 e9f8cefad4b8608142da3e0204ea7fb0a330137e3fa8824b2995c583887bad93

See more details on using hashes here.

File details

Details for the file sfst_transduce-1.2.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for sfst_transduce-1.2.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a1510838a6b271a0c7264b3b392f9e010b35006473f604d69ea911a41037f66c
MD5 8b4647a22410a6e1bfed29e6e3a834be
BLAKE2b-256 2741880d9916d6a1e0fbf090a92a900908f4e37698c687b51da486ab65d5f99f

See more details on using hashes here.

File details

Details for the file sfst_transduce-1.2.0-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for sfst_transduce-1.2.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 0c825043970d18eb084321a60b89adf9efadec7b936d452f4dc91f8d78f7ac65
MD5 5fc5ca679cd5d9b1f545573fed693bcf
BLAKE2b-256 23c47a34b6ec1e6b742a91f91fecf61f3a5e397cd7ba3839f76fa841e543e896

See more details on using hashes here.

File details

Details for the file sfst_transduce-1.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sfst_transduce-1.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 552285c823360a905d6c18d81867f21eaad86084f9e6b49f051dfa4dfae5a781
MD5 01bb6748341ac4aac004f7d9aefa7c80
BLAKE2b-256 0199b589eb9e4ddfeed0e5d9b04cff634fa24a1032c0d664a4d651a89d5130ff

See more details on using hashes here.

File details

Details for the file sfst_transduce-1.2.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for sfst_transduce-1.2.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0a2cca833db338419fa09bdd52949f6732a849b18cfd7d9d1551d442c8e85a6d
MD5 15634bb0ed84263540a9a27dffd801f2
BLAKE2b-256 975cdec69812625a48091c3034e9653b9725e201c9cda98a6babc7b884fe0560

See more details on using hashes here.

File details

Details for the file sfst_transduce-1.2.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for sfst_transduce-1.2.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 6a7a76f5ce47b3eded2e536c4ef95adfd80e2f2127869a5339d429b2b98df1d6
MD5 26f5465327e73400893614ddf0a90647
BLAKE2b-256 a4feb6f272fbb58e228da6cb4c9f382ac79f83ac87c4d72899b93d5542bc54f1

See more details on using hashes here.

File details

Details for the file sfst_transduce-1.2.0-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for sfst_transduce-1.2.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 834ec2c01e5809ee87e7bf0258ee0d4d0fd29147827e74583b3015423e6c2059
MD5 2ae469b19b3fa0716e2c1a18787540f6
BLAKE2b-256 dea179d1b928d673db90dc8f9556fc917a289108c700eb016806b0f61edf6b7a

See more details on using hashes here.

File details

Details for the file sfst_transduce-1.2.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sfst_transduce-1.2.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d1a156d007d2c65316f086f07abaf7b56d624301d230a48af70c420a1053fff7
MD5 31ee099bfb59e1c7f487b6ef308bd52d
BLAKE2b-256 66b1900c071d46e6d67092dd7b3f7bd63a6d78a6f6aa88e7817b487a2334ac57

See more details on using hashes here.

File details

Details for the file sfst_transduce-1.2.0-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for sfst_transduce-1.2.0-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b27c9ddbb595bfd87749255d8270bc3c9059f219b4f4492a4bc224b8d4d8af09
MD5 63393054ccf3efe1bbc8f0f96f4ed184
BLAKE2b-256 6ca55a80b82c61dd5d012767bc0a5eadf7c6ed97ec4a216fc897251a1bf0a1f8

See more details on using hashes here.

File details

Details for the file sfst_transduce-1.2.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for sfst_transduce-1.2.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c1c229e0cba6005307bca1c568806cfea7fb284608753187bbd8a5f6787673a6
MD5 c5c3e79a9c8ab5505e3ac5aa734eec90
BLAKE2b-256 843271c179f7fb19114a976ef1a64f28ff816429cb357c041dd925ec8626408d

See more details on using hashes here.

File details

Details for the file sfst_transduce-1.2.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for sfst_transduce-1.2.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 aac076010e561c98397aebddc0af9e0d40203d5ebd64258c4d9a16141f060535
MD5 32c52b89f73f4bb3e96aa191d932e799
BLAKE2b-256 d4f3937a0b366f4d6c05d32a183c0b651356bd3721ab9c28851dce4a596456cf

See more details on using hashes here.

File details

Details for the file sfst_transduce-1.2.0-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for sfst_transduce-1.2.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 f3f2612a43888b8b95cb23b666732ae7c13eab4a42a9270a1881b697bfb55b00
MD5 d03cc8046e7fd59c64a35d75dcabc58f
BLAKE2b-256 c2ea463ad04cfc98cda05e85e1bf527e5998516073c26e21ca3929a83a1d541e

See more details on using hashes here.

File details

Details for the file sfst_transduce-1.2.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sfst_transduce-1.2.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2dc5b6ba92d40c60d37ba4f4fad6852785baff56954241bc8705dd437bfa85c5
MD5 76ff33db92965c9b08388bb65dcd7684
BLAKE2b-256 62c827c0106085f47d1fdc2c2a67482363b6e8440a0fe7cec358d311c0a5aceb

See more details on using hashes here.

File details

Details for the file sfst_transduce-1.2.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for sfst_transduce-1.2.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 377bd9cec5ab1182932d000b1a617a4fd192d27ee5acbaef9588b8e4800d47d5
MD5 76912c095a82beb13fea68ec56264497
BLAKE2b-256 2ccce5d45bb7a36b26aa751b6436ebca460e9e6c91d466437a3ad92be6abd473

See more details on using hashes here.

File details

Details for the file sfst_transduce-1.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sfst_transduce-1.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6e61ef41e44ed12685b981e19ff4ad5a9742c435b8bc073f80aa35805278fb72
MD5 1deb472e1cead5e101d5bf5f4f926c74
BLAKE2b-256 737c73da7faeaa08cec15453a2df42fccdbe5c3a397de92bafc7d2978b8e03c8

See more details on using hashes here.

File details

Details for the file sfst_transduce-1.2.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for sfst_transduce-1.2.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 428ee83072fa0944b60a96e4c9366a4f2d9f4857586d6e5b163a6a4f237c0cbb
MD5 7c7acaff7dbd547c7c73b302d3f5bdc4
BLAKE2b-256 74c6fa4e4e7ea08d9799c547f1587f406a4ec3ca36139ae9c0d274dba9e53e1c

See more details on using hashes here.

File details

Details for the file sfst_transduce-1.2.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for sfst_transduce-1.2.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d999a2096ebb9a892e9149348a493a0b559a92c6c733d0a5c7513d59ea28f0b1
MD5 a2ceff1a5c364eef912705ee33d79191
BLAKE2b-256 1898cda1f85b5891caff05c4cb1eceabbbe36ab7be0c93fbe411a6557d5a232e

See more details on using hashes here.

File details

Details for the file sfst_transduce-1.2.0-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for sfst_transduce-1.2.0-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 f66a2e52f9b0765528782c03c68dc9f728299e696cf647f8abdbb6769b024b74
MD5 912e535963ebd20a7375de72f58b1ea8
BLAKE2b-256 3550299f901d195b8a9a109a44486cd8b293257f6204fdcab03f9b73e3b6f587

See more details on using hashes here.

File details

Details for the file sfst_transduce-1.2.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for sfst_transduce-1.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7f60b4746ad9b68e862073521097d579e20e1018fed00dca88c1f9d710e2e4fd
MD5 4d6e395036785080ea74ff63d17a1eb9
BLAKE2b-256 d534dd98633f1d26cb1476d7cf676695de53283c89929954b1c3ba61683ef83c

See more details on using hashes here.

File details

Details for the file sfst_transduce-1.2.0-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for sfst_transduce-1.2.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 2049d6988b52625a483d4d0b64a2f10883c98f26c0696f09d2a1e1c924c07de2
MD5 4457028e5c9e8f8fa12271bd2c7865b8
BLAKE2b-256 0fd34de0ade08a6a7b6746128b7fc160c157da2d9f9051ec75025f5817fab6de

See more details on using hashes here.

File details

Details for the file sfst_transduce-1.2.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sfst_transduce-1.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8881b1f562ffbd8e3481e832bd3a601df6215c59c3540c29193011420f08efc8
MD5 5215902692de4a9ca32a085178246955
BLAKE2b-256 d0c084ba04f3538a5fbf72e020d9be30d56415797de0e71374b71011f6b4b6f1

See more details on using hashes here.

File details

Details for the file sfst_transduce-1.2.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for sfst_transduce-1.2.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 27a69b7149e29abb21b01c959999dfd8bd8730c14be8af77f6848762c1607e82
MD5 2419c2e6c71096bd84ee1476f9a8a726
BLAKE2b-256 eeabb9604781766fda5985f9be8626c11270fb7f67bf215799148de9b6fc8c6a

See more details on using hashes here.

File details

Details for the file sfst_transduce-1.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sfst_transduce-1.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c213d2dd0cb9df7db8724eaff94ead24c6f50aef6050d23c1e3e93d8e63f9817
MD5 5f1ec1c2dbce62e28ca44cfed1feb338
BLAKE2b-256 374b4f4cbe135c79fad63a2e4f191914029b3b272eb409d2b8397f94f4d0a085

See more details on using hashes here.

File details

Details for the file sfst_transduce-1.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for sfst_transduce-1.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fb529e50b16c330cd69730cf39af64898973bb2aded6a7fe2ce364580cef8738
MD5 6915dfda228d07e2fc5f22bfa885c063
BLAKE2b-256 a9c0876ae50fb4464ccea5f1385a131a642aaad157808d92a05fa47178c0cbcf

See more details on using hashes here.

File details

Details for the file sfst_transduce-1.2.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for sfst_transduce-1.2.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 271b002bad22806973ef2660db200936c39dd7b80f4eeee2dd4d058bf72b166e
MD5 ce141113bb296b43ef7dbd574e310f67
BLAKE2b-256 9bf065846b4f69e5d80b5ac31334b91df7f88c1fb85cdd1646dcb9159888937c

See more details on using hashes here.

File details

Details for the file sfst_transduce-1.2.0-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for sfst_transduce-1.2.0-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 c0f8555b06662305ab018d7c4050d5a643dd3b7e3003a824dc10f4730144fa39
MD5 6a7de9dd1d21c078f5a4b21e532e8b80
BLAKE2b-256 25bed064b515c9e076a4c06f5cab579ee4af99ac6abb359f305c8980b8fd7cd6

See more details on using hashes here.

File details

Details for the file sfst_transduce-1.2.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for sfst_transduce-1.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9365c21e9e7c793f0df36501d616ac4f721f8ef7a70cea85d139413bb2acd75c
MD5 38a77c998160c75b91cbd662d9f170c7
BLAKE2b-256 d189ab2e046b5f7b537b45e610cee659c9415748b0eed95baf4250795aba7047

See more details on using hashes here.

File details

Details for the file sfst_transduce-1.2.0-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for sfst_transduce-1.2.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 53bc52629b7cc0be5627abd746d1a6af2535bd2ed93a6306c3c739fb867b0da3
MD5 4f54b7767c09c9fd06b501d5541a8745
BLAKE2b-256 fef07ed6624587684386e1ed04fd1b0524116efda8942f794fda9461b3c0141c

See more details on using hashes here.

File details

Details for the file sfst_transduce-1.2.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sfst_transduce-1.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 06b20d6ea6884b6420065db2232ed964e0786a73ec10964c7afcc2a7227c1c2d
MD5 dd5f12513a53a25427e3709b07a23230
BLAKE2b-256 c221b9945d4cba19e9cd73361cc5967b0b8b9be054aab3ed3832619b0118f470

See more details on using hashes here.

File details

Details for the file sfst_transduce-1.2.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for sfst_transduce-1.2.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f90ab1a67770b4f65042f47f951742629768051f94c46bbcd0cbcacf5e23a2ee
MD5 d5774b97b666af4d0935d347b46b4fc7
BLAKE2b-256 97f7c871fd37371e820e6454142ddba4caff79013d11cd9b42e3450f2d3f117a

See more details on using hashes here.

File details

Details for the file sfst_transduce-1.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sfst_transduce-1.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7805ead741921e0ed8a9c2b9305cb9bedc678f538766974a7ba1561700f03acf
MD5 221a9a4cc1ab548f024309a701b242d6
BLAKE2b-256 184d276e96f3366936c799a3849545d90c4167eb0ef24c38deeecb1f18099557

See more details on using hashes here.

File details

Details for the file sfst_transduce-1.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for sfst_transduce-1.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6fe080a0befffa3a080c3bde72a64867a4b177c023743ce7140ed198fa5f96c1
MD5 cc0d9d0b2c807d9a963d4c2b5fefae34
BLAKE2b-256 e3b4ced2c4922f272891f55af8cbc649b66b0c3a6a1a75a6fe142729c097458e

See more details on using hashes here.

File details

Details for the file sfst_transduce-1.2.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for sfst_transduce-1.2.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6aedfd6d57900f81d1c5efae5a2c5d4bfa3a0f5a6a5e2c149da17802ce231ed1
MD5 370f438212811c035c2144acb87c3f47
BLAKE2b-256 2c67d1b6104e9bd4ac608b367e4cbb270d234cb94bff9f3205b570b70a4aa14d

See more details on using hashes here.

File details

Details for the file sfst_transduce-1.2.0-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for sfst_transduce-1.2.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 2407f70f3b2fabc814b5aabd6dae21674a588f2fac17c681874c6bdf9a9eb43b
MD5 3636c5c341a99c329494362b738983da
BLAKE2b-256 42fcd0db870cd162514640333b30744f23b2aa857add980ab2dd32cf5f8e636e

See more details on using hashes here.

File details

Details for the file sfst_transduce-1.2.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for sfst_transduce-1.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1b37756d3e3c1249ef40081994adfc7f02a9c713384e08b55427a319591d0651
MD5 cb567b22f56365773a0e7b0ea0622f7f
BLAKE2b-256 4997b34a9addc4d1ef939dce46c5684c3925079a680a6840450cf33c65021d14

See more details on using hashes here.

File details

Details for the file sfst_transduce-1.2.0-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for sfst_transduce-1.2.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 3ff987b41d65d67179be6e1210fe7dc69a28e57c366ab7671c4c37311a0c38f8
MD5 0fca8dee744adbdeabd5fce2b276d19f
BLAKE2b-256 59a89564591fb32a8da635e407936431c8556ace8df171b14c828482dbd227a3

See more details on using hashes here.

File details

Details for the file sfst_transduce-1.2.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sfst_transduce-1.2.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 15ffe1ecf326dfa09ea6ea716af19db3e2a7083d79845315ff33359694cee285
MD5 ae3da46a1d3943bbbe899f35d3c05afc
BLAKE2b-256 b912cf5d4fa465ab0f7eda906cd30167a84af37d64b6f0fe93a4bff98ced3c7d

See more details on using hashes here.

File details

Details for the file sfst_transduce-1.2.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for sfst_transduce-1.2.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 eeef3eba374963bbde79ff1d5f8c3a056ee26ca662c3e4d4fb6c81c3ecc07123
MD5 e355f3d067f8445066b2a6cafa6a1e6c
BLAKE2b-256 4c72992a7f2d0616f9d2e6867e1558798ae70caf69be8aeb446046fc6adbb84f

See more details on using hashes here.

File details

Details for the file sfst_transduce-1.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sfst_transduce-1.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 21e0529e39b0d74632dd08a9f0ae6353f070e58a9925832a83e1b9eae654bd40
MD5 af6827b8a56fe99277e9cda12aa7ed0c
BLAKE2b-256 8570ae83b89b03bc87a976a4a5575a68cce6d3bc3e9d3aaa07e0b9913e8f46ed

See more details on using hashes here.

File details

Details for the file sfst_transduce-1.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for sfst_transduce-1.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 475e0dadb4684b6862c6bb975e3580ceff83853586a15176c45c9b48e5510354
MD5 c23d1cd45ca7706aac57a70cda8e08f7
BLAKE2b-256 ddd7257b0c4a5bed13555ac1efeecbe773dd08eb1a09673cefa45c9d45bf39c9

See more details on using hashes here.

File details

Details for the file sfst_transduce-1.2.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for sfst_transduce-1.2.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cf22e28874bfd4012962f80cb38aeaa5f15aad5bcf3a8f59b982fa6e4ebb20bc
MD5 214f1df97bfe35951b6ee7d89ee71f39
BLAKE2b-256 40c3319d4914a98c528c0fd6fc924926dbac45406b4ae9e50a12ff1070160da9

See more details on using hashes here.

File details

Details for the file sfst_transduce-1.2.0-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for sfst_transduce-1.2.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 6f63245955f070c310dca6b254d5854e07689b5a7a1c3bc165998e94f5a66acc
MD5 8bf970e2ba32840d80156e473ccac93c
BLAKE2b-256 18665b318fd9a5e1b02064b9cd8485715565f6d3db9286d78b9ed7e5741f2780

See more details on using hashes here.

File details

Details for the file sfst_transduce-1.2.0-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for sfst_transduce-1.2.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 435e8cff93351c40d62d5d6c5353547a0e1e8948db1fcca294bc4ec1439e069e
MD5 8013fb8ec52c8376974acd28f721557a
BLAKE2b-256 9026673ad9fbcac7b7d4663766a95248fd8d60f7b7e642e910008148eb8cb6bb

See more details on using hashes here.

File details

Details for the file sfst_transduce-1.2.0-cp39-cp39-win32.whl.

File metadata

File hashes

Hashes for sfst_transduce-1.2.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 7c177ddeedf21089a141104a1bedd41d178d56a7a44e8ceac845a60333b13fe7
MD5 3daec4bbceb8ed199ccaf81ddbe72358
BLAKE2b-256 662646cab5efcedee38bf6bf87e483c9f2cf940f3e363b1e4303ec565fd8275a

See more details on using hashes here.

File details

Details for the file sfst_transduce-1.2.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sfst_transduce-1.2.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4843eb567416213fe8965f85078dac032334df279c7645863847851c93e33707
MD5 4072bd15c76ee7d38e65509c8477f8c8
BLAKE2b-256 85350abb1a91b98b7886f57b47d1467010aca26447f8d581cab4c06171e69678

See more details on using hashes here.

File details

Details for the file sfst_transduce-1.2.0-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for sfst_transduce-1.2.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 63ab32136f59e2ac3a49a678960cdaa7e1d04fe2b461e4df0a230b3d54ea7687
MD5 be87c00571be8aabead91d3287df203c
BLAKE2b-256 a128ea2035e3731a49db708960c241812678bd9fae54d587a718f5c374164bef

See more details on using hashes here.

File details

Details for the file sfst_transduce-1.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sfst_transduce-1.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 50bb50c83732e8554e8e3135a3825f241a6c98585ceebd63137f76c498f20dcd
MD5 4b65f0a9a832c6cb0d3963283e930b6a
BLAKE2b-256 a071fe4c5d1c74850e9b6e654c15ce5ebe896cd55d90d18253e4bbad42dcf589

See more details on using hashes here.

File details

Details for the file sfst_transduce-1.2.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for sfst_transduce-1.2.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5c9798a0dc599ed6d75b899057252e2427a4b37a4a2b7406d6b1c5970a3a142c
MD5 6012d56502da90179ae2438500af012f
BLAKE2b-256 37f1d3a6dcd8ddf729d4565f8d15653e92026c455e646b53d91057c9a73b2e67

See more details on using hashes here.

File details

Details for the file sfst_transduce-1.2.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for sfst_transduce-1.2.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d8809bc276788f1bc292c768542703a216fc498a0594eb3e98683e45cbbd09c1
MD5 a31e1d3b5551850ed6d8428909e7f033
BLAKE2b-256 09afbe1efe8e071c1a511801bb5252085d3f78f827b97d5193c3b73905973680

See more details on using hashes here.

File details

Details for the file sfst_transduce-1.2.0-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for sfst_transduce-1.2.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 beb143adde22ad4796689f2823b045bca16da1cc3f952cb15206636624640576
MD5 8f3d5337aaf34c964dd4b5be954ed427
BLAKE2b-256 559456b39c1309eee689a35f2f46cfc3f3595afc680176456b9ba949365f1d32

See more details on using hashes here.

File details

Details for the file sfst_transduce-1.2.0-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for sfst_transduce-1.2.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 dba101d0c4b118f3cb2a60eae90d27a98cc3c6361f97586b87cc51bab0f44a0d
MD5 b3b02d53d8775b31a2b585b2df03bcde
BLAKE2b-256 9bc1ed7cd77b29e66a80ecd22f47027b0ae57ad050a34af2be13ba7c40b82ad0

See more details on using hashes here.

File details

Details for the file sfst_transduce-1.2.0-cp38-cp38-win32.whl.

File metadata

File hashes

Hashes for sfst_transduce-1.2.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 20467dffa5f6c69b588c4af7b44f723081c6cb66b678e9c296189c1ae13a39c2
MD5 d06ff4c580850552f5d4a3428b68255a
BLAKE2b-256 7980280483b5a602b88b49f4a97184dece5b673cbeaccd5306da4bb5ca124436

See more details on using hashes here.

File details

Details for the file sfst_transduce-1.2.0-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sfst_transduce-1.2.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 55cf62d167c1b14f663a5b2b85a8368559945e99e854a35d0ec8f2886359f66f
MD5 8032312bdf14c1cc5b2124b53d20057e
BLAKE2b-256 d1ab841c79c59cfcd09b89ddac65bbc5aeb29c991bd8a3c7c77013d9ff8a5c33

See more details on using hashes here.

File details

Details for the file sfst_transduce-1.2.0-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for sfst_transduce-1.2.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f47bb13e05a2f74038d0e367474c1e1d0ac877fc9177a76d9eac8d5ce2d13e78
MD5 f08fcce16c456246ca2c86cdeffc3c64
BLAKE2b-256 e492d0cde6aa619635a781b1fe461ae34965112c2532f2fe8127eb3b9049e109

See more details on using hashes here.

File details

Details for the file sfst_transduce-1.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sfst_transduce-1.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f5f01a015472420e7e083c4c0d1f632311c491530c2b18536291dd5637f370e7
MD5 265455cd75baf5c3b118e25cd161ba40
BLAKE2b-256 848dfe727d8ab87987333d46636c34f013adf857202d3570778ae50617e4e9ea

See more details on using hashes here.

File details

Details for the file sfst_transduce-1.2.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for sfst_transduce-1.2.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5b7a0274972f35847f2cc195fa6a7bfe7353b97c15b6ab02c1e806ec84f1fecf
MD5 87e1f5713937f4e729b20fdfb86010f6
BLAKE2b-256 1df74a6cf39907ba0fd91905888da22b9566206cd9b3adec6d2deb1fe8f38e1a

See more details on using hashes here.

File details

Details for the file sfst_transduce-1.2.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for sfst_transduce-1.2.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9a3eb1644e0cf222cca37ddff635d49c4b10f0fcd7aa8a0630c47e04ebf1c29c
MD5 ae51f53dd996b8eeb0533aa3b9604619
BLAKE2b-256 03e0edbf8f3ed07506255054d7d665cfc11ae4dba67183782a61cac1afeb3956

See more details on using hashes here.

File details

Details for the file sfst_transduce-1.2.0-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for sfst_transduce-1.2.0-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 755d416ef55cedce357ffb6a8c7c03af07ca2a8afa8c6eb6d7c7e89e70162a1e
MD5 87a66560baea474f3ab43f002f35ce53
BLAKE2b-256 594846b7a67dc5da20258bc3eeb180948632618a0f8420ebae3cb2579a0d6e06

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page