Skip to main content

Python SWIG-bound interface for HFST

Project description

HFST for python

CI/CD CI - Test, Build, and Publish
Package PyPI - Version PyPI - Downloads PyPI - Python Version
Meta CI Buildwheel Badge linting - Ruff PyPI - License

Package description

Package hfst contains python bindings for the Helsinki Finite-State Technology (HFST) C++ library. HFST toolkit is intended for processing natural language morphologies. The toolkit is demonstrated by wide-coverage implementations of a number of languages of varying morphological complexity.

Installation

For most users, simply run...

$ python3 -m pip install hfst

On some OSes, you can install hfst python bindings by running install_nightly.sh.

We compile wheels using cibuildwheel which enables us to publish wheels for CPython and PyPy on a large variety of OS/architecture combinations. If wheels for your platform are not available, open an issue! (Windows support coming soon!)

Usage

C++ side functions and classes are wrapped with SWIG under module 'libhfst'. It is possible to use this module directly, but there is a package named 'hfst' which encapsulates the libhfst module in a more user-friendly manner. The structure of the package is

  • hfst
    • hfst.exceptions
    • hfst.sfst_rules
    • hfst.xerox_rules

The module hfst.exceptions contains HfstException and its subclasses. The modules hfst.sfst_rules and hfst.xerox_rules contain functions that create transducers implementing replace and two-level rules. All other functions and classes are in module hfst.

For documentation and examples, see https://hfst.github.io/python/index.html.

Requirements

Compiling hfst from source requires at least C++ compiler (tested with gcc 5.4.0), readline and getline libraries and setuptools package for python (tested with version 28.8.0). Swig is no longer needed as pre-generated files are included in source distribution.

Compiling from scratch

This repository has a submodule with the underlying C++ code. The first time you clone this repository, run $ git submodule init to initialize the submodule. Thereafter, every time that you want to pull in the latest changes from the C++ hfst repository, run $ git submodule update --remote or $ git pull --recurse-submodules. See the manylinux build script for an example of how to compile the underlying C++ library.

Once the library is available, the package can be installed by running...

python3 -m pip install .

...in the root directory of the repository.

Running tests

Tests are contained in the test/ directory. To run tests, you must first install pytest using python3 -m pip install pytest. Then, in the root directory of this repository, run python3 -m pytest.

Documentation

See wiki-based package documentation on our Github pages. In python, you can also use dir and help commands, e.g.:

dir(hfst)

help(hfst.HfstTransducer)

License

HFST is licensed under Gnu GPL version 3.0.

Troubleshooting

Pip starts to compile from source although there is a wheel available

Try upgrading pip with

python3 -m pip install --upgrade pip

Another reason for this can be that the source package on PyPI is newer (i.e. has a higher version number) than the corresponding wheel for the given environment. Report this via our issue tracker so a fresh wheel can be created.

Error message "command ... failed with error code ..."

Try rerunning pip in verbose mode with

python3 -m pip install --verbose [--upgrade] hfst

to get more information.

TypeError: catching classes that do not inherit from BaseException is not allowed

Some version combinations of SWIG and Python make HFST exception classes subclasses of Python's object instead of Exception. Then you will get the error above. If this is the case, run...

sed -i 's/class HfstException(_object):/class HfstException(Exception):/' libhfst.py

...after build/installation to be able to use HfstException and its subclasses in Python.

Links

HFST project main page: more information about the project

Github issue tracker: for comments, feature requests and bug reports

               GNU LESSER GENERAL PUBLIC LICENSE
                   Version 3, 29 June 2007

Copyright (C) 2007 Free Software Foundation, Inc. http://fsf.org/ Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed.

This version of the GNU Lesser General Public License incorporates the terms and conditions of version 3 of the GNU General Public License, supplemented by the additional permissions listed below.

  1. Additional Definitions.

As used herein, "this License" refers to version 3 of the GNU Lesser General Public License, and the "GNU GPL" refers to version 3 of the GNU General Public License.

"The Library" refers to a covered work governed by this License, other than an Application or a Combined Work as defined below.

