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.1.2.tar.gz (79.5 kB view details)

Uploaded Source

Built Distributions

sfst_transduce-1.1.2-pp310-pypy310_pp73-win_amd64.whl (128.9 kB view details)

Uploaded PyPy Windows x86-64

sfst_transduce-1.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (236.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

sfst_transduce-1.1.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (254.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

sfst_transduce-1.1.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (175.3 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

sfst_transduce-1.1.2-pp39-pypy39_pp73-win_amd64.whl (129.0 kB view details)

Uploaded PyPy Windows x86-64

sfst_transduce-1.1.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (236.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

sfst_transduce-1.1.2-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (254.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

sfst_transduce-1.1.2-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (175.3 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

sfst_transduce-1.1.2-pp38-pypy38_pp73-win_amd64.whl (128.8 kB view details)

Uploaded PyPy Windows x86-64

sfst_transduce-1.1.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (236.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

sfst_transduce-1.1.2-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (254.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

sfst_transduce-1.1.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (175.2 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

sfst_transduce-1.1.2-cp313-cp313-win_amd64.whl (130.6 kB view details)

Uploaded CPython 3.13 Windows x86-64

sfst_transduce-1.1.2-cp313-cp313-win32.whl (114.1 kB view details)

Uploaded CPython 3.13 Windows x86

sfst_transduce-1.1.2-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.1.2-cp313-cp313-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

sfst_transduce-1.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (259.0 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

sfst_transduce-1.1.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (276.4 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ i686

sfst_transduce-1.1.2-cp313-cp313-macosx_10_13_x86_64.whl (178.1 kB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

sfst_transduce-1.1.2-cp313-cp313-macosx_10_13_universal2.whl (334.7 kB view details)

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

sfst_transduce-1.1.2-cp312-cp312-win_amd64.whl (130.5 kB view details)

Uploaded CPython 3.12 Windows x86-64

sfst_transduce-1.1.2-cp312-cp312-win32.whl (114.1 kB view details)

Uploaded CPython 3.12 Windows x86

sfst_transduce-1.1.2-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.1.2-cp312-cp312-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

sfst_transduce-1.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (259.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

sfst_transduce-1.1.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (276.4 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

sfst_transduce-1.1.2-cp312-cp312-macosx_10_13_x86_64.whl (178.0 kB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

sfst_transduce-1.1.2-cp312-cp312-macosx_10_13_universal2.whl (334.6 kB view details)

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

sfst_transduce-1.1.2-cp311-cp311-win_amd64.whl (130.4 kB view details)

Uploaded CPython 3.11 Windows x86-64

sfst_transduce-1.1.2-cp311-cp311-win32.whl (113.8 kB view details)

Uploaded CPython 3.11 Windows x86

sfst_transduce-1.1.2-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.1.2-cp311-cp311-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

sfst_transduce-1.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (259.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

sfst_transduce-1.1.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (277.0 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

sfst_transduce-1.1.2-cp311-cp311-macosx_10_9_x86_64.whl (177.5 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

sfst_transduce-1.1.2-cp311-cp311-macosx_10_9_universal2.whl (333.9 kB view details)

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

sfst_transduce-1.1.2-cp310-cp310-win_amd64.whl (129.2 kB view details)

Uploaded CPython 3.10 Windows x86-64

sfst_transduce-1.1.2-cp310-cp310-win32.whl (112.9 kB view details)

Uploaded CPython 3.10 Windows x86

sfst_transduce-1.1.2-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.1.2-cp310-cp310-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

sfst_transduce-1.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (257.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

sfst_transduce-1.1.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (275.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

sfst_transduce-1.1.2-cp310-cp310-macosx_10_9_x86_64.whl (176.4 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

sfst_transduce-1.1.2-cp310-cp310-macosx_10_9_universal2.whl (331.7 kB view details)

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

sfst_transduce-1.1.2-cp39-cp39-win_amd64.whl (128.7 kB view details)

Uploaded CPython 3.9 Windows x86-64

sfst_transduce-1.1.2-cp39-cp39-win32.whl (112.8 kB view details)

Uploaded CPython 3.9 Windows x86

sfst_transduce-1.1.2-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.1.2-cp39-cp39-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

sfst_transduce-1.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (257.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

sfst_transduce-1.1.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (275.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

sfst_transduce-1.1.2-cp39-cp39-macosx_10_9_x86_64.whl (176.5 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

sfst_transduce-1.1.2-cp39-cp39-macosx_10_9_universal2.whl (332.1 kB view details)

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

sfst_transduce-1.1.2-cp38-cp38-win_amd64.whl (129.1 kB view details)

Uploaded CPython 3.8 Windows x86-64

sfst_transduce-1.1.2-cp38-cp38-win32.whl (112.8 kB view details)

Uploaded CPython 3.8 Windows x86

sfst_transduce-1.1.2-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.1.2-cp38-cp38-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

sfst_transduce-1.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (257.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

sfst_transduce-1.1.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (275.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

sfst_transduce-1.1.2-cp38-cp38-macosx_10_9_x86_64.whl (176.3 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

sfst_transduce-1.1.2-cp38-cp38-macosx_10_9_universal2.whl (331.5 kB view details)

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

File details

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

File metadata

  • Download URL: sfst_transduce-1.1.2.tar.gz
  • Upload date:
  • Size: 79.5 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.1.2.tar.gz
Algorithm Hash digest
SHA256 216343bf189396d1a7e40583a1bc96fe3c79ad69e72c8ce3ef7f3d6d43bd3f1f
MD5 5b73b2c6dcc9625c76c1efa9d85877fb
BLAKE2b-256 5c904e2661c06364aac5ff92a13873546e96c9970a80654259368d5d6ad2fe11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.2-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 7d1edaeba5e560afe29e2751b0caf8edeba58113e5e4f2ba4eea69f7865ffcbe
MD5 ccba31f844dc97e949b76426c9f18230
BLAKE2b-256 753de11b8aaba5a8c85c6502ae706c34b8cff0eb5c801a5818899fb2e1b27a43

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 20dca1afca40a33f644952d6a9808efc6cb323008561304b096bbc945f9992c4
MD5 e1177b185f5b5b29439de231f6ade447
BLAKE2b-256 3abac6c17b5c8e8a398ba696c0897f420696f3ad78ba979b3fd12b87864871cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 17194c497d098b45a212a256094a009a3641f66b768320237963e80e3a11ffdf
MD5 854eb519ba769997b4cda5e61f1328d1
BLAKE2b-256 f18e481a6f2f0582e141107c4f13c6c74c80e650e9c4b448e09257edead878b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 508d5e9cf3aebd238c299a77ecaafc2552acd733d3c7647672d8aa4f25a7bf7a
MD5 c9275bba8758ef147f492293ec19ce37
BLAKE2b-256 7f28302b3904a291a0b4c9920cb5a7a4c28200a1bf376ccb0df1214ceb29ea15

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.2-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 9abb96018849b46d394d15dba921bf5f76112996e9fc8f7337fef5adc3e57bdf
MD5 e3ae9747962b61f19d54fb64b7d0af0b
BLAKE2b-256 d252fb2a5f2046d9eb243704d630e0233bdb92771373f38cdab153de991befa3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0ca310f2f1aab172a3ab1a3acd426db3e885d12d87148d581e462588e2a3be6b
MD5 e3668060986b0118985b239fe1d75c4b
BLAKE2b-256 005b3e17290248f576769cdd8313f1365ec1f631832eb206e5c52acf973bc203

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.2-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 24e4fa8a935118b9d7a40e0bb980e51554e9e9f3dda59bf179b4d1b1620df95c
MD5 b0a5f875df060adcf451fc6d18d7d227
BLAKE2b-256 e6b4f8b4276c0ad164ea5b8a4280152dcb9a7bff7298349448fcc560aec25453

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.2-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 7884359f42681c88143105f329a285533d1d1b72eb93e11a50bd79ab2cb39276
MD5 b97f48c1b290052acda1531055c4bdfa
BLAKE2b-256 46699f54bd3bb3edc367d4c81042849cee7d82ea77f08be9aed1b4f24561104d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.2-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 a9bfe023a819ea4f282991294b066bbce0c31cc0c199ceb309d93bc068257ccd
MD5 cdd02629f8d0761378cfd9d514ecbeb2
BLAKE2b-256 6568974b9b7681ba09552fa62705cce69306b45a014f11bd3021ca20af2a54d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5c23fe81ccbab5d3eb9a6673ab198b07ca0172777c9db677510d1212147d1262
MD5 14dc2567637bc2f941d09dcb12a6d23a
BLAKE2b-256 cf4878ea2c6bc3eaa2436e2e300067de239ac65111da73d8fecfe94d83a5fce4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.2-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bc6abb4f74751d838cc7a798141ff0f300057d869df3bf121689a2b30d768863
MD5 ab0b3d61635623dce5e8bdcd1ab1a6f8
BLAKE2b-256 92d693a9366b2c16a98f1cac17ca99c4861659e0df6a820d8961a337548f2e68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 74512a4366b3248432234ddde945444ae8aa8b790723d00f781defc632ce5451
MD5 93fe4102a0d588b8f6c6e6127fc59a0a
BLAKE2b-256 e8373ed6308eea9d9631535a9b65bd59450dbeaa6ab7464ec18645ca3568f83d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 644b079f270ed7276cf75c26e6d978a9f69b96b03e8e88dfe8d353e51fe65fcf
MD5 37037cf3d795b1183eacb1c66fd3fea2
BLAKE2b-256 f18d21c6b36ed003e7f913014a70e1af3f7675cbdd9c21d07d22c35f237ba535

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 92c4807f2eb8ef22f63ba5b6d3c3155589ca4f6cc99e015732c28086fbab9c5b
MD5 c5ae485a439d7a5d9b59c548394d77e1
BLAKE2b-256 ab853619ab1bf90f521f7b263f5dc2c6819dbf4d4409899b15cf15034dcb6eef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cf199674aa17e229661efb47de743f3daa1316bc57227e4fc5a46f1cfb885817
MD5 ea3fbb29fcec0b1be7ca68583c55063e
BLAKE2b-256 b3bd0ae2a3ee86679115057ed52abb4402e4cc3ea95d08a09c861f8af1856d3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bfdab5d2645f75ef6b89794263d98dd48da5f196527e862543fd02bd0a1618a8
MD5 62e99a0dfec1d6a7b11b6731bd19ef5e
BLAKE2b-256 466926d12b4c1979cbac5ae852a1011eb67fed94cbdad04284f292df12b964ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f28ea52265af1c9dc89662188ebcaf9863c7227fb1e9abc5d72ba72fc2502ae0
MD5 0ed1f7d754cd613a37a7f45ca2b916c2
BLAKE2b-256 79b55613fdc38bb836ecdb64095d2e7fa9beed7a9038ffcffe18d87934fef99e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4245835fc3065d1b5f8839ee2d7c012509ff70012d6600ceacd9b315c2755b2c
MD5 5260b2f7457a532e194dda0900307692
BLAKE2b-256 2f255a83366d4a6f0e6263b27decd6fde146211492785719b4dc6d36a6386e6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 51fdb58bf98e8c749faf7a695d8b1cc704774a43b7cae48b0cbd292354dd6d5b
MD5 c93e111467278b9a0caedc21b751dc39
BLAKE2b-256 974941ab8c4526b9287d484386d7b3519ec490e79b14988c0f59421a9eebd408

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.2-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 c232b2ae80800b1abe6aa9fbf0af4bb963de803e66e7cd154cd78c878cc48a05
MD5 7a2032bc653b2469d32fcee187889b41
BLAKE2b-256 3a56b98baf2545b2df549524e2425d46570a7a0dd23c62ca64b123ce79f267da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 73499ce962a23cf58ff0aaaa80db98e36e80fba6323ce897ea26ff3ce477a80c
MD5 83a626be4472da2ea7b3ee53b1b8364a
BLAKE2b-256 720a43e9d1f3b7d1f7a8b5687bd20ec58a511d1cf9c931d7245d02fdfc3910b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 6578bb25288f9002c42f53ac00c22f782065f6961ad8d2b56c582ffd49c1ccde
MD5 6e3999d1f31e2a114eade08cee1961c3
BLAKE2b-256 360e68a34527ddc480feb23b311f7d6b46c08c5450a8351d901b51d3af834a72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f050d8973084258a0f98bbb05629533e793d63cadb5869cee46b145c77e02fda
MD5 448fe667edb8f60eaea046a2268cd3a3
BLAKE2b-256 50a95c1125300f9abfff50e6c7fcd031aa0a84676feca965f3fed177bbefaeb8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b697ce55732688f7390bc2f5ec4c62e2b809ef0958297b20ed19636fc3ba14e8
MD5 b023c7808c20bb44c15072711f194645
BLAKE2b-256 78273c9a3d4617018ef5d51672cad395cc05df3295994aa280caa6ac4a2447dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ddd950a566b99c5237282cb7584c5f7c6e9d6476242bf75f5f4ecbbc8eaeaacc
MD5 014a462cd807b21616b3f6f1cbafaa51
BLAKE2b-256 86c74d2b6f3c0b1fba35da476d8945f15b795a25ec14414a2322e16fec8f02dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2a1b33d0e408ef6bd507742036c07a89dfda92922c8460b2f5df3ccc2850fd8d
MD5 dabf3ef862591fcd50f035a3621d722c
BLAKE2b-256 ee545e1a87c9457398b014526e7936a6b13c04eb8db1fdaf497dd488568fd9e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d129b7c3a592feea258acef61351c535c1ae6d33d5dbdb9c8dd8de752e924392
MD5 b2666fe5af3db8a3b3c0b60b5fa6eef6
BLAKE2b-256 2672fbc57611df5cfc6db19bb4e181937150788da6d3284ef785575e773e3a19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.2-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 c394030dd3cd0ad44b341f56951269993902b7162301b90abf3728b83b2f4688
MD5 b1221c06e358c5b1ea7b6ade9cc532ed
BLAKE2b-256 b90a70bb65337dd7a5a0b99076d656ae9dde1a53d996a654a825787d6b1041b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 483123c1c0d20091868a1bfb89b7ede9ee5698857b4fe4b9593b06b1b0417fa0
MD5 4a73639b3f584eb27165e0e9008ef8fe
BLAKE2b-256 b1fd6aaf87011cb95f682034b9019503385f7d296754627b80a6833c521f9258

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 ac7a17eae6405e3ba2984824f38bf2659c05e0cb2647428a58b8956cb8594746
MD5 d78066b0b72ac6e4b2195dddbf3cfbe3
BLAKE2b-256 a8f9dca518221c8aefc41a971c1820f647883ead76dd22a2c46e0cda3bcfa106

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 df01f0f9ea8feebeec6a718688c2aa2f93277c1bb362828922acba8bf7073ee1
MD5 01f5d49460143a30b211ba51bf073c92
BLAKE2b-256 6e71ef26d66cc68d17c73974640c208ace7d486f370beae2c9997e56de688eff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5024991eac04e2371a295f23684dd45a9db9584faf8913ef4c14cacbd88eba14
MD5 dd5bcbb11ba66142fabc247ac6605a35
BLAKE2b-256 0d0edafee10caf76167a0df77c22935c54e05ef8ff0528232a0675b939a2b12d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 13e1e73ed10834c4d186760aa45c0b20d7f98fdc23d45702cae3eb32304563e6
MD5 65b183ad6678277dc28053cf1440f459
BLAKE2b-256 48f54ac8300288ea1f6650255a8bfbeea4fc247c07a2146984a74bbfd60000a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b98438331f7d273dc332d3c3abce45341a7bfa96fee13c5e1d354a29da3ac6fd
MD5 206697ec2526812f8b88c85f0cebaaf7
BLAKE2b-256 9173f991f9ed6637259dfea3de512afeff93e337625c37697ae5923ffa7b0e94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 260befb482a50dd17ee40ed92247c263bf2ef05b351bbe97ee68521a032ad7f2
MD5 f6fcc509cf2b5d0511933668a4636571
BLAKE2b-256 951be7cbbff3e0cec305a838c88b29e1905dcd6e3dcf4d19ef192d27e3d82b5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.2-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 064b96e8ec8deda2a03990f2a62a483ece77d7f9b0429fd8f7c0e4db4122e9b3
MD5 c3b6ab723b29d2105f83128af4be4150
BLAKE2b-256 9d716c6bde597664f7233245d55578b1167fb2c208dcf98ed5bc28e056cf392d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 73846ba91d6dd7920ff37c86c8bcf3a7ca64f60b7e5ced45bf5d9114bf1b0ac5
MD5 8f3a9ae93eda8dcc8b93ee8f2914d745
BLAKE2b-256 4a4cd591712c7d5cf3a4315654a8bcb7fb144084c905ca36337e5e184c58c427

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 fdeab3afe042494a9f297189137233e54eabd533fb78e0146fdd8e10493fc27e
MD5 0fcc37b085c204fcbc837adb8adb678b
BLAKE2b-256 37c69db37e8c4e5ba417d3bb4d5995254a69879352a0344c2c8a05914d4173b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a7a40d5840c9035b38df97e26126c0564f15166adad2761e6a8431d5579efb95
MD5 ccd625bc3c1d1fbeb722fd6077bfc9d6
BLAKE2b-256 c3b184f37563b30e4860511cca64c530c51917648804ef9d6119ff6b57a37233

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 85446b6d1155c9a6e5728b3ed3a1a7309476b2e907261033af2884849a00bc24
MD5 f8bed72a7a70176bb7a69651d8fc204e
BLAKE2b-256 e9f89c363d08ded0ca948550fcb71bbfbe874d37901e2b218a50f70b4f1c51c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 94e54a96d1653fad95810561c6754f0da75b6931cb88138d9b98ef89db3e86e6
MD5 799fe8e890131f84f2641eea766a3519
BLAKE2b-256 4b939404ab302900638445bf7d0a3687253c8337831e81d27d149b143506446f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6231c2616cbbbf4cd25a79e66ed81a50ea3f764911fad0eeb97c7b9630fb937b
MD5 99a384e23d79b496cfc6a31c6ec45b34
BLAKE2b-256 c2aa55cb4f5ab5e7a100b4a6ffafac6be6585c362a27507edf9baae15f237627

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2b68ea2c0040c7b7c1a012b9747a8cf3210e5d73a46be07ff457e77f3a5a4ad8
MD5 c4947ea7d008d0df71be03173888419a
BLAKE2b-256 4d21d6aa794687a9d58b20c698d47cdb683214bcb3d437ec52620dccc2238ac5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.2-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 5d036e082200b47a8339e97cf54647ff9ccf04010dbc5ecdfd94b1dde73357f6
MD5 19568bcc0d0de7183b827937a723d91a
BLAKE2b-256 612ec3881cfb18224e9490ed45ce0b2f33a3cd0ee3903289b5ce63e9a86b5e76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 0f040e8420e23183f8b4837f3f3fe68c78759d2ec4d8c4d340938d9d57f4f681
MD5 cfe34b8dc8240aa323b282a4baadb24c
BLAKE2b-256 5a17759cbe055eb441c4b5a86540ffdc9d8259370a3f68330dcfab6f61e65627

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 7ecd58448fabdec2e129fd7030f7098f2a29f49f2a5d26752250aa94570f7b3a
MD5 6f604127783e1485fd59e52f4158a56f
BLAKE2b-256 d3cbf9efa67c37d0fe91481a913c8f790dfb86dfa1db1bd9da3859e9ea4da177

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 53b4cb5ea5dd6c255d5499b3fe488fdf1526140aede5dbf86967a94d08bf98c8
MD5 4bb3571be58062c27050594f27a8503b
BLAKE2b-256 b27ca7f264e889ad17d4d53000860c8436a5fee2e9221a91dbcdf24d49e5c445

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 909456fbe92a6d5b5c265e6d0cdc9718f9addb38608f83993462cf4e90a292d9
MD5 70648f6afd82cfb7db7008c8615379db
BLAKE2b-256 1203c4a87254268e2936fcc8050afa368eb6da18ab7c318a5adef1903bc7f76d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a1b0c3170e2a051e0318519ffa01c94b752bdfb2b3e757df87fab4de799a8374
MD5 b7ccf783649fa1d0848f8eea7ff7c9dc
BLAKE2b-256 d476b67095051d5b997b923e939de465728fe8cfccdc01f08558634e76dd30fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 81f38212e6c5f2481678e02d93ab81276cab6cf5622c2ad5df7eecc23853b23b
MD5 835a1d38980f5fdd8ddd9d4362c4ca04
BLAKE2b-256 62acc3dedf2ff7d0d4ed62fa5cf033a3ce2e156cfdd5fc6b0ff3a32da30fc3cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b72d75ed7510a14089cf81147217dfc092a25dc06b0e6b03814d1d04de810310
MD5 1afec4b6762f7cc90eb32829125be1f9
BLAKE2b-256 4d107daba0b61ed01c9642993107e2a01f4f3f75d2d742c205212e5eb7829580

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.2-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 9f308717a0430fb608c25a729778211ba10741e29591cee0ce74968bf9a40cdd
MD5 3602d5d40a22ce5c6d3582dfd0c6628c
BLAKE2b-256 871862559a23a305ddf6ae88046fac2b8105ec6351235e90d310c21d028da3e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 c12d02c8233d7ed4e08e01053cc12739bc53e17853e600af8df31d8baf09295f
MD5 438b25c60729835c27866f1f4c32ff29
BLAKE2b-256 4226bc338fd0c3ede17a37834f99d50177aa96667fdfafff10959c7fa18a6c02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 7a276d8c8404398cf2a2f22e2d709b616a668f0d560cc606838bb5459cd09c92
MD5 3b49c3488ccbb28bfb77b996ef8bc5d6
BLAKE2b-256 75eed0ed08563e5bcc16404f174281f51b260c555786142a06873f0314b244c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.2-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 711ce3552f877c5af499bf5ebd88e91f17539dd5c22cff8d86ee94acde722242
MD5 ed66b1e2bf0b11e91ad4f8f84746fbde
BLAKE2b-256 db836713a97aa3776aea6b33861e2dd5908d6b7a0cadf5531778f1eeb52af4d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.2-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3be7531e7b947bde97ad5ff72756fe029f18cd343947f5dce0959c1083eb59b7
MD5 e0b19f481e34149d4afb7b301593da9c
BLAKE2b-256 eb1fa6427c425f521e5c8884b450d97dee048389a925218b89e326a6e6d25a4e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b3ebbc93eed3d20ceb314b4f7ed6c949d13c5fa47dca68436f3b7b42531c2b07
MD5 2d24cf3e50e6c7cac605858d0f45472e
BLAKE2b-256 9f789f408095e29b75d62b431d5d06a23d7bd465bd943edf9fd7c96881fbc6f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cf6ad27bd04b96007200c9a5133601143f444084bb52e646ad9a3d9ec81ae325
MD5 361d7cb9397266c914fc0488fad9e57e
BLAKE2b-256 b9fae2e1535b53236e5ec155c048b99ff31b2f0518f4b8421f73a4008924fa05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 dbfb48347e71d6f7b1e9cd26f833d44c26e51a250f9af113576a95e58c96aed7
MD5 f8a37b4d73887c30f96a88c2e10f67a7
BLAKE2b-256 09a556b360de8f417002edb6082475d3704f091043c2b144a6fb329aae092a51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.2-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 39f0fc64f1e0281e004f2103dc3212d56e89feb91f966d9d6df015c14b2118b1
MD5 2dfdd4dedc45720604552a4045c667d6
BLAKE2b-256 a3878d242d2605a78176d5286e984ff15da5bc2b511a03232e9bc59844532024

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