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

Uploaded Source

Built Distributions

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

Uploaded PyPy Windows x86-64

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

Uploaded PyPy Windows x86-64

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

Uploaded PyPy Windows x86-64

sfst_transduce-1.2.1-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.1-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (255.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.13 Windows x86-64

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

Uploaded CPython 3.13 Windows x86

sfst_transduce-1.2.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.2.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.2.1-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.1-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.1-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.1-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.1-cp312-cp312-win_amd64.whl (131.0 kB view details)

Uploaded CPython 3.12 Windows x86-64

sfst_transduce-1.2.1-cp312-cp312-win32.whl (114.6 kB view details)

Uploaded CPython 3.12 Windows x86

sfst_transduce-1.2.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.2.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.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (259.7 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

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

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

sfst_transduce-1.2.1-cp311-cp311-win_amd64.whl (130.9 kB view details)

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

sfst_transduce-1.2.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.2.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.2.1-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.1-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.1-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.1-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.1-cp310-cp310-win_amd64.whl (129.7 kB view details)

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

sfst_transduce-1.2.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.2.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.2.1-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.1-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.1-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.1-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.1-cp39-cp39-win_amd64.whl (129.2 kB view details)

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

sfst_transduce-1.2.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.2.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.2.1-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.1-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.1-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.1-cp39-cp39-macosx_10_9_universal2.whl (332.7 kB view details)

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

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

sfst_transduce-1.2.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.2.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.2.1-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.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (276.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

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

File metadata

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

File hashes

Hashes for sfst_transduce-1.2.1.tar.gz
Algorithm Hash digest
SHA256 c5bb759c515bfeab682746df2ad9984f2d1186d94923747f132f6057b5ca449c
MD5 e6aad1e080cc674a369d4b025d91046d
BLAKE2b-256 35cecf8470ceebf5b2b22725aa79a6edd36ee663892475c88395324874a70155

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.2.1-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 c68ee5440649ec4726860a7888a19d7ba1ead04fdfb97f48f341655c98a6f0c3
MD5 6d7fba822cf213417f9d1989361eabd3
BLAKE2b-256 5ab3194353859e474f9dcabafd6671327d4a07ac51a6e4fc9f79302c34c90f60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.2.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0f3543d088bececb58eb4cce390c2643ae99406542e920931d64c9372df52c93
MD5 9a1e04590a9808c248b0a5531b70d1c6
BLAKE2b-256 8483b6add84e23c8b7e88ace120cd70bb377a8891f6c402c19c4b1a95b07d4e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.2.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fdf542c7dbd4939d68245f8f9719ec715337bfb289eac4d07eedd7bfa38e5d4b
MD5 42695fa2385b1c378a6b1eadec417a99
BLAKE2b-256 c0ca710620fe274895f4e1165f31e2370a468438662da63a2f942c82cb873dff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.2.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 9963e739cdcf16235a925a2bbff94e1290cf637c2467c0bc0f660119e7acc4ab
MD5 7cb335ef29cca0ef7e1336b1ed70d61d
BLAKE2b-256 c336cf3972dcf2e77418e6413f7ee461495d0d58349cab03f5ca803ffde1ee89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.2.1-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 a94ba8f54e432f0257d958b559416958490136f0c904aeda0582d1b2cc50a7b7
MD5 8f24a59f6288a40fc5c2c8dae3b935f0
BLAKE2b-256 347d9e1731000e0330841d840877d42f0273517fa5b4f62bf00a3b1e324073dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.2.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 32e76e4eda86a51f499f4e1d65f48a1d4b0640f0743f3c7b528f360ad63904e3
MD5 726a938ad7a8c1ff81dc5749a485ed4e
BLAKE2b-256 7475c9419a87b5ad12f725658af4b283c81b1d27a84e7924da88e0486f543ffb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.2.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d494b7c23d697dfffc2ab6d07a6272d11147b3c1cc7beff8d67b88b9d5377c9b
MD5 448432584c67aaa70760804be56c1ef9
BLAKE2b-256 f6815990a552c07ea4ded6c0e9441cea3f45d4d111e636e4e73beb7ae9d98d85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.2.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c81564e472882a07869c6ba1c646712e70b92fe8c0be774147f389ff2fcb0f4c
MD5 c348a689a0657329271f83cc6f39441b
BLAKE2b-256 4037f4f30ed0e630ee7ac4d6fd173e61a80c92cd0a7f1448f787dba2e1121a1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.2.1-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 1e44111d5b7bb8d284d3e2842a9d21b2af5993fff78bec5a7f8965010464d6c5
MD5 da9748e70947c16f7d8b36b5bc558bb5
BLAKE2b-256 206ee56db055bd16df73ef04d2584d6cf53371c01a854f0796811dfcb175b45d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.2.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f44b815c3b7750c9227a51984f5ca664de9cd011799a47e0d1d55f61204b9d1c
MD5 3bc2b77bb9a9f16167e168fd4fb8d541
BLAKE2b-256 a2b0a24b45736b427c4b2770d5c74ca14a4f170756ce01dd9883042df45d5200

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.2.1-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5c334cb827421c7177f3df907d9c06cef7480acc372a00e3395b458e8c9a77a1
MD5 e9ca8c3dfa9e263315846caf3fb2b81d
BLAKE2b-256 653db65221dc7b197fa57b640bebab3d81827f02df5ce2f695f925ab23abe342

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.2.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9346834dc68776fd359677582df62e21d46dded2065a6946abbb7b9f49576068
MD5 763444c5298fd4960a61652a4088ee02
BLAKE2b-256 313185152bca5ac197f7dfce96a7e5c87e7351f2f7c9c7a672c4fcc81ee5a95a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.2.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b1ecae083c9767bdbe282f320aa12d57417ee74c07ccee6ac57c838c0b9072bb
MD5 a7079aa4620c792b6f85ad5af4c28f5c
BLAKE2b-256 bc0542b8a77714bc96b974bc25b979caa323437141d83d4fe5ce0ac9539adeb8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.2.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 85ae6140aaa8fe49c17c435b006440f1856cca706e2287efa7f10ab4bb9c71c0
MD5 05f18c795e1436ec8ba9413a0c0a8755
BLAKE2b-256 fe8922343288b723ae8036ffb53e6c4e39c6d279a05fa57959476a0ecc1ea029

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.2.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9374ae5861ef1dbd1dd84d03ac239b990aa53c6d70fb7f9b4658ca06c8e8f86a
MD5 e5e18f9c10f2eff07dd86075847e80a6
BLAKE2b-256 b42d0c850b094c1b0f4a34b33621f45fc1b9994583fd7ce9cc041ed304845a6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.2.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 26b967c96fe08b17272b6c0d447b6bf0d45adda69c4164d7b84596b98ec6f47b
MD5 ddc8b7cf907a46a4dce0837388dc1f59
BLAKE2b-256 6275b47160b004fc8369fbb8ba2ca90a5ddff5ceeba7bc4c4119ecdfdf2561b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8c9d00cd894f2a709a3645157c85c4a88f573005956b5555f56b626e91277903
MD5 adbef2c47ee3b43dabf26765f8b78f0c
BLAKE2b-256 226ba4443989fb5b407df51abfafc9c8c6a32427623ea98f669360282103b071

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.2.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8110d4e14885c495f60eab27c9b7b734a9329056da3858f826becf0a19a803b2
MD5 ff55b70191fc9f1fca6a6782a14c7965
BLAKE2b-256 c595a448bb8e149dfed1afe117675a4bc5df271b8c790c89e49c3a758312e179

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.2.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 bcb36136528b75a6fbe28f7dc75aeb1c30b7b4e1dd9cbf2d58b7fe3658da39b4
MD5 7be6ed52f4cc2149e742084a391f5ea0
BLAKE2b-256 e45a0d33745ff64dd6b39eb95af87da8cf2e40ce3be1b3fda08df4f485bfa286

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.2.1-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 c2ff1b02e03e69eb3320aace2fd3a7c3012bf2c4031e78bf59ee8fe361bfccd1
MD5 4989c765174dd9e928fc21734a5cfa08
BLAKE2b-256 4c1f1e9833377354b5987fe84ea8c930ed0691b7769fb2bfa2c50187287c60e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.2.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 32345f50a34eea8fcea1e3720cfb935f569dc2156ea7ad9a0a10b3c210d9aff8
MD5 70a359b63eb7dbfbb64ac32c4515732a
BLAKE2b-256 b9055928b77f2c598509f0d40eae57e2f5e7fcf34cf1aee6009ee5c114d7322b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.2.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 724b6a21d3012f76b3ee40128b9dab6b140d0a630db42a49daef054ed49dcac2
MD5 b994bf60496a1032a727d93499f0e260
BLAKE2b-256 7f1a746b92f1ff56d7f065fcd105382224f1f349e17a830e06c576fa6f20b653

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.2.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f70b8a7082b9cb63c488b9b2a8d31bc4d438e68265a6f554e18185e652b39997
MD5 0bfbf73a8057ba264437382526a272e7
BLAKE2b-256 6604df4dfd320ac692ec151291ea9cd27f07a9bd256911587033734a98199418

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.2.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 31ff6d868fc512ba05e56c50eef9b7074f4d2ff1dcc87b8e38ac06b1b23bf928
MD5 e7ddc4f296476aed0656be14a70127fa
BLAKE2b-256 249f13f706e55f2dad15831d3ad276100bfb10d7f66e3efc0a53ca6ddeaca2fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8c664abbb345d4b53fa2778b0338801931044dcdff931f628161f40c64b844c6
MD5 5ff4c3b2be73612c2f3ea348c2cfddec
BLAKE2b-256 d8043c0a3d12e67e315848811a8e2a28c6c5ff2271c474029d12c99033dc9d59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.2.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5f0d7c0ea7eda11ed9574d05e2b7ee50444734ad86e6e383586889affbc83350
MD5 1f58e7ea38822ba9a426139b3cd8295a
BLAKE2b-256 6c32b7209f93cc6c8e08d707afe7686c0cdda441ecdd36a61aa67f4fbaa4c25b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.2.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 e6c5b594e234bc9c535be7bd8b52a0546461b90d1a7452c4a77451c26e2e9d73
MD5 528192c536b2141d831ecc68b2189e25
BLAKE2b-256 2d4e66f51438b9412464ad3b01ba2b2678792944b6f7f75ae58c0bcd123c452c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.2.1-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 fd5d8a3e07b0fa61736f51bf72467c979410fab3f289bbb9c9fc982012dc13fb
MD5 05246f41647b9291713c3b862e3cb2ec
BLAKE2b-256 e580b8efae715c0b886e85bcc76bcc0b0b7f2f1044a956d790391947cbe37ec9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.2.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f1712f96d4d559fa11e545bba63bf5576c54fb9821fa3b3ae75ed9b220401e52
MD5 3e41459aec77ffdee695d653fca82787
BLAKE2b-256 5adbd04326ab74ccac1482ad1af8795ab5a38aef09bb7888b116a3c3cd720843

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.2.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 aef76894d26ca51bcd9e2d2233122f7b5c8411afe7ab3448d4c340556ad1587b
MD5 2428e5fe388ff8e7a6f3c187b866e87c
BLAKE2b-256 2bb8f0f12a7bcf09d40e79edda653e236cb07cd10050daf7040fd215bae73a8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.2.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7797f68b67186a681eb53db1a591d5c2a6f7d0d418d004a56088e9a1ef1f162b
MD5 fcb3034d2a105dbf4e0b875ca612602d
BLAKE2b-256 9476e94f38222341c5f8c5963f4f15e71c3593041d7be681e1932a550122939e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.2.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d84a34f2d664fe1d1ea191a50c008ad313daab6c5507f4ce3440673a579c78e2
MD5 0e4a494489d03a7de63520fc65a145ee
BLAKE2b-256 7af469ca4cf04d04d44cc6a2db994612fc5db5aac29031e701bb0071d7594463

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c1eff9fcb1979990cff5d3eee8eea7012896f73ea613178bc89412af7b36b375
MD5 24b4c5ec4801a3abd206322deb5d0509
BLAKE2b-256 0e03ae03a3661c9198df0629988e34d88ba2b814bb32162e0bb5435e95b9cc58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.2.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0e6c1b60839a4fd278e6c830bdf82e7d9b98283b29d0a1d8e41dc3b70c9c1789
MD5 7e58c2eb5e63cdd0baa542cb2096842f
BLAKE2b-256 bbb1125a2b7588bea409e490a288a211039a3d1f7aa8801a0cc33c7693a7006c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.2.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b71bd5d463ca37631733a711b04e33766bb0605b4563b1a19281529b5a51d996
MD5 b4fb467971034c5148250ac635a2df0a
BLAKE2b-256 058749bd8cf4c67848159637edc2e569d205abc6eaa5ecc355370a6db75a21ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.2.1-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 feba7a103e3de248c84706b09ce19fbfa111b52d858088da713776afd04f4af1
MD5 127a47150f69697ab7cc1791fb65a750
BLAKE2b-256 148d4d2d6c79ad5d6017ddfd61d2f12b1f5c85cc20e9d004f82266943a497100

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.2.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8b03293fd96ec4f1d2286caba2431ade9db874f97041750c21ff37f6773a6d22
MD5 da88aa1c857a8d12130a4d4c1de03a70
BLAKE2b-256 adfdf06bf02aa8e242cee1936485a994ea04339ad562a0c2a9d316a1ef698544

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.2.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 2cb6b337fd7e802f0b21e38a28e9c753f9d71181bb70f79ab8735b87ce75e161
MD5 2f5b8bb0851cd117052726b60b099aca
BLAKE2b-256 a29fe34dd47cb5c89f4b0d34e05a084ff6949dc85cac81973c88d56ffd755105

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.2.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0d576e7cb27e7fcd8462fb76a338aea2a1f85a804d1b257b44f37aab60b5e20d
MD5 670c6265fc1430ae2e79cf1ca15741b8
BLAKE2b-256 a0e8603b385a6c2da34591f7facf4b0a5e058c56d75459e997d7b375b3dea542

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.2.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2bbd8fb2cf8730ad9409e41603e46f7749b8df09b1776b1cb824307a922759ab
MD5 4fd6a9d027d3d9ed156b58bfc5bacb87
BLAKE2b-256 526c10f87aa73d9516d51bd8595261a3c0d1384f55bcca2353bf4ac3c2fefed6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2624890197cc00369045fcec76f0c7ed28e46f911f6862115a133083b7b8fe20
MD5 a69552c67467cb91bc10a8a13bd9cee7
BLAKE2b-256 255f6f760e8d389609dcd527dc7d2a1bb0175251214d93212a21e6f3ec36c1fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.2.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6c5ba3c775dc65da06c1bedacb5ff99582442bde987c4246ad902c537d732a7f
MD5 7babb734f519a1ecdba3eb9771006e04
BLAKE2b-256 46ef1f4b7424b76e2cf649df3554a8201672903b6319c8a8867cb92f61cd0f89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.2.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b7783bf03228f12afc03c2ff9b43efc0bd99555889cac4f7d37e81446b7497c8
MD5 26f1c3cdcde4245bab932174611ae6e6
BLAKE2b-256 9a0def6b7e2fa203711c14e4c12c915ef7bec4e3cfe48ddd694cebaa1a11bb50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.2.1-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 fcd6d2cba79611fea5dcb5cbf5ef15065e5d6e6ebffc41bcaa42592fec2d179b
MD5 25c36220cfad3b8ff977efb2baa47bc1
BLAKE2b-256 e0dc3d9752ed6b324b01911d30bc64ed74c1a75180d10d0ce05c4b7f9198e242

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.2.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 1154e85571c5506b9a55913d244a65ef546d55568722a3fc428207263510615a
MD5 2f7eb930f798a85c6d38e4199a59274f
BLAKE2b-256 d63ca0ab5fc49ad50ba0d6e11b9ee95985890a1a46e4670fcc4443728113c289

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.2.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 3b26505f332e587beeb96cc6869b2924476e87ba2276a62ef5c1ab8ee87d9594
MD5 27f54ad9428e83b46193cb2837971614
BLAKE2b-256 2c4df490a9ab6acafc9c043a546f885932b63cdd0990a519bdb085989cb5f75d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.2.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2b0fdeb76fb328afa5de3e84ae1b54aeb405ec3267a6ddee72cbeaeb521d14a4
MD5 cd75176ec5da6e5a29d54359efb0e0af
BLAKE2b-256 64f98b79ac1158cd800f2c5b66b74c9a34af9cbd03168e76b801f44a96646ab0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.2.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 59a2111912104f93def797362ee7d2484bee336342c7e608d837234a54abb262
MD5 955fb550d9ddc37a9f10122e28f9b06e
BLAKE2b-256 dd938c1df2ee181120461d1a0f6c745432418445f3d05dfe0a4dd435a931107a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f855f3e4f080a17129701cef3ef11c9499993843ec472fa20b30bbad21a3a890
MD5 2ed5edfbcd175c9ace9f2261ab87be75
BLAKE2b-256 b6d691366ad777f1beae8372933c55bf3976c703581e29e9ea2ea632342b7a09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.2.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9fd9e9205007f5d247e4fc02d48a715282529d58947b027d19af67f48c3f3ff7
MD5 03678a7c9b92b89b9524d6870196a73f
BLAKE2b-256 bc95495eb1d48c84a9fd92e47bc488009e484f045f194b0ca4cce81b039f3d4e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.2.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f0f64645f72d39e4bbb2b96d150acdb77d1b68d2ac286ea295512d02796ce4ce
MD5 ca6d52ade572fe6bf86ac5f88160bc58
BLAKE2b-256 a1c6c1ba0d18c35b744272b6b505b660e4e65893fbd4b7a464631984514daa7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.2.1-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 150c5f3b01f28e2c314a46af138b103867da5cf45c9316dbed76c43173ef93a3
MD5 e72e5e4b3d32ac9e9b5ba8194a478cdd
BLAKE2b-256 f27052bf57429029e63e4bf53cbcad7453c01443f80e932c7a29c6df4f3db5b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.2.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 0d58c0384c85b982c67a9c2765a2f3452b815b9d631ce7d7e1ecb3b983273cde
MD5 65d324178df6f82b94e94cbb84f831c5
BLAKE2b-256 a7ce65298162a48e394459655f9090e436b29319dc48059bb8ad9f05068124f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.2.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 63616ac835782019bd718b432e2b6426d55f1e43537baffbdb1ff44c7a583764
MD5 5315d44ab87225b058c78f9e3b0d40cb
BLAKE2b-256 7e4522a6b921dfca201a83842144704917e1dc53d12fdc88890f78905937e558

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.2.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5a4d177d0bab88f1758201917cfdf8516c0d624ca044aeb5321d32485219f30c
MD5 ceaaa14bc6d2e5106087a0410f0caf19
BLAKE2b-256 6238a93bb920d635c7b51b63d8efd6eaaaded708bfffa1a56173f5df9ac19605

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.2.1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e229c892a6d54868e54842fc69ea76cff610534aded68aec9c3502eb23810bf7
MD5 3c0af3b0248e59bd26ac9334a43e4e91
BLAKE2b-256 39a1a9819414613433c2068e49bb6b5dee46c07823fc7b14ac0de528fa1d1e57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.2.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 40012b5151734a59c48aab79276485011e05d2bbe9cb454501f24d63093af1c7
MD5 68070d569e5e86921d2db4e58c5ff494
BLAKE2b-256 f85061b6fc090f345e17e9eaac7bd62815288df291384db5469c6614ee0020b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.2.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f411defca9a3ccd488003cf3ec0b129c32158643dc5b2f0c2f4b52e6a481648e
MD5 c4f1b9790da070ceaf6938db2f811a6a
BLAKE2b-256 9a9d11ad23c0eb7fe18f17124cbd6a1cc3184728fa4b1dd8cf421f3769fc1dd4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.2.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fc970cc24859e528f84cac061dfcaffdbb18f0a1a6658e9c9b4c13bca9ebdaf5
MD5 50a8e74ac3edc62181762e6cec249b24
BLAKE2b-256 ce56d76500dd8d5ee6ae5919127097f55a3165deddad5306db352e3876f2ad2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.2.1-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 97fd47e705200a2c0ffd40dc97dafe6cf5c1118a5d2dd5dd5238f30d8542cf86
MD5 19766330a0d057e49b9861ecd848bfa8
BLAKE2b-256 a63daae612b8ecc77f30fd971cff79cd664ee70244d4d3493a40b37c66edcafd

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