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.

	    GNU GENERAL PUBLIC LICENSE
	       Version 2, June 1991

Copyright (C) 1989, 1991 Free Software Foundation, Inc. 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed.

		    Preamble

The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Library General Public License instead.) You can apply it to your programs, too.

When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things.

To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it.

For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights.

We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software.

Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations.

Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all.

The precise terms and conditions for copying, distribution and modification follow.

	    GNU GENERAL PUBLIC LICENSE

TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION

  1. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you".

Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does.

  1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program.

You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee.

  1. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions:
a) You must cause the modified files to carry prominent notices
stating that you changed the files and the date of any change.

b) You must cause any work that you distribute or publish, that in
whole or in part contains or is derived from the Program or any
part thereof, to be licensed as a whole at no charge to all third
parties under the terms of this License.

c) If the modified program normally reads commands interactively
when run, you must cause it, when started running for such
interactive use in the most ordinary way, to print or display an
announcement including an appropriate copyright notice and a
notice that there is no warranty (or else, saying that you provide
a warranty) and that users may redistribute the program under
these conditions, and telling the user how to view a copy of this
License.  (Exception: if the Program itself is interactive but
does not normally print such an announcement, your work based on
the Program is not required to print an announcement.)

These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it.

Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program.

In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License.

  1. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following:
a) Accompany it with the complete corresponding machine-readable
source code, which must be distributed under the terms of Sections
1 and 2 above on a medium customarily used for software interchange; or,

b) Accompany it with a written offer, valid for at least three
years, to give any third party, for a charge no more than your
cost of physically performing source distribution, a complete
machine-readable copy of the corresponding source code, to be
distributed under the terms of Sections 1 and 2 above on a medium
customarily used for software interchange; or,

c) Accompany it with the information you received as to the offer
to distribute corresponding source code.  (This alternative is
allowed only for noncommercial distribution and only if you
received the program in object code or executable form with such
an offer, in accord with Subsection b above.)

The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable.

If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code.

  1. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance.

  2. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it.

  3. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License.

  4. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program.

If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances.

It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice.

This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License.

  1. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License.

  2. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns.

Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation.

  1. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally.

          NO WARRANTY
    
  2. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.

  3. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.

       END OF TERMS AND CONDITIONS
    

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

Uploaded Source

Built Distributions

sfst_transduce-1.1.0-pp310-pypy310_pp73-win_amd64.whl (134.6 kB view details)

Uploaded PyPy Windows x86-64

