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

Uploaded Source

Built Distributions

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

Uploaded PyPy Windows x86-64

sfst_transduce-1.1.1-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.1-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.1-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.1-pp39-pypy39_pp73-win_amd64.whl (128.9 kB view details)

Uploaded PyPy Windows x86-64

sfst_transduce-1.1.1-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.1-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.1-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.1-pp38-pypy38_pp73-win_amd64.whl (128.8 kB view details)

Uploaded PyPy Windows x86-64

sfst_transduce-1.1.1-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.1-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.1-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.1-cp313-cp313-win_amd64.whl (130.5 kB view details)

Uploaded CPython 3.13 Windows x86-64

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

Uploaded CPython 3.13 Windows x86

sfst_transduce-1.1.1-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.1-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.1-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.1-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.1-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.1-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.1-cp312-cp312-win_amd64.whl (130.5 kB view details)

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 Windows x86

sfst_transduce-1.1.1-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.1-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.1-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.1-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.1-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.1-cp312-cp312-macosx_10_13_universal2.whl (334.5 kB view details)

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

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

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

sfst_transduce-1.1.1-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.1-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.1-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.1-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.1-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.1-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.1-cp310-cp310-win_amd64.whl (129.1 kB view details)

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

sfst_transduce-1.1.1-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.1-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.1-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.1-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.1-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.1-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.1-cp39-cp39-win_amd64.whl (128.7 kB view details)

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

sfst_transduce-1.1.1-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.1-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.1-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.1-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.1-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.1-cp39-cp39-macosx_10_9_universal2.whl (332.0 kB view details)

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

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