An "Application" is any work that makes use of an interface provided by the Library, but which is not otherwise based on the Library. Defining a subclass of a class defined by the Library is deemed a mode of using an interface provided by the Library.

A "Combined Work" is a work produced by combining or linking an Application with the Library. The particular version of the Library with which the Combined Work was made is also called the "Linked Version".

The "Minimal Corresponding Source" for a Combined Work means the Corresponding Source for the Combined Work, excluding any source code for portions of the Combined Work that, considered in isolation, are based on the Application, and not on the Linked Version.

The "Corresponding Application Code" for a Combined Work means the object code and/or source code for the Application, including any data and utility programs needed for reproducing the Combined Work from the Application, but excluding the System Libraries of the Combined Work.

  1. Exception to Section 3 of the GNU GPL.

You may convey a covered work under sections 3 and 4 of this License without being bound by section 3 of the GNU GPL.

  1. Conveying Modified Versions.

If you modify a copy of the Library, and, in your modifications, a facility refers to a function or data to be supplied by an Application that uses the facility (other than as an argument passed when the facility is invoked), then you may convey a copy of the modified version:

a) under this License, provided that you make a good faith effort to ensure that, in the event an Application does not supply the function or data, the facility still operates, and performs whatever part of its purpose remains meaningful, or

b) under the GNU GPL, with none of the additional permissions of this License applicable to that copy.

  1. Object Code Incorporating Material from Library Header Files.

The object code form of an Application may incorporate material from a header file that is part of the Library. You may convey such object code under terms of your choice, provided that, if the incorporated material is not limited to numerical parameters, data structure layouts and accessors, or small macros, inline functions and templates (ten or fewer lines in length), you do both of the following:

a) Give prominent notice with each copy of the object code that the Library is used in it and that the Library and its use are covered by this License.

b) Accompany the object code with a copy of the GNU GPL and this license document.

  1. Combined Works.

You may convey a Combined Work under terms of your choice that, taken together, effectively do not restrict modification of the portions of the Library contained in the Combined Work and reverse engineering for debugging such modifications, if you also do each of the following:

a) Give prominent notice with each copy of the Combined Work that the Library is used in it and that the Library and its use are covered by this License.

b) Accompany the Combined Work with a copy of the GNU GPL and this license document.

c) For a Combined Work that displays copyright notices during execution, include the copyright notice for the Library among these notices, as well as a reference directing the user to the copies of the GNU GPL and this license document.

d) Do one of the following:

   0) Convey the Minimal Corresponding Source under the terms of this
   License, and the Corresponding Application Code in a form
   suitable for, and under terms that permit, the user to
   recombine or relink the Application with a modified version of
   the Linked Version to produce a modified Combined Work, in the
   manner specified by section 6 of the GNU GPL for conveying
   Corresponding Source.

   1) Use a suitable shared library mechanism for linking with the
   Library.  A suitable mechanism is one that (a) uses at run time
   a copy of the Library already present on the user's computer
   system, and (b) will operate properly with a modified version
   of the Library that is interface-compatible with the Linked
   Version.

e) Provide Installation Information, but only if you would otherwise be required to provide such information under section 6 of the GNU GPL, and only to the extent that such information is necessary to install and execute a modified version of the Combined Work produced by recombining or relinking the Application with a modified version of the Linked Version. (If you use option 4d0, the Installation Information must accompany the Minimal Corresponding Source and Corresponding Application Code. If you use option 4d1, you must provide the Installation Information in the manner specified by section 6 of the GNU GPL for conveying Corresponding Source.)

  1. Combined Libraries.

You may place library facilities that are a work based on the Library side by side in a single library together with other library facilities that are not Applications and are not covered by this License, and convey such a combined library under terms of your choice, if you do both of the following:

a) Accompany the combined library with a copy of the same work based on the Library, uncombined with any other library facilities, conveyed under the terms of this License.

b) Give prominent notice with the combined library that part of it is a work based on the Library, and explaining where to find the accompanying uncombined form of the same work.

  1. Revised Versions of the GNU Lesser General Public License.