sfst_transduce-1.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (241.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

sfst_transduce-1.1.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (259.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

sfst_transduce-1.1.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (181.0 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

sfst_transduce-1.1.0-pp39-pypy39_pp73-win_amd64.whl (134.7 kB view details)

Uploaded PyPy Windows x86-64

sfst_transduce-1.1.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (241.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

sfst_transduce-1.1.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (259.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

sfst_transduce-1.1.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (181.0 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

sfst_transduce-1.1.0-pp38-pypy38_pp73-win_amd64.whl (134.5 kB view details)

Uploaded PyPy Windows x86-64

sfst_transduce-1.1.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (242.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

sfst_transduce-1.1.0-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (260.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

sfst_transduce-1.1.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (180.8 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

sfst_transduce-1.1.0-pp37-pypy37_pp73-win_amd64.whl (134.4 kB view details)

Uploaded PyPy Windows x86-64

sfst_transduce-1.1.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (244.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

sfst_transduce-1.1.0-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (262.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

sfst_transduce-1.1.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (180.5 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

sfst_transduce-1.1.0-cp313-cp313-win_amd64.whl (136.3 kB view details)

Uploaded CPython 3.13 Windows x86-64

sfst_transduce-1.1.0-cp313-cp313-win32.whl (119.8 kB view details)

Uploaded CPython 3.13 Windows x86

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

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

sfst_transduce-1.1.0-cp313-cp313-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

sfst_transduce-1.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (264.6 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

sfst_transduce-1.1.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (282.0 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ i686

sfst_transduce-1.1.0-cp313-cp313-macosx_10_13_x86_64.whl (183.7 kB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

sfst_transduce-1.1.0-cp313-cp313-macosx_10_13_universal2.whl (340.3 kB view details)

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

sfst_transduce-1.1.0-cp312-cp312-win_amd64.whl (136.3 kB view details)

Uploaded CPython 3.12 Windows x86-64

sfst_transduce-1.1.0-cp312-cp312-win32.whl (119.8 kB view details)

Uploaded CPython 3.12 Windows x86

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

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

sfst_transduce-1.1.0-cp312-cp312-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

sfst_transduce-1.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (264.7 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

sfst_transduce-1.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (282.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

sfst_transduce-1.1.0-cp312-cp312-macosx_10_13_x86_64.whl (183.6 kB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

sfst_transduce-1.1.0-cp312-cp312-macosx_10_13_universal2.whl (340.2 kB view details)

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

sfst_transduce-1.1.0-cp311-cp311-win_amd64.whl (136.1 kB view details)

Uploaded CPython 3.11 Windows x86-64

sfst_transduce-1.1.0-cp311-cp311-win32.whl (119.6 kB view details)

Uploaded CPython 3.11 Windows x86

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

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

sfst_transduce-1.1.0-cp311-cp311-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

sfst_transduce-1.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (264.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

sfst_transduce-1.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (282.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

sfst_transduce-1.1.0-cp311-cp311-macosx_10_9_x86_64.whl (183.2 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

sfst_transduce-1.1.0-cp311-cp311-macosx_10_9_universal2.whl (339.6 kB view details)

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

sfst_transduce-1.1.0-cp310-cp310-win_amd64.whl (134.9 kB view details)

Uploaded CPython 3.10 Windows x86-64

sfst_transduce-1.1.0-cp310-cp310-win32.whl (118.6 kB view details)

Uploaded CPython 3.10 Windows x86

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

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

sfst_transduce-1.1.0-cp310-cp310-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

sfst_transduce-1.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (263.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

sfst_transduce-1.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (281.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

sfst_transduce-1.1.0-cp310-cp310-macosx_10_9_x86_64.whl (182.0 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

sfst_transduce-1.1.0-cp310-cp310-macosx_10_9_universal2.whl (337.4 kB view details)

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

sfst_transduce-1.1.0-cp39-cp39-win_amd64.whl (134.4 kB view details)

Uploaded CPython 3.9 Windows x86-64

sfst_transduce-1.1.0-cp39-cp39-win32.whl (118.5 kB view details)

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

sfst_transduce-1.1.0-cp39-cp39-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

sfst_transduce-1.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (263.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

sfst_transduce-1.1.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (281.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

sfst_transduce-1.1.0-cp39-cp39-macosx_10_9_x86_64.whl (182.1 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

sfst_transduce-1.1.0-cp39-cp39-macosx_10_9_universal2.whl (337.7 kB view details)

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

sfst_transduce-1.1.0-cp38-cp38-win_amd64.whl (134.8 kB view details)

Uploaded CPython 3.8 Windows x86-64

sfst_transduce-1.1.0-cp38-cp38-win32.whl (118.5 kB view details)

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

sfst_transduce-1.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (263.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

sfst_transduce-1.1.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (281.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

sfst_transduce-1.1.0-cp38-cp38-macosx_10_9_x86_64.whl (181.9 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

sfst_transduce-1.1.0-cp38-cp38-macosx_10_9_universal2.whl (337.2 kB view details)

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

sfst_transduce-1.1.0-cp37-cp37m-win_amd64.whl (135.6 kB view details)

Uploaded CPython 3.7m Windows x86-64

sfst_transduce-1.1.0-cp37-cp37m-win32.whl (119.5 kB view details)

Uploaded CPython 3.7m Windows x86

sfst_transduce-1.1.0-cp37-cp37m-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ x86-64

sfst_transduce-1.1.0-cp37-cp37m-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ i686

sfst_transduce-1.1.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (263.4 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

sfst_transduce-1.1.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (282.3 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686

sfst_transduce-1.1.0-cp37-cp37m-macosx_10_9_x86_64.whl (181.5 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

sfst_transduce-1.1.0-cp36-cp36m-win_amd64.whl (140.8 kB view details)

Uploaded CPython 3.6m Windows x86-64

sfst_transduce-1.1.0-cp36-cp36m-win32.whl (122.5 kB view details)

Uploaded CPython 3.6m Windows x86

sfst_transduce-1.1.0-cp36-cp36m-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.6m musllinux: musl 1.2+ x86-64

sfst_transduce-1.1.0-cp36-cp36m-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.6m musllinux: musl 1.2+ i686

sfst_transduce-1.1.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (260.6 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ x86-64

sfst_transduce-1.1.0-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl (280.5 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ i686

sfst_transduce-1.1.0-cp36-cp36m-macosx_10_9_x86_64.whl (180.0 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: sfst_transduce-1.1.0.tar.gz
  • Upload date:
  • Size: 85.7 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.0.tar.gz
Algorithm Hash digest
SHA256 0039d17a3e0c9d1a66b5eedb1981ecd075744f780121f81a286b689d74e4457f
MD5 282937ec718f7a98cac165c12154d819
BLAKE2b-256 95a4786f1c64cfcc4c9d5add3d1ca753d5bca665c4f0c66f0e37ee70f0895e0b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 12584401225e58cb67552a2c0d4fa529ed438ab024bb5064386f886ca347ee73
MD5 d4cb69a505f8f167fb4dba5128b20490
BLAKE2b-256 f9ce2c975b07062033592b7ad6938deea6e77cd9e0ab9c56c40a71a11b8b4d55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8f774b84b0fa5e00a9567e5ef97d803dd44c16f059b958f8df39283759946650
MD5 f415f4685070a2676eb37f6a20f31455
BLAKE2b-256 58ec21393b00fa7e0487e364141048d9df9502ef099970e6bdcab529fb959ae3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d6aa2af0f1dab549e587733cdaaeb1c6752247f775f8292d93ce4c334610b2ad
MD5 15d05324619cc5bb366c784f4da744ee
BLAKE2b-256 1f82726e409ee86da562330102639c68e57b63b87a3734530bcdc74304436bcb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 4346bf3c9f1c078574105535c9a26a124e3f6b12e4e1e4e33af517349df50cc7
MD5 384204182a14e55189e8f7001e77761a
BLAKE2b-256 141667b91c0ac63a9bb50106c1ab0ebbbea4b3e62eca544193e4d4c7ebd791e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 3eb6f4670eb39481474eed65865be104a1abfcb1a987262d47d171ac7e939f64
MD5 e6f4b17f033bfa8f5fffe083627a8e64
BLAKE2b-256 0aa0fbd25324b0e14bddb65ec108f6e6689eafaa1428627d7c4239a12d2f5135

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9b3cc3e638652e82b52038316984584c8d16acb6f6d4ed66e1cca5c5da1dd83c
MD5 65dbac54d1238db795f4ebfdf59b06a9
BLAKE2b-256 acbd6559103e3884f9e5aec342219a7d8022a4c7d987a16e515fe2205ad54977

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5a2e4e26d10ad8b9e41ea79b1a3caa4b59bf42fcd080b3decdca10976f8d49bd
MD5 52d7077ec3a383de6a45fe64869b8b7f
BLAKE2b-256 d8194f42bf739fbeb89ce817fb90f5dc2b87113ba26a8d99f7baebed9cd63ae8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 28c8a820b03980bdf80fb4a5ba4efbff3eb84b4bb3ceb717b8790e8e90adecb6
MD5 980445fe38d9ff9e333788b23a011d2b
BLAKE2b-256 7e00404eb48b62f349b38e8eac84b6616b1d9537ad36919065b0e10206d8d648

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 9f911b0ad7c42aee505f7dbb7216da0d4c0eedfa07445c7d732670e41e36110f
MD5 4682852806d506836273a744f745505e
BLAKE2b-256 63c4b96d228bd0738c8f25514f7c4f4b75080cd5029d68e1a53fed164f5d7a5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 01494bfc2e9c355a00c1da3defbcc1ebbf2765ac0daf2ed970566427a6aea8f1
MD5 d612a27153a8485977c799cf3660cd27
BLAKE2b-256 ca0f94e65471026060f4a5246a360eae76fa986184475039223f4ca0586feff2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.0-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a12cf8774c1728c2b5a9a478755029fb68bead195b2f8969f672a6d1d852c312
MD5 fb316c212a50c1631b4233ee927463f0
BLAKE2b-256 f6a0174edac6e10f13897aea7190d558adec3f4e962bf83ab0336e513a8e64e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c229b5e52abec814f2a763fbfc5cde4d5576148167d6ea671bfacf9f225add0f
MD5 91cb82977990140061fd07ddee5bad2d
BLAKE2b-256 3f0d0149914da3ec2e053bc53253ee073535e5f6ff07f003a5c2f85a4404ad21

See more details on using hashes here.

File details

Details for the file sfst_transduce-1.1.0-pp37-pypy37_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for sfst_transduce-1.1.0-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 1c1b06c4cfd3474850a757e0e171abd574e5f7a745a15d0b30b39a4be641f5aa
MD5 19b69f56c39ca250f548c6ff1f511cc1
BLAKE2b-256 02d92910a679430a65b7f39ae6b967232646de84a84e2276eedee5029eef4078

See more details on using hashes here.

File details

Details for the file sfst_transduce-1.1.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sfst_transduce-1.1.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ed95b4ff8a76bf1266cae49053f760e237b6d775e9b264f0113ffbe41039ce4c
MD5 afca4a47bedc6246b47689dc7c680f9f
BLAKE2b-256 5660508cf12d909eb8211c15294e4ca4bbe147b807f24903ea593563160601f7

See more details on using hashes here.

File details

Details for the file sfst_transduce-1.1.0-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for sfst_transduce-1.1.0-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 15f3bb43cb50fe3cc90daae9962e560535fdd94444cadf368ce4e7304ea0f0db
MD5 1f67b5ee618e384e69c7e475afa5f804
BLAKE2b-256 20e1e4e72a8d8b6a4a1a4f378c67a2abc462c31e9242a34c3b16da4e6fc687be

See more details on using hashes here.

File details

Details for the file sfst_transduce-1.1.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for sfst_transduce-1.1.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 18923c9ae4ef15a4830ad557d093dc986d3a0bba39e9084194adb1a558f42014
MD5 95e9afded72efb8a7a477bc97a230d7d
BLAKE2b-256 9d313b229ca3d2c5f99cf01f5f90af2e795e073b92fc81657908e533b5300787

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 7e9d8465a0e65325196d07ce503adc1f5e6b69f4a081660401b9db0baaa84f75
MD5 70a4d2af2c71819c9054d171ccb41e95
BLAKE2b-256 22f8a8bf891dafc4d5ffdc62b6a697bc7244ae11801d9e970c7b36db9a4e65dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 2506ae5e3b01b3fe84cea12bed73e795ddd29352205ca599cf96dcb7d19d5c55
MD5 a6b06fb4e57d8a9d605d7cf0a3a090ec
BLAKE2b-256 4378d2e39cd4c417111b6cabf9886803d7ac5a9329369856b87b4f9bb0bc87a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1069e2b5d17570980ccda826057e3ac2889729d3ee2bccd9ee7fb41b0c0a64b0
MD5 066e3cfa08b57523733b8f2608c46a14
BLAKE2b-256 e728481d32befa5a3f570ffffe6a84ba6c3b28ad8d51e3ed6f6e71bf8c6a794a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 606646df226e0ed7df4123a80dda233e1dfc548c38e05e8e2147baa65b688715
MD5 e9f719b553fc7ff7e4931419dedf6693
BLAKE2b-256 d701d35827caca15a5d5419d9ffbe476ca4c46524a0070e79fced2e7b2a77eff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a26de6485b859feb6221d746927100fe6f51fc2e3d71f263a24ce274c7cdd8da
MD5 e4ec43b5e57c55a74b21174376a510d2
BLAKE2b-256 110411f0d5211f9d6dbc68e3e759c5ed5e555d88eaf0a62041178ad19bacbfea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 094bfd2b1cac7de991a9bccb81fc5d8192b4610e51e0c4207ab01c5318359bc2
MD5 fb3ff824776864dd95e6a85dd60afd72
BLAKE2b-256 0c86e9aa7b88a818ee469d2656c43a170aa7b4c9a8ae19dc063be43b5a5128ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 37a66bb690cff8a992638a5f4ce6a486981ac5df186084b32540ea18e79db089
MD5 d0b16c5dbf4ded71b6534ca8d03a040f
BLAKE2b-256 8382521457af662381563ca7246559edd9f72146fa7473de9bce2cba15d50a5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.0-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 b9a5bc13f86a895ea16fd7aac57a02d4d0f6b83dbc51d3d0b07788d003b60cd2
MD5 74cdfc0b5004922f431055c5e4688a69
BLAKE2b-256 b38e97fd963b8071060edb2416e4f4b81d95998c283bd42521604ebd698ba221

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 faccd438a4bb5fdbf56d711c3beaf38dc5c14a3c6b26dfc678b28d769bad112b
MD5 a4009669624323c9429448dbbada291e
BLAKE2b-256 e247dfdac03d56db72b5275666e43c5c0fb11682f25ddad2598cab75482759b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 2b90b3497f4492377ed4d3484e253694d20ea9780377c0de1ba413761f74bc5f
MD5 ec2ba27455563db39fc69905ca2d6c2d
BLAKE2b-256 e0b993d496239b26a843a1b86882aafb6c49d8539e8bfe64f63f6b2a7132e7e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0d3d6092d6d1b75351bc52b6134f3972719771f198dd96c1a1b8d0c27378f04c
MD5 d4e3880d400857f440d97a2bb3b742ac
BLAKE2b-256 1861d766f0ff4ff72fec2ab0f70e56fdaa0d43c851145fe1adeed63034b3a95b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f39e7fa98fa3ca469d904a01f417e7ca472fcf6e550f65100dbdddee11f701fe
MD5 9dabda55778d4118713f60ca177e1354
BLAKE2b-256 7489de8c390fdb5532c692cba33264d3ef8f012d8c833e096e24bbf9599fbb55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cbf3f098ffb197542bd48edbd3dce943dd20440091709cf4957ef35e148d2cae
MD5 fa349b4652c163d88ae0b0c27d580edc
BLAKE2b-256 39af9d0e1e5a14d3976de7519cc019cb60ed2b287009b341fa0aeeaa2ac8b9a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1b0fbf242f5f0254576a316cdcd904fe6eb8c7130ccd49fd7cf7348aa541fb2f
MD5 7c7becd5b01d05c3498f24122042b93d
BLAKE2b-256 dadfb0bead9bd4321f1b52d5105a677e5f7ae412b555b106b38350c66b1609e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c7a14d7e208648b8412e9f168b5dbb15e3fb497d1baaa60e4908973ac459d9cd
MD5 1a7f3aeb1d6cba401530ddff6c160190
BLAKE2b-256 bd13f9289091366a77e52fde4f854dfc4e7ee23f274e6731b5ee3ae5ab49e26c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.0-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 81246161e26f7862a81322c3da331f030c4eda4b63ff1637f96fc7873ca0f060
MD5 ca458219382ab0f99b0604ff0a4b0b86
BLAKE2b-256 0d5b98bf93fc0a079f23285ae7fc5ad7e2bdc87f8fd4d8722480c46748f01f54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a9c7014638829e7113c0b33e8a87fcfc04d6e4947a84b2b67b82dcbbf4f96177
MD5 3b6d631b43fb9f8f785160a3aedecdd7
BLAKE2b-256 fff738ef77fb421e38363abcfa5203efeb45fe6fecc24073d5d871de568cfe9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 ca894f59cd3d62c2c50f3e503ad85b5b6660cb9205ca4b2e8da2a06fcc917ea4
MD5 8a2edc3e867e57130cd1c66bd4265347
BLAKE2b-256 4d231b4eb0626407e51e07e1b74d366ba73f9b21b993a5b9bdcccadf9039d8d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 33e754d4e089043b271cb358865b7bf17d6d4e9b865c69091e8b06e752f9b177
MD5 7606fa9e92866d0bc054f71f128517f2
BLAKE2b-256 66d3f3d836ff913b2de13287faa3896c9be6804b0d4f5c15e7929b70df42b7fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d252af7c2f5957396ac921d19eb036cc57148687c2a3a4292c49b7d9c165d5f1
MD5 5a028f25fc67bfa2c6628f6d5173c27e
BLAKE2b-256 65cc3905807e8d487861d557785afadfa5097c28e1d8d65c63c3cc00f066d473

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c365b52109650e45db07307c97328a0099a4778dfdf10bc5a7094aeb13b68e44
MD5 b42c2a61adbd3a537fa4048360e17e7c
BLAKE2b-256 8904d3c89baca72b9606e4d095c2f4e97c73e3c39fc21f851fed90cf603204c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a61b444fcf4a63b0c4334e5b210ec5b79fbaf803d21e3ad1f1c1b3e20b5c8fc4
MD5 3e89b0eb72ef6741bc36673276ea9ce9
BLAKE2b-256 2b7a3833e6f13bed3b263a56820340781355affceab367a81bf65899083cbc54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d03ae33eadfeebb9c5eab4b7009a58ff93164905336f46e34f8a2851d3e7a996
MD5 f4a1481e50e04e2039b89898201c9bbb
BLAKE2b-256 75dc206fc78661fbb9b767e618a3013d53b5a9da545dc39ea37bb6dae4b8aa2b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 a72472d8d3a6cd027f1eea335834ab945243855b7a86d4d5b61e76ea20c43d40
MD5 f1532a26a5f0081f4c3c8e400e102f6d
BLAKE2b-256 92de402377e8d797e6d116321dabebc61b618afb50879799d74cbc443bbbe55e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6ed7d252471ba14bcd65b63fb47912490135f78c8a3647dd6f89d45e92f09fb0
MD5 95d869304a37959665e87eb5b162a195
BLAKE2b-256 f90b7d711a33820aa8902d99edfe339d84043258a1096d53295a2c0b93f900f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 243ff14479344a6f13ae3b632b1f0a6fc19c428d278ce596472fdcce1abb7487
MD5 deded6ce94b10ce6e47dc65bec18082f
BLAKE2b-256 812915e73c7ff6194ab7f3d398724b6534165ba6522c953400e4d5e1517e5747

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ce58e52f64427e579c56216c10d4ae19bbac9cf41a275878d6f0663216247e5a
MD5 6a8547d674c53add55b2574711d1f05a
BLAKE2b-256 15a3866b7064dfd76bf9f5539e9feda1dfa87cecacfcaf6ad4a53f368e8acb94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 aa741fa4341f55d108082c92393529773176d522c9c345b97184551fd9a012bf
MD5 c2ccf349f6124c444cf5a8e58e94e293
BLAKE2b-256 7a71c590e02feee4c0784592ba3a0182c394ac80dd481883fdbdd04c4123b4f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 90362b7d9a5b98086e06491fc19e41ac0863decf2c19de49dcd023fc1d1643c2
MD5 4d3e53e6cc6831c7d5efbfd4cde65770
BLAKE2b-256 911c5a057b3a2a36ab6b7ef7e48a121ac5b6b808b2f5659040359707d7d361dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 43c6e96cae11c70e65ef256d5fab8e92b1c8236501c6f6e2f354dac4ca5f1a63
MD5 3d4508f38f445e687d376f348654e1cb
BLAKE2b-256 4c9ccfd0714386e10e8b21893aa85e110a2e86643fc8e261638c46f7cb58dcd0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9e19f18bc3e175766c681cd12fa8d729c23a004fd5bccf8cce302cd8c7c94938
MD5 9f2c8c3463c42893281cdb840635c139
BLAKE2b-256 e2846f4fb5329e45abd4105ac08ce220a150183bbeb811fab9d7769d322ba811

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 90dc1b4d4fdc3dbb4e813e8bb9e10d19cd5a0931d191508d4f82af909d75cc1b
MD5 2df9d18d1f666aaa7e2e28b897af3dc2
BLAKE2b-256 1e43c4cf7dce7a4adcf2f790c40cd050a3ec4308cafee05bc8cd686191fe8c21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 62d34f0bc957dfbb503f6ce43961404a77a143564db7e3e03043845e5dc66552
MD5 c6b97ddd7a72e22993d3f1b9d90ebf75
BLAKE2b-256 8a38304b8f9174645e0f0686d1f45564b289929a36d763b04ddf2c023881b5ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 dd0859c14e939a70e4f658c98fa5de115e8f8e243172f8b6dacea01c963e4401
MD5 226882eed30e3d500b4b2d8d2d991f41
BLAKE2b-256 b331d0526fdbe0e24b66e418166721ce0d1f78101b135c9d9a0160c732b2be48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 47722ecdf70e81498be805a8a7b2a5649a03e41a3f131cc33ce8bbc9e0717578
MD5 7f345b3f93c7e6905be8c6b07829d1d7
BLAKE2b-256 011fc06b8646f94257111a0bd82d434af996a9bc98484f5c11eefbfb2b56844e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 daee701b80c92ad23299f7701d43f8c9242815640c7711b17c4592d664d3488c
MD5 5b7e20b41af17525c83b2386a7c33361
BLAKE2b-256 0119e5d7505cc6bc1a28de3f3bd63897a88303cd6f9304bf4e5bd3031d7bf6ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 516d595883d494f7f2f41c274382f18d6b19553a36f5b7e72199495cf1a9ffa0
MD5 6505362a3da9e6383fb33abe9a8a0f43
BLAKE2b-256 b01d9dd927d6effbba2fc36f82b872ee04fc5e0a04b88fafa40b8691172104eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5bf8c008cc3a00ae3b463cf929a60efaa9d834c3520fb8da8514d92afdf6edd4
MD5 4e65213053cea6b109776320bb4274ff
BLAKE2b-256 c8104a3c1f7475cc805e697224efce81560c6bb8396f8b6513f18b060e0bdc81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 869a309e2c1634290413d7ba73291a47e6c05798c0b60cf25f5621a4c9b04a21
MD5 e9aca48f824a40ecfb6b35d47742bd54
BLAKE2b-256 2160ae456f10966cbf5bd9fc3043622787802297376eb2b029506c96d20fd630

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 68037c5d2ce3e2045bcf1c11c66002158508edb19b01687788696d9a4c0f3d8d
MD5 2ab0f9f48f3b88ab419f487fe36acc63
BLAKE2b-256 5d938e98f62404987767f95967c7bdc635e67155981302cb59eb327b06316cf6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 ecf02ac09dd1881aeb27849ed89739d3c1ae1f244010ae5646d79ec3d04dea48
MD5 3fa9bcc5568fdd37198975ba00ca22f2
BLAKE2b-256 b22e7d8a25f3648cd51b5c8a842923edc557b782d0660aa09faf3c6db5faf898

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 de85ce03e4bb4096c6b093a9dcbc9cec3bb8a6520537b500a49dfb112e4b6ddb
MD5 92c07a45563fbd5e62d48c44298628ee
BLAKE2b-256 d75964a22357af274faf0fa508cd51efe0bd723e934e8b87192bc99e69692a8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ce24243bbd9f2d62b3e6f26e1a3a29a5b84849cc3960651f68771b228446f064
MD5 4c29e48eb9de81779d5550e3653f7b1d
BLAKE2b-256 ec4711c565b5e4ba0352473b18f63646d88d230ce6eb73becfdee2170e1e64ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 05219a35b9b9a7d74fcbd2895e2a88e3aaf0b3b4f96fa34e31af25f5bc1712d5
MD5 77d1110e7ba0df77b3440a358dfdf30b
BLAKE2b-256 886246e4dc180220c97a19b9dc7cd5d8ed937ff4c03db83212b18faa6e4ce28b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 73192125cc713a94a599951a2140adb8b01a84225293bb3978df1dbd348c4466
MD5 ba315ac2e8561b0c9310be016cb736b0
BLAKE2b-256 308ae631decc6c2f5cb86e6a88b1e3691e3f5157a2ed3eb00628a4ec37189389

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cdbf665252b8fc64ed5bc7bd99fbf8f79326d86dbe3dcbba33e440c504eee131
MD5 0323efb52003dae8c8275a529b31fbb2
BLAKE2b-256 50f554e73a0695cc1dd81afa39563c3f17faa7d8c538d8616e9627b46ec6d905

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9a3d9e88ab564e5eda7caffcc84141ae79f24489721944eec83834223a795433
MD5 83b2edc6ef9d9ba29d6770a25b61ac57
BLAKE2b-256 a3b00d1886210b53c8100fec28c1fe052f2c42c3969b0fb64bac4e11ae69122d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sfst_transduce-1.1.0-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 f3c4fb25c62361f9ebbb5f0f6058f7ae87d162c27e3abd65e9e08d84a394ebcd
MD5 22067049ca61e5247934fea2631577eb
BLAKE2b-256 05e0a717e39a0bde2d4b940206a426fe65a22a1cbc1fd8959097337ce6fa2563

See more details on using hashes here.

File details

Details for the file sfst_transduce-1.1.0-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for sfst_transduce-1.1.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 94ece3b15ea4f5ee79b2b760c507f67d325e1b8db6886ac755b1d7436a5c45ee
MD5 63b0e4eb25985938ce2eec3a1565167f
BLAKE2b-256 e50fc73d2eda826b71cb30167980316ac39f7680c6ae8064b957e3db691d513e

See more details on using hashes here.

File details

Details for the file sfst_transduce-1.1.0-cp37-cp37m-win32.whl.

File metadata

File hashes

Hashes for sfst_transduce-1.1.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 93361b379dccdaedc9285d01697f2dd40a11a607e5105fe8ef6e33d9dc3f61bb
MD5 4ff43eb984cb36c66d593704718058a1
BLAKE2b-256 618e7ced1783b9f187c3aa01205dfa52d32bf1a2cba1e50456bed1ef0e00373b

See more details on using hashes here.

File details

Details for the file sfst_transduce-1.1.0-cp37-cp37m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sfst_transduce-1.1.0-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 00087abee660966e9f8afdd83fd003d20925b59805708d51d3ede593ddbf0a50
MD5 62c9c556c580b654cded07fdf909a681
BLAKE2b-256 bfa63ea9bad5000f84eb9c725eca060770c05881e56fbf5d8e6b139a018c3e0d

See more details on using hashes here.

File details

Details for the file sfst_transduce-1.1.0-cp37-cp37m-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for sfst_transduce-1.1.0-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0388dd80e8ed8b5fc2a98dd9a33c84be6bb24f955d1a9de92c90ba79faacb238
MD5 b0f0baab2c078cc06ef53bd86ff503e7
BLAKE2b-256 b51f239b1f0067c2085a445bce45825df65638b4efa3795bcd67360467ce5e2f

See more details on using hashes here.

File details

Details for the file sfst_transduce-1.1.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sfst_transduce-1.1.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f11217db2294d386599a69d1f37fed760418bf5b020aa07499310264872666a6
MD5 84804fdedfe59fa48f811e46ccbc8074
BLAKE2b-256 b00d99caf57708fb14594817cf935be5769d8f141b3550d33d90d449ef8242a6

See more details on using hashes here.

File details

Details for the file sfst_transduce-1.1.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for sfst_transduce-1.1.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b70fb1495cf6f19b107c5ce4ad2a645cf40ba97abb8bccd2f3bf8db0c9c493b6
MD5 4e6f38614b2e1070792b6033335acb15
BLAKE2b-256 67601e90c16195bd27466fb85553ce9861331f082cf64358b876ce0fa03829bd

See more details on using hashes here.

File details

Details for the file sfst_transduce-1.1.0-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for sfst_transduce-1.1.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9cb24a6eb12b5a15c9cde9731c5ece8d3ff78319a1edbcbe3eccd3faebf391a7
MD5 a5425d93dfbe33c4794312612fa9b9e8
BLAKE2b-256 39c1eca775d9740815b1d5dd53f05e47b9b29c7427d048492a40583c93b29115

See more details on using hashes here.

File details

Details for the file sfst_transduce-1.1.0-cp36-cp36m-win_amd64.whl.

File metadata

File hashes

Hashes for sfst_transduce-1.1.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 5b05510bff2164cfacd9c9250197638194a4e6786adbe38df3ebcc9c6b4dd6df
MD5 4c918b044dcc53b682099d6db8eb6a29
BLAKE2b-256 2a713a4108b442d97a01de52abe6034175befe1b87dba9dd8e50cf1917de1c47

See more details on using hashes here.

File details

Details for the file sfst_transduce-1.1.0-cp36-cp36m-win32.whl.

File metadata

File hashes

Hashes for sfst_transduce-1.1.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 0ebacc1ec52c8bab5b18c9580deaa14b72c25719013d5717ffd1bc97d795e1b0
MD5 39940fbf917526e17787abec79d05a55
BLAKE2b-256 014fa2c7b90dcaae2b57a8840f5c53be115220cc877e3a63a83a128f9054ebd7

See more details on using hashes here.

File details

Details for the file sfst_transduce-1.1.0-cp36-cp36m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sfst_transduce-1.1.0-cp36-cp36m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5ae980aeef0e3b89dea41f7ee3617cd6fa8e07f5c345d8c6189ed8dcf6e333ae
MD5 fc0d08655d7cfac0261c1c2dea6343b8
BLAKE2b-256 a2a4fa4b6aebf8f7e0b07cd86b2236a959b2e1b113fef74472783181f016b336

See more details on using hashes here.

File details

Details for the file sfst_transduce-1.1.0-cp36-cp36m-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for sfst_transduce-1.1.0-cp36-cp36m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 22d35518410c155ef0070ef16d6a935db1dce056293263e7a0d1ba030673a841
MD5 9cb033fa77c3050846507cc0fe4bf114
BLAKE2b-256 5d0e1b4d3b71dcd94eed999aa0ba2b48c81b6a6dfedeef0284d0770ee3bd1d57

See more details on using hashes here.

File details

Details for the file sfst_transduce-1.1.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sfst_transduce-1.1.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f68665b92db2df9dad3497235f29f78e6e1c15a56859421eae4586b17c679163
MD5 b39ad3b8258c938b8cfbec3c79005386
BLAKE2b-256 a61efe59698980a9f47275e351cc29ce628eeb9a3bf6ce2a6205ec102d2b0d81

See more details on using hashes here.

File details

Details for the file sfst_transduce-1.1.0-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for sfst_transduce-1.1.0-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 39516f4f78efe898ba39ffdc313877537f54d4bce8e3e50c6f24407aab4d389d
MD5 a1cd015f8548c24acf8fa721a071fddd
BLAKE2b-256 e2d41663bc97fc5f888e6dd3c13b7dc17651471af00adb57862ed65093cff158

See more details on using hashes here.

File details

Details for the file sfst_transduce-1.1.0-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for sfst_transduce-1.1.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6fc5491d635ba8e82398d71833cc670981aa1338f8f421a2323ab4e665188037
MD5 2d7e445a8f61936c020da656eecd49a2
BLAKE2b-256 a7b88b00d28f03f0d26ba3a7ea94affecf6bd4bca6414fd7090c7844e56dd70b

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