sfst_transduce-1.1.1-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.1-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.1-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.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (275.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

sfst_transduce-1.1.1-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.1-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.1.tar.gz.

File metadata

  • Download URL: sfst_transduce-1.1.1.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.1.tar.gz
Algorithm Hash digest
SHA256 d5f51f69b9622bdc3fb740c5bccdef66dfbe3fff18d99a1e4eb09c75592c444f
MD5 0d8bdf7fede028ecf71c9f6ed2ae86b6
BLAKE2b-256 61d6085c5e8ce6bd014d24a0945fa80c41c8ae6ca1fc4452291539f73f9959aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.1-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 de8658670e7ea18fe8461bfcee5725446d692e049f8746df129bc100b86b207d
MD5 e2f9a72c1d339d78b150f2f583df7203
BLAKE2b-256 034e230da90cfa050e3785f1f09282a790544ebf98c908336b3a003cf2634b09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 61c731303ebcfb6a51f6399e7aabdd86ac555c907ad2a53997ce3a395bc055ab
MD5 e1a1ecaefa40b05f2c3178b1f3404434
BLAKE2b-256 67d581de7712576102feddc6bf2e95a4132a17eb0eb25ed5c64832ff2946e064

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0e67ce344189a59dd2ec7d628b485475581799ec5157b4cd62a05f6726951f36
MD5 36df0ddd6fab9f64916a9d184c424397
BLAKE2b-256 cf8d1e68e21eeafcdbfb4b5ab7906c8ce2c20de5ec029513015baf5da24c19b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a68ef5f9adf71f24c45411fefd4c63dc2ece0a7eb1b1b2f0fa9acc0d515c16a7
MD5 d2b58b0f40f3ea32cb7ebecceb2640aa
BLAKE2b-256 b673a75bb222541160f7084001e75ac694f430da9fcff25b96dfa2e51d9fa99b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.1-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 a48693c98de81ebe8e171f2b6dd0d20f8fca7cc766f826c6cdef63832ca37635
MD5 fdc68f6c4e72d4326b5e1f158def6b3d
BLAKE2b-256 2a1d725a6eb8aefa102bfed3893ff12168d12c128da9919865e4c04ccf2e042f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e1db685fdfcab75043d95d91734fe83d850071b28982d7241daf5206ff301387
MD5 e036958b0752d5071483e4dd47756cfa
BLAKE2b-256 780d71d69bdf4ad6714eba9e7200829e981235dc27c5a2c826995953e4178d0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e484790890752331fcd99fc0d53a3a9490593e5aea18c6326b852f49b0f0e91a
MD5 00b12f190b5ab32036f261a4b8b213ab
BLAKE2b-256 242a82482aa8fb2a1340035d24624b3c33b476a056745dd4a6edd79184fa6fc1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 eefe591dc7ce005279cb4203cba4a67fb3c39d3705b2dd4a72e6a398cd30d343
MD5 a347a19509f0441a74bbc409888e5082
BLAKE2b-256 cbc663ebfa32cc58ff6311619f628ec7283a50dd78151466cc6ecf66b814352c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.1-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 28bd4f21fbd89aff34d339008a25d5d33c4be3d1a261523087821d7afe9abb83
MD5 5d9b3794186ef4e35b0b6abb8b709e16
BLAKE2b-256 a60ed00fbd63e701201c123fc6e20e68426e1621dd8036c3599864cf0c8850c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ac961906e8ca7fa847b0104da605b0bd34caae710b2469e0ecaf694492f84c31
MD5 50d786cdc9d459cdb2f075bdc0f53d33
BLAKE2b-256 c07bd76c787bfaa270548b824c0d34bed5579662d0fa2dddd39f455d479cc89e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.1-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6fb1e9398fd10bb355a7dfd141df6e03a13b9f45d6b34954ddc227ea5061680d
MD5 f3b3484e76dbc040010d053e19a2e83e
BLAKE2b-256 e2ef6fcfa9ce1ee2d25f52690ac379c1a74ea37ee584dac267298369478df2c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 94e06cc5b362a3791ba6a295172210a69e8048cc2f5eec25ef8bcfd0a3036a29
MD5 891f2360fa7e4c594717c9330e8cbd28
BLAKE2b-256 25ccd5decab1bb350b8c3a62904e47a341bea424ba7e801006e303187da12ace

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 7724edbc8086ef8620962285ec70a78f8555e932c3a18124fb0b816292d71116
MD5 46f08aef0ffc8ec6b4fc4664fd415763
BLAKE2b-256 ec917b9a466023037835086da28a92598c4e0a890d31d05410ed7b2a506030cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 78727933cc5a03f9a01cc13e080df170e5930ea068f309d60f0b26c555c220b2
MD5 9e886912ed03cde0ce25e71452743933
BLAKE2b-256 d57228408f787f75ca662b057d95f6997258b65dc9ba974232c676a6cde864ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c3ebf506dabad5ccbc7889f2f2713aa16c1b2738d6bf112456cefff878d9f860
MD5 d689ffa57264c3e1e5ebd685f3273839
BLAKE2b-256 ef10b642792b9dbba87ed6847b3d1110c620e59a1f0e624efd3ac1e0a246ea80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a7aa50c53d1ff94c5172a25f29d5f3f2d44b27d44a11c0bd86195438024644f2
MD5 22ce80b9f3bca4308ed8ab55e5094b7a
BLAKE2b-256 c70125750ddfee3415c1ab849f7ef7b340a02ef8a56a2fc8a662ed48f5002fa2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6badba33f2039fc54139907402bab1b2f87b1ffe6b59f2418ef6cb29d44c9ac0
MD5 5dda098ed93a703c020a99c226c5b745
BLAKE2b-256 1ed858a00d8247b265ecfeceb019dae1eea9af048e233a28d8509249b1a65856

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0e09defacf8dca530d1df7cc2c9b1d99284962e87234785d8dfc7cd17c6c43db
MD5 27c47ffc3aee0abe96a2c272129500fe
BLAKE2b-256 2a69b37e43ce895c12088c35ac502459db81d04af28dfd6ae12547dedbf4fe22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 6a1ac8a9faa230df8da50271a8496261a50f41f0290e02c9fd7e98c73cfac94f
MD5 99657ae17df99aaa59d344e4d5930264
BLAKE2b-256 79b133801e9f07af9ea210485a27e9e95257fd65f68de9800ea2b3d3bdc59ba9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.1-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 3d9b700f8b44861af9f1d40e364d6af6638eb2753fbee6afcdcb16711983462f
MD5 f0bd2afb89eddafc14dcd36e9c640fbe
BLAKE2b-256 e432dc0afc2f0f9c029bb2550187c7cee432ea1ce475553381317480547f0e5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8342f4192fab3f12595a607773885c56d44ae0f624fe0a0023a7472b5bc1e002
MD5 c1d745caa03eea8f9de74f7f65f96768
BLAKE2b-256 90c4a7386e8470d1384a2724ba0e0eb1d37c1cdfbd15c2961396a8cdfc2537c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 5674be0d53c4a363b6dc85749933dc5d223f3f846dac2b6907cc3275956a0a66
MD5 6cda71f27d44fba9c7d837df84d3f3f8
BLAKE2b-256 775274fc4a4d43d6f6696bac2c8c0eae521ad1feb92b5de1b678767bbbfbd085

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8609baa029f9615a071e941b850e700f8d3027f37348f13a14897c1b35bdf61e
MD5 619372b51b70eda7335c614910b026a2
BLAKE2b-256 483610619b9a3925fb99320e69bd844ce13ec4590f65bcc23706d7faa8836799

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 52e501ed9c3e14bab32124655a97deb9cf1e9b7626e8e4fbfa045206618944b4
MD5 69fc6ec2cf906e9362420e5a12d5c332
BLAKE2b-256 d890836e84727ea0e7f7bb19870289ba7943fe9322003eacf2209d5c16971c9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 68036aa5439c31d3d4f12d93e3567dd81e7ffeffe56ec47b4ca1f0b3fc0f71c0
MD5 f25d938ace9ad167e3848e1b7fc82e42
BLAKE2b-256 014a898309e8516c7be3241d633b6df812de24a4d492fa6160b0d7ba10dbdd8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6f62a1ca14475f7827098906168111945b2ceb14c31458c4ab049b2201e0538a
MD5 61514593029ce4f336c536800c3241d2
BLAKE2b-256 b5e43f2e70263d63b1f99fc1762b4a8b47d9c296dd31b10436411a9c56780b0b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 82451a739ad73e28bf537889b20ae307a866f8966a02a07ac1beeac62e8dcfd6
MD5 1166202324f6fee43a0bd9d8693b7c5c
BLAKE2b-256 7da1a9f6024b0957d276ecf7d754eaddbeba86183c598d0461d548b43d36356d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.1-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 fb59bd23bcb9491490db696ef1db789789f3ab3d0d757730d5b09c5970a8a119
MD5 baa55b06c2e361ffe4afa0ca2778c391
BLAKE2b-256 1e1a78546c32f710069206778a8c9981392b41b8be3a03d9212038fb6384bb26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0163d9f5d26c1e8e694cd3c679a46e9da608650e004047733f795955e4fdf97c
MD5 168f8f89c2084904eab576ceec92e010
BLAKE2b-256 492a8c01bd66bd3485b97a12f5d88b5189b2dbd64ff5fac5afa1afa8f62d7a75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 1e24a572edadfa759ea50b69b3d9b0f256a0f0c79e0c8ad9dca387da60e22c57
MD5 76f5c1bf7368ba8f9680185f72f7a477
BLAKE2b-256 4a401a0b96c3626e13b0acddaceb1f0d85b661c9e6e2b6c69dda62b535b062e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 35cc3a3deff0fc6ce47726327d0001acf0fb1784a6ed79a4437e0ae00b0c92c9
MD5 c02019a7f1d28da9cfe2b7d2dcda9422
BLAKE2b-256 bb1176eeb02c66acc3f5f6ca582fbb91b22c70594603a75c8c27d2f565fc3391

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1325405ca21e26da11e2834f56989dfbb76f685cb398bab70fed8219d390490e
MD5 6ee08415c3331ad72909804f9876169f
BLAKE2b-256 88849aa62a839267396f1b740aa4b228cc917fe4a31928b9183aed4f6076b738

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ec3501daac80a69c32017b63feb9e871caad749c9537f352533e117440ef133a
MD5 aea3518d8b597d93d2d5690a6b35c842
BLAKE2b-256 d98b4f3764a76e20534eca1821a67b187fe706aae2996a59062eb86ee03804fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 52006a7dde162b47f9dc36f77c2bee306fd0e7b04a28a6cc69fde6ccdbf8a3bd
MD5 6b11bc2c30a06a8eff967fe1a409d90c
BLAKE2b-256 07c69d02840cbe09134022717ea739a7d9f1390645a9a5e09036331f680f666f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 32642b4a8fee8a5f661cb5e847c2eb6491e1fa32ed8762d1b3860672bc2bb7ee
MD5 2d0991d67cf57e1684b32ec72539269a
BLAKE2b-256 88df92e6eac671d4748331a6ffb3bf1f6b6b365d065a088b7f8cb59f6ab1c5ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.1-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 5308fdf72f53fc879013d2e1fdd43cadd315435287c15cb4446b9c3f7386e723
MD5 6c67d951aa747407a5a5f10578ef7c7e
BLAKE2b-256 3e12b41f091beccf20e39d1d68ff11c8299578405748845efd66ca407b6191a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 08ee5d738418fd7abdf9dd0b1d9d4f8fbd626acd4187e1411b50a6a05aed41ef
MD5 b8e99d2c180f16ab2e99bdac8c296506
BLAKE2b-256 b3e05af5575a09e4572c2c3045f1300e14b225c525ca04c038f254ddad8701f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 bc5359015412edbe864d82cd1b8257da592fd26d9559b9f7eb1adf5ccd5817e0
MD5 38597157e9c8aeef395147f06c360507
BLAKE2b-256 c57dfadfe870143884dd6afb8ae76f7540f1c6017dee26b1f4b81b078e3355e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1d890f0da3f9fe3281e406fcad3fe540d28ec6a426be3841e8c891033e69d855
MD5 0d98f2ca45b210e3adad79b6ec7d916d
BLAKE2b-256 b0c569b26ace3c6b2f25eeab01959c5a0b60ae528facf1aabe80a5b69dfff0e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 07ca23a278c980109ba5500b9ed8ee4ae3bb0c2cbe0e545ceaf9d0167d5ee149
MD5 569ce5db44374f4c1a846d459ae8d545
BLAKE2b-256 89317d8aa45dcdc7768e463efa34b21dbef608cf74eb38a5991d709908e624c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 db32e6dbff4d8c5dd6109495b5d9b8c20949c1816aad11d2da65d4bd19c94030
MD5 895ffdb52872dee5ed45e99ca60ad83c
BLAKE2b-256 3c48f62ffd78d27029ca30994981be401eedebe2271421803cd144f0284f9172

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7c87a1af5f2130e09f97ab85a227b088c7b139fb4c5cbc0c46f40099a13ff77b
MD5 7b5004019af7262a55d64a1b93a3d5bf
BLAKE2b-256 68b1a836af319296860d543e05983c99016601c2a4080869578d205bf3fabd1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a445311c3f01d2ae2b97c8c92209eb2ce566176e45387fea12d7475e89fbfa29
MD5 0480f5011a45fc140fddb30904617f77
BLAKE2b-256 07966bae1d3d804a47fd8bf7aa24444d0aa417cb6c630d30a1f1b85028cc844d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.1-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 77823fb55222eff890dd2460d2f2afcd84c7245601455e5f9878a04550c93636
MD5 acb4f9d1898b8393371942fbd370d171
BLAKE2b-256 9b8ea506850587f3756a8ce7a20e0edd9a244390bab28dc3db435de95c6ff683

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 de1374e463cbb04348df8b7449f8c7f85c821b560305d3f2060b68c81ca722cd
MD5 78ac12e8b1aaa21b51d2f5a9e4f8d78f
BLAKE2b-256 6b247c32a29613fc920ac516d5f4b927f44dcb066032bb172c1404718cdcaeb1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 3177f0b94f4d80a1d26a3a43f5377672a2c282d8fdc78f964f10d16c28f165aa
MD5 1f2474bbc9091d25a3adb14aaee9e2df
BLAKE2b-256 6770344dc8ba8ced9c2c53c8178c7cb6e389c3a1137ecfde1255ad0166cd7629

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 81d3dc55bafdf809443f3faaf5c0f984bdeb5d52510c7fe1606cf5dacbc53a97
MD5 975f83cc4a6410f613600e68807dd36b
BLAKE2b-256 4615e1c9380fd230212e4ff85f1f7153c24e7c48d5ea2c403b265d37b3f67b86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ad6a081e0b947b78fb5385e3285513abb8fd4969e3206bb17c296940fbbbf290
MD5 893b0990337f8a59a017751855b94ef9
BLAKE2b-256 418770ccac64e1d29d5c18a9ba57f8e6fcf7d035414b66e66fcd1602ed36120e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bd179852b84a33f25ec8794a42778d5ac38966ef4252d894593c3dd72218dc2a
MD5 361982a43bcd1f9a2d2b81b01974ddd9
BLAKE2b-256 815c3ef5d6e5f3b23e04add11e728372e7e959c5e0c1949c83b67eeb71269832

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 072a15ce67b2f92da16c04ff87e7821e635695cbaba81f6da430df1a7a1c30ec
MD5 a34a9b69e1b961d42dd0cee16a29181a
BLAKE2b-256 61f4463f03828050143ac193955abf760146640b7b862dbfebfde9f58339563b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3cd52d5a13df974dbdfe8bfa5a0ec35b0655cd116bb637debd6f68ea7d56a436
MD5 6e01fd84552f1490788f5edf1fe911c7
BLAKE2b-256 998db7669541564b5269c45ea4507268a045c9c810070817af9dc2a9612e1e6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.1-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 852c2c088d6383ef58ebefd418f0473a20c274ed4967e22f2da334151fbf31fe
MD5 8d21ce9ec4183ae1da992ca6788e492f
BLAKE2b-256 85b2e2efe5ff9cfc7bb58aff192bb70deda0c49b43d6bd88fe758c8027811153

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 02f67cb330fab51cbb4305ce76286d96293a7caf1de71f4c074ed5a0b1dd7e79
MD5 ef1bcfa9ae945eb385052767c788b3c0
BLAKE2b-256 b422a035230dfce17a3ea652302b5d8f26a73a107d4992dd357b0d79dfb06462

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 db1bc1050e48e1d0a88a4b86234720b64be2ed7188c3c2b253f77c532584e17c
MD5 ba338c48cb01d1d0b8dad01d0826e76c
BLAKE2b-256 501229af2401132d51c45486544d06be7c7015f3e506a4c1e51c69f7052c999f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e9d535a9d80cee65b78fbdb1f870da6264b3717a505f236e6baf3afa5046f27b
MD5 a5d4d7dc3b32c8dfdd4918ff2e789644
BLAKE2b-256 ef68114123facb742529e67248b775ffd191a606caf07e08d07d886cf454e416

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 38b5a85de0ed12d0407f45ed577d79a3e565790b0f209be287a4391edb8442a7
MD5 31a288b319a7405ffbe3d269ba85f4a4
BLAKE2b-256 5de765e6e2f5c57a9cff3a367eeb40e229e41fc7407c3775e859b7f7a2b76bd3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d598f278dd3321331c2a47a06c98a55b61a99815831de53a7a734b7f5d6bb959
MD5 880995b7e288aee5597d14469ae6bd0e
BLAKE2b-256 8ebcdedde4371e57dbb3c955104cb9c6e599d11bc7e6a952b0266398ff255125

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 86ada1d430c05705cf674169b630d17f1773b7089fa22eed52c6101a5983246b
MD5 1481fdcda64d0585b1fafd6f4b39d9cf
BLAKE2b-256 b9e74b9779af092e7af853c169314e4ea4bfc6660fed5bf69c93c95dd6048860

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ddd86799c99b6f5f2cde9249d30b5d2bde736f6907ec7d0a4c27b400acab8670
MD5 2ca6607d09b011857d30063370151bb4
BLAKE2b-256 135d44f6a6de1775e7d6c60ed11727aad18fa78bd7b6f2241feec8504282a2d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.1-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 42d63f886157eac2850a749e46841f2b7e90025fdfd020be3c862ff5389b2af3
MD5 52ff449881c5aa56a085e2bf1e12d611
BLAKE2b-256 5a08822cf81f0dfa24713526e546afcc2694c3f9f2ba86ccab79fede38c706d3

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