The Free Software Foundation may publish revised and/or new versions of the GNU Lesser 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 Library as you received it specifies that a certain numbered version of the GNU Lesser General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that published version or of any later version published by the Free Software Foundation. If the Library as you received it does not specify a version number of the GNU Lesser General Public License, you may choose any version of the GNU Lesser General Public License ever published by the Free Software Foundation.

If the Library as you received it specifies that a proxy can decide whether future versions of the GNU Lesser General Public License shall apply, that proxy's public statement of acceptance of any version is permanent authorization for you to choose that version for the Library.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

hfst-3.16.0.1-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl (62.2 MB view details)

Uploaded PyPy manylinux: glibc 2.28+ x86-64

hfst-3.16.0.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (57.9 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

hfst-3.16.0.1-pp310-pypy310_pp73-macosx_10_9_x86_64.whl (18.3 MB view details)

Uploaded PyPy macOS 10.9+ x86-64

hfst-3.16.0.1-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl (62.2 MB view details)

Uploaded PyPy manylinux: glibc 2.28+ x86-64

hfst-3.16.0.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (57.9 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

hfst-3.16.0.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (18.3 MB view details)

Uploaded PyPy macOS 10.9+ x86-64

hfst-3.16.0.1-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl (62.2 MB view details)

Uploaded PyPy manylinux: glibc 2.28+ x86-64

hfst-3.16.0.1-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (57.9 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

hfst-3.16.0.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (18.3 MB view details)

Uploaded PyPy macOS 10.9+ x86-64

hfst-3.16.0.1-pp37-pypy37_pp73-manylinux_2_28_x86_64.whl (62.2 MB view details)

Uploaded PyPy manylinux: glibc 2.28+ x86-64

hfst-3.16.0.1-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (57.9 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

hfst-3.16.0.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (18.3 MB view details)

Uploaded PyPy macOS 10.9+ x86-64

hfst-3.16.0.1-cp312-cp312-manylinux_2_28_x86_64.whl (66.8 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.28+ x86-64

hfst-3.16.0.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (62.0 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

hfst-3.16.0.1-cp312-cp312-macosx_11_0_arm64.whl (17.8 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

hfst-3.16.0.1-cp312-cp312-macosx_10_9_x86_64.whl (18.4 MB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

hfst-3.16.0.1-cp311-cp311-manylinux_2_28_x86_64.whl (66.8 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.28+ x86-64

hfst-3.16.0.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (62.0 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

hfst-3.16.0.1-cp311-cp311-macosx_11_0_arm64.whl (17.8 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

hfst-3.16.0.1-cp311-cp311-macosx_10_9_x86_64.whl (18.4 MB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

hfst-3.16.0.1-cp310-cp310-manylinux_2_28_x86_64.whl (66.7 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.28+ x86-64

hfst-3.16.0.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (61.9 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

hfst-3.16.0.1-cp310-cp310-macosx_11_0_arm64.whl (17.8 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

hfst-3.16.0.1-cp310-cp310-macosx_10_9_x86_64.whl (18.4 MB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

hfst-3.16.0.1-cp39-cp39-manylinux_2_28_x86_64.whl (66.7 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.28+ x86-64

hfst-3.16.0.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (61.9 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

hfst-3.16.0.1-cp39-cp39-macosx_11_0_arm64.whl (17.8 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

hfst-3.16.0.1-cp39-cp39-macosx_10_9_x86_64.whl (18.4 MB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

hfst-3.16.0.1-cp38-cp38-manylinux_2_28_x86_64.whl (66.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.28+ x86-64

hfst-3.16.0.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (61.9 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

hfst-3.16.0.1-cp38-cp38-macosx_11_0_arm64.whl (17.8 MB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

hfst-3.16.0.1-cp38-cp38-macosx_10_9_x86_64.whl (18.4 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

hfst-3.16.0.1-cp37-cp37m-manylinux_2_28_x86_64.whl (66.7 MB view details)

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

hfst-3.16.0.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (61.9 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686

hfst-3.16.0.1-cp37-cp37m-macosx_10_9_x86_64.whl (18.4 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

hfst-3.16.0.1-cp36-cp36m-manylinux_2_28_x86_64.whl (66.7 MB view details)

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

hfst-3.16.0.1-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl (61.9 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ i686

hfst-3.16.0.1-cp36-cp36m-macosx_10_9_x86_64.whl (18.4 MB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

Details for the file hfst-3.16.0.1-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hfst-3.16.0.1-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6e1fd7230176888d122b642e4bc202f3668561f09241d9bd727be0e27f3cb613
MD5 8715f99856e356b68f371570c5c2d943
BLAKE2b-256 9278108923c900583e3ed80cab08ea7351c2e91d3254275506eca1dd8dd2bec3

See more details on using hashes here.

File details

Details for the file hfst-3.16.0.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for hfst-3.16.0.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b10a8898cdf60471b1cc7a5ee4fd07152706689afe2d453f7ffc81174ff5714f
MD5 6b6c5831ccdbddddd041d6494afed8e3
BLAKE2b-256 322dbddaf0b8a32db20db4cdba5e877779eb32e596719212f03d6e83e1b0df83

See more details on using hashes here.

File details

Details for the file hfst-3.16.0.1-pp310-pypy310_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for hfst-3.16.0.1-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a3cfd77b4365af3c9241a0738bb7c5248a267a77a0cb0959ace10565f3c8f94c
MD5 b3f85f9b96759790000696365bd776d2
BLAKE2b-256 16011d92fca0c1784509147724efc310ca59e820196a01231a0cc2234c6ce26e

See more details on using hashes here.

File details

Details for the file hfst-3.16.0.1-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hfst-3.16.0.1-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8979fb01c310060637d8cc854851333a12e2eb8a3d553bcf8b4f43022eed2833
MD5 2afebe9a8aeaff6c6b337e6399ea370c
BLAKE2b-256 c6d97ab7fe04a0cbcf89466a32df0f30a8dabf6d39fd6c5fe6b47b7318fb1161

See more details on using hashes here.

File details

Details for the file hfst-3.16.0.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for hfst-3.16.0.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3dd686a0375cc6218de5cb930e45d634566917d2f31fbb37e2722a41d84db904
MD5 4697bcfa5d3cd42580911d8e856e3e18
BLAKE2b-256 4f6b7239ba4b759e230049c77578fee13a070d244d025baf45ad5c189f6a9c5b

See more details on using hashes here.

File details

Details for the file hfst-3.16.0.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for hfst-3.16.0.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 783977560f088d41bdf44afa390926782fc6078f50819882f191ea3aa8c1b617
MD5 c20359f781689ea818ece6de093e169d
BLAKE2b-256 795bc5ac7b0b72bc9f910763be91ac5deb24e89bae39e0361c7a180b1886d20e

See more details on using hashes here.

File details

Details for the file hfst-3.16.0.1-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hfst-3.16.0.1-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d2a8fca57b426ed052a9a69e78337a4889363a870e5c0ec8989ee33faab239a6
MD5 9d0f3fd865cf8bf3a1f35c4416385a54
BLAKE2b-256 96ef699e30c01d01ea1d557061a412512ef63f9c884930fce5cba051801969f2

See more details on using hashes here.

File details

Details for the file hfst-3.16.0.1-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for hfst-3.16.0.1-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 95252d852d124abffff734df32e52ffc75a3e7c9f2c6eb508e2f09c2602b41cc
MD5 36a3954c43bc96042e4147b008b35893
BLAKE2b-256 fbc3412c3f8fa79f48e175759ac0497ff28ddd0825c7972aed90810a6207e395

See more details on using hashes here.

File details

Details for the file hfst-3.16.0.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for hfst-3.16.0.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8509f2b6e710ecaa26af9a10f8e52d1174c3d856b1ee7133cf5cb10c36998e55
MD5 8bb4db3e7ddfa1a361e773dd0fbf2a73
BLAKE2b-256 0817a284cf99421ad016a278301bbaf25c846aa28e811cb1f582fdbf32eee2d8

See more details on using hashes here.

File details

Details for the file hfst-3.16.0.1-pp37-pypy37_pp73-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hfst-3.16.0.1-pp37-pypy37_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0c590ceba25e248f21bae428d49a5965e99460007370ab7198546b3daa2500a3
MD5 12f68d7ad8ebf4ed05a9af5c3f7989cb
BLAKE2b-256 ff19e6f37c1f5303ccee757f5dfffc5f499b0336b1e691eaf392752fa4c1baa0

See more details on using hashes here.

File details

Details for the file hfst-3.16.0.1-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for hfst-3.16.0.1-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d162e467ee816555e76acb9b8a3b73dea19ea925be94d74cfc06f7a5f302c25f
MD5 6f15cb49e0d0d3502531292030caaff1
BLAKE2b-256 e2d0e97d9613dfd29e6e6e87368a389f83775b44c3d7f880bcb1217a9f76174a

See more details on using hashes here.

File details

Details for the file hfst-3.16.0.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for hfst-3.16.0.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bbbf8804ce74dd3956567944230849655e3192d6ffc51dfc116c232387e503cb
MD5 527253c40f755a77725b1a46700e533e
BLAKE2b-256 e19a0a6cc1bc3f74ba25342273e91d5e6a4d267dbd6f71c368a5ebbb8b90a8a9

See more details on using hashes here.

File details

Details for the file hfst-3.16.0.1-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hfst-3.16.0.1-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ba46f9bef28a4b0c396cd753b5db76c2886102041f4287c286c37c06f3f6f525
MD5 a927e0c320a0df3ffd01ba9c7f9ed778
BLAKE2b-256 95388d48a72af869872a6642d565099dc554337c46bd3bfcd801b33c5ef303f1

See more details on using hashes here.

File details

Details for the file hfst-3.16.0.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for hfst-3.16.0.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d52331496d68566ed823a1207834e81862ec3de90124ab36ef27b33db59cb6f5
MD5 8ca4564dc67601d15f690c9a2dd054da
BLAKE2b-256 0837779c11f64d29f409b18aaea585aa1b208bb5e9488b5e3590a33e7123c20b

See more details on using hashes here.

File details

Details for the file hfst-3.16.0.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hfst-3.16.0.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 26accb40715e62d3615178ea26c0565ecfbba11f8406ee38add0b97ee4f15721
MD5 97f5895a71bebd0878d8f09d03b7cf34
BLAKE2b-256 329545b13d669cd95dac91fd70255566fc7e0d66f36b819aa8e3aa6b7d0482d8

See more details on using hashes here.

File details

Details for the file hfst-3.16.0.1-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for hfst-3.16.0.1-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0bc77167a41260ea2cd277be8b91920d969f1317bfef16555df6a3b4aeb886b7
MD5 0868115ae9066925c78297cfebb1c0da
BLAKE2b-256 d7b21843c91f0e475868e7b96d5eb1e592b262336b89b56c5380820a5064fd98

See more details on using hashes here.

File details

Details for the file hfst-3.16.0.1-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hfst-3.16.0.1-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f6053282e5fcc8e603650ddaf0e9bb2eab083d738a0413cfc8932f2457fdec36
MD5 f232ee743325489aa3bda278a30111a5
BLAKE2b-256 f91486240803f3b6c1763363d3916fad5418673813aaea248699b2e5d4a0fdb4

See more details on using hashes here.

File details

Details for the file hfst-3.16.0.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for hfst-3.16.0.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a40fc49845d11bf255e38d0d3c1414aa2710e49ec66ddc18ebf0ad550e622c9b
MD5 b3677cc29abdef30c642d8c4fbe612c8
BLAKE2b-256 68aaa56f120f9f31a366038b14f092c5c4f26bb1ae9e6fd8332b3359b3c87063

See more details on using hashes here.

File details

Details for the file hfst-3.16.0.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hfst-3.16.0.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 364c1e7d5e7efbc56a829670adbbe853ebca04a99c9ddb2eeb851fc02aefedd0
MD5 c2e72cd7def0f9803f07f83b00e3c375
BLAKE2b-256 2a66d5719a9652a7348988f1444e7f1fe2af9df3a80031fa101691f14e9f6ad7

See more details on using hashes here.

File details

Details for the file hfst-3.16.0.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for hfst-3.16.0.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6bf88c17e1651a0ec61d67ff7b99d8243abfe634441055d416f6522e3e60f53e
MD5 14c7f582b79469d0b404d48869a27cac
BLAKE2b-256 87a00ded3a9ffc0e039d2ce07bacf8ab62b26640b8cbd6fdffdf8cc26d903d03

See more details on using hashes here.

File details

Details for the file hfst-3.16.0.1-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hfst-3.16.0.1-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7d5442fd332a33c437ae733942c3aceb0fbac8203a97577afde2ec1a488162a9
MD5 9e33e112cc8d581b0bab83ed630e898b
BLAKE2b-256 a63bf64483279361c30581aa40a2d9352503d2db06533310425c70f09d75e027

See more details on using hashes here.

File details

Details for the file hfst-3.16.0.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for hfst-3.16.0.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bebc7c55857c230013455f113b2460bf0b586e5a38ab0f8bcf1365fefea38128
MD5 8e5a6845383fa1b6c8dc2abafcb5d2f3
BLAKE2b-256 3a7835be7b34af8e03f2104b01eb3f4b3ba930dbe28efb4c6bec1592cc955cb6

See more details on using hashes here.

File details

Details for the file hfst-3.16.0.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hfst-3.16.0.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 916b71857a41f9504ae0282036a4134d7cc7499f4e975b2e719fe7fe834425bd
MD5 0f331342db37bffd3a8aa252c1c9ea4b
BLAKE2b-256 617fb938ac9ca4d6b0ce73c3069bd519efe798dfa77fa9a411a51599d01c8d38

See more details on using hashes here.

File details

Details for the file hfst-3.16.0.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for hfst-3.16.0.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 dd2eb545aef3dba76f1057bce003ff3674282d4a256eabd3f96c772200538341
MD5 f23bf1ecc08be99f21adf6a28c4f85c9
BLAKE2b-256 2231a369d0da3d396528ce23983a8e674ae3c5622330bd438ef638a4d1978d59

See more details on using hashes here.

File details

Details for the file hfst-3.16.0.1-cp39-cp39-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hfst-3.16.0.1-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 73569a10d381ba77da537a6d6613d6ac6269f2475199889e0991b44fec1df008
MD5 5136c6318471b2f71c9cfc2b8b4dc2ef
BLAKE2b-256 64a7b0a66b25aa7db159a62970e500566309a221b906c43b86f3381b9998b945

See more details on using hashes here.

File details

Details for the file hfst-3.16.0.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for hfst-3.16.0.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7eeca4b2a97238b360e755dcd9013eab293ff66c0c88eaf358b83e58bf0c86e5
MD5 131a07f20bda9e1421ac6f854bdbffde
BLAKE2b-256 f33e5854464fb2f4de0e436b9f8efa8ceb63312ec041359bc87c94083c3f9d6c

See more details on using hashes here.

File details

Details for the file hfst-3.16.0.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hfst-3.16.0.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e30591f53a9c509a242f458561d893b9f4cdc0c1deb53283cbdd4dcf63e771fc
MD5 51b65238e5c0dfcefffce74d70a54151
BLAKE2b-256 1e1813a96ae8757957e59a8684231c3e9a8cedf7fed987ee3e6e638a091bbd24

See more details on using hashes here.

File details

Details for the file hfst-3.16.0.1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for hfst-3.16.0.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 86cee5430d62292e91da2b471367c44d58c261c4080e6e65c9dd99579a0692e0
MD5 907a2232fb974851bcace5cc7c5131f3
BLAKE2b-256 470451af793abf196a5d18ac135f79a03bffec2af829febfb2b3151cba266aa9

See more details on using hashes here.

File details

Details for the file hfst-3.16.0.1-cp38-cp38-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hfst-3.16.0.1-cp38-cp38-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1977c0e5420d0b8557fa7aaaf67ab65125ffd7c60122f4afc8413efcf6228131
MD5 c1070c777f82ad6db0919bbe74d2e989
BLAKE2b-256 ec8184c9036708b75cb714a0157ff430774835048fbe33626276e46cc557767b

See more details on using hashes here.

File details

Details for the file hfst-3.16.0.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for hfst-3.16.0.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1d7c7db8af1d9ebac1921b1e70b517f647bec85006e7b2ee1d9326446561f3c1
MD5 5d67499b6af9420d5cc4a34c024eb30f
BLAKE2b-256 32126e9f9177fd316f26e7942871942146736dd2085e0b6e3c5e9a207782a820

See more details on using hashes here.

File details

Details for the file hfst-3.16.0.1-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hfst-3.16.0.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b479523a36565119d8c5af55bf66023238f133ed91955622534f928df9b59a29
MD5 a6a848e69947a6936a4a7530c8fa76d9
BLAKE2b-256 26207c6a5a052dbc4b7ff4f623589ca73c7386c6bd55a3fc2e1ec8f6fe245292

See more details on using hashes here.

File details

Details for the file hfst-3.16.0.1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for hfst-3.16.0.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a992fe46a9e9f3b87832d166c0944f4810b061ad97350d2cc4aa5a17521f92c3
MD5 9cee2e83681c23462b8367649385076f
BLAKE2b-256 347680e5506e21e3a5b79a787f18bbc346d7b70edb54f9a75c04e113a29e4c33

See more details on using hashes here.

File details

Details for the file hfst-3.16.0.1-cp37-cp37m-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hfst-3.16.0.1-cp37-cp37m-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1a8381a13acc0f07a5d46a9196b8f8f458180727538b50318b8d12944389ad59
MD5 1cfc089883c7a6070b8426c371bf3262
BLAKE2b-256 06c1d982af73ab739b5ba4b8a908627b05ee9662d2e11388d559688d69476657

See more details on using hashes here.

File details

Details for the file hfst-3.16.0.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for hfst-3.16.0.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6cbef27dc952df9b5903dcce08333edf330fe843b3ed4aeea9a009e105a30e8e
MD5 1c9f6f112172ce309c3aef79ace9ca1d
BLAKE2b-256 96bea57a47dbc9fa9faf03ba2ea851d4f3b003c9e59f85795a36d819248093df

See more details on using hashes here.

File details

Details for the file hfst-3.16.0.1-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for hfst-3.16.0.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0e49952b6345d24900f933a75265f077495ed0dc46075c721073f12bd8367e68
MD5 782c9d22c2adbec99686d91bcfc29fef
BLAKE2b-256 eb15aac934bd10f005d6e5c2a8e4d9a87e5ab389319ed26cac424cfcc53a97f6

See more details on using hashes here.

File details

Details for the file hfst-3.16.0.1-cp36-cp36m-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hfst-3.16.0.1-cp36-cp36m-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3a5033a563a39618472f12325e8406c9b86c068bf9e849509893d9f152250d9c
MD5 4798b89e1aa54afe953bc9af3b9afa95
BLAKE2b-256 d99b763209a3c958c9927259bc15f28dccd500014641d4d8c6177387c57c7e98

See more details on using hashes here.

File details

Details for the file hfst-3.16.0.1-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for hfst-3.16.0.1-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e1dacbd2bc64a940005e7eda47ba477fdac70db36d0716d6b41fe7fe8466d9fd
MD5 a50366fc5d5c174512c5662bb9062344
BLAKE2b-256 8d8bf2916ec46514a052a306046583a613f7f36f465ab8c32a82603b0adf609d

See more details on using hashes here.

File details

Details for the file hfst-3.16.0.1-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for hfst-3.16.0.1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c913ec9dbae0345080b3241d4ce51bc31d02f15cdac75dddeb7e2a403c41dcf7
MD5 fba159aa3d7f06c6b3db03a7a879ff58
BLAKE2b-256 5da1fd40e6497876c182bbef771fb5f2d2514687e6065849f169f8d27ed02d47

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