sfst-transduce


Namesfst-transduce JSON
Version 1.2.1 PyPI version JSON
download
home_pageNone
SummaryPython bindings for SFST focusing on transducer usage
upload_time2024-10-30 10:03:12
maintainerNone
docs_urlNone
authorNone
requires_python>=3.8
licenseNone
keywords finite-state transducer morphological analysis natural language processing nlp sfst
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            
# sfst-transduce

_Python bindings for SFST focusing on transducer usage_

![PyPI - Version](https://img.shields.io/pypi/v/sfst-transduce)
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/sfst-transduce)
![PyPI - Wheel](https://img.shields.io/pypi/wheel/sfst-transduce)
![GitHub License](https://img.shields.io/github/license/zentrum-lexikographie/sfst-transduce)


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](https://www.cis.uni-muenchen.de/~schmid/tools/SFST/) for transducer
generation, please take a look at their homepage for installation and usage
instructions.

## Installation

`sfst-transduce` is available at
[PyPI](https://pypi.org/project/sfst-transduce/):

```bash
pip install sfst-transduce
```

## Usage

```python
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

```bash
pip install -e .
pip install -r requirements-dev.txt
pre-commit install
```

## Release

```bash
scripts/release $NEW_VERSION
git push && git push --tags
```

## Credits

The [SFST tools](https://www.cis.uni-muenchen.de/~schmid/tools/SFST/) 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](https://www.cis.uni-muenchen.de/~schmid/papers/SFST-PL.pdf)

This Python library is a fork of the excellent [SFST
adaptation](https://github.com/santhoshtr/sfst) by Santhosh Thottingal, changing
the focus of the Python part.

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "sfst-transduce",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "Finite-state Transducer, Morphological Analysis, Natural Language Processing, NLP, SFST",
    "author": null,
    "author_email": "Gregor Middell <gregor.middell@bbaw.de>",
    "download_url": "https://files.pythonhosted.org/packages/35/ce/cf8470ceebf5b2b22725aa79a6edd36ee663892475c88395324874a70155/sfst_transduce-1.2.1.tar.gz",
    "platform": null,
    "description": "\n# sfst-transduce\n\n_Python bindings for SFST focusing on transducer usage_\n\n![PyPI - Version](https://img.shields.io/pypi/v/sfst-transduce)\n![PyPI - Python Version](https://img.shields.io/pypi/pyversions/sfst-transduce)\n![PyPI - Wheel](https://img.shields.io/pypi/wheel/sfst-transduce)\n![GitHub License](https://img.shields.io/github/license/zentrum-lexikographie/sfst-transduce)\n\n\nA Python library providing bindings for the Stuttgart Finite State Transducer\nsystem with a focus on the usage of compiled and serialized transducers,\nexcluding code for transducer development and testing, which reduces compile and\nruntime dependencies.\n\nShould you need the [SFST\ntools](https://www.cis.uni-muenchen.de/~schmid/tools/SFST/) for transducer\ngeneration, please take a look at their homepage for installation and usage\ninstructions.\n\n## Installation\n\n`sfst-transduce` is available at\n[PyPI](https://pypi.org/project/sfst-transduce/):\n\n```bash\npip install sfst-transduce\n```\n\n## Usage\n\n```python\nimport sfst_transduce\n\n# Create instance from compiled transducer\ntransducer = sfst_transduce.Transducer('path/to/fst.a')\n\n# Analysis\nanalysis_results = transducer.analyse(\"easier\")\n# Returns ['easy<ADJ><comp>'] for example.\n\n# Generate a string. results are a list of analysis.\ngenerate_results = transducer.generate(\"easy<ADJ><comp>\")\n# Returns ['easier'] for example.\n\n# Create instance from compiled transducer (compacted serialisation)\ntransducer = sfst_transduce.CompactTransducer('path/to/fst.ca')\n# Activate output of aligned input and output layer\ntransducer.both_layers = True\n# Analysis\ntransducer.analyse('easier')\n# Returns ['easy:i<ADJ>:<><comp>:e<>:r'] for example.\n```\n\n## Development\n\n```bash\npip install -e .\npip install -r requirements-dev.txt\npre-commit install\n```\n\n## Release\n\n```bash\nscripts/release $NEW_VERSION\ngit push && git push --tags\n```\n\n## Credits\n\nThe [SFST tools](https://www.cis.uni-muenchen.de/~schmid/tools/SFST/) have been\nimplemented by Helmut Schmid, Institute for Computational Linguistics,\nUniversity of Stuttgart, Germany and they are available under the GNU public\nlicense version 2 or higher.\n\nPlease cite the following publication if you want to refer to the SFST tools:\n\nSchmid, Helmut. \"A programming language for finite state transducers.\" FSMNLP.\nVol. 4002. 2005.\n[pdf](https://www.cis.uni-muenchen.de/~schmid/papers/SFST-PL.pdf)\n\nThis Python library is a fork of the excellent [SFST\nadaptation](https://github.com/santhoshtr/sfst) by Santhosh Thottingal, changing\nthe focus of the Python part.\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Python bindings for SFST focusing on transducer usage",
    "version": "1.2.1",
    "project_urls": {
        "Homepage": "https://github.com/zentrum-lexikographie/sfst-transduce",
        "Repository": "https://github.com/zentrum-lexikographie/sfst-transduce.git"
    },
    "split_keywords": [
        "finite-state transducer",
        " morphological analysis",
        " natural language processing",
        " nlp",
        " sfst"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e0dc3d9752ed6b324b01911d30bc64ed74c1a75180d10d0ce05c4b7f9198e242",
                "md5": "25c36220cfad3b8ff977efb2baa47bc1",
                "sha256": "fcd6d2cba79611fea5dcb5cbf5ef15065e5d6e6ebffc41bcaa42592fec2d179b"
            },
            "downloads": -1,
            "filename": "sfst_transduce-1.2.1-cp310-cp310-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "25c36220cfad3b8ff977efb2baa47bc1",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 332342,
            "upload_time": "2024-10-30T10:01:52",
            "upload_time_iso_8601": "2024-10-30T10:01:52.731509Z",
            "url": "https://files.pythonhosted.org/packages/e0/dc/3d9752ed6b324b01911d30bc64ed74c1a75180d10d0ce05c4b7f9198e242/sfst_transduce-1.2.1-cp310-cp310-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9a0def6b7e2fa203711c14e4c12c915ef7bec4e3cfe48ddd694cebaa1a11bb50",
                "md5": "26f1c3cdcde4245bab932174611ae6e6",
                "sha256": "b7783bf03228f12afc03c2ff9b43efc0bd99555889cac4f7d37e81446b7497c8"
            },
            "downloads": -1,
            "filename": "sfst_transduce-1.2.1-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "26f1c3cdcde4245bab932174611ae6e6",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 177015,
            "upload_time": "2024-10-30T10:01:54",
            "upload_time_iso_8601": "2024-10-30T10:01:54.701871Z",
            "url": "https://files.pythonhosted.org/packages/9a/0d/ef6b7e2fa203711c14e4c12c915ef7bec4e3cfe48ddd694cebaa1a11bb50/sfst_transduce-1.2.1-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "46ef1f4b7424b76e2cf649df3554a8201672903b6319c8a8867cb92f61cd0f89",
                "md5": "7babb734f519a1ecdba3eb9771006e04",
                "sha256": "6c5ba3c775dc65da06c1bedacb5ff99582442bde987c4246ad902c537d732a7f"
            },
            "downloads": -1,
            "filename": "sfst_transduce-1.2.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "7babb734f519a1ecdba3eb9771006e04",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 276006,
            "upload_time": "2024-10-30T10:01:56",
            "upload_time_iso_8601": "2024-10-30T10:01:56.497310Z",
            "url": "https://files.pythonhosted.org/packages/46/ef/1f4b7424b76e2cf649df3554a8201672903b6319c8a8867cb92f61cd0f89/sfst_transduce-1.2.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "255f6f760e8d389609dcd527dc7d2a1bb0175251214d93212a21e6f3ec36c1fd",
                "md5": "a69552c67467cb91bc10a8a13bd9cee7",
                "sha256": "2624890197cc00369045fcec76f0c7ed28e46f911f6862115a133083b7b8fe20"
            },
            "downloads": -1,
            "filename": "sfst_transduce-1.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a69552c67467cb91bc10a8a13bd9cee7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 258307,
            "upload_time": "2024-10-30T10:01:57",
            "upload_time_iso_8601": "2024-10-30T10:01:57.973523Z",
            "url": "https://files.pythonhosted.org/packages/25/5f/6f760e8d389609dcd527dc7d2a1bb0175251214d93212a21e6f3ec36c1fd/sfst_transduce-1.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "526c10f87aa73d9516d51bd8595261a3c0d1384f55bcca2353bf4ac3c2fefed6",
                "md5": "4fd6a9d027d3d9ed156b58bfc5bacb87",
                "sha256": "2bbd8fb2cf8730ad9409e41603e46f7749b8df09b1776b1cb824307a922759ab"
            },
            "downloads": -1,
            "filename": "sfst_transduce-1.2.1-cp310-cp310-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "4fd6a9d027d3d9ed156b58bfc5bacb87",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1345223,
            "upload_time": "2024-10-30T10:01:59",
            "upload_time_iso_8601": "2024-10-30T10:01:59.693920Z",
            "url": "https://files.pythonhosted.org/packages/52/6c/10f87aa73d9516d51bd8595261a3c0d1384f55bcca2353bf4ac3c2fefed6/sfst_transduce-1.2.1-cp310-cp310-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a0e8603b385a6c2da34591f7facf4b0a5e058c56d75459e997d7b375b3dea542",
                "md5": "670c6265fc1430ae2e79cf1ca15741b8",
                "sha256": "0d576e7cb27e7fcd8462fb76a338aea2a1f85a804d1b257b44f37aab60b5e20d"
            },
            "downloads": -1,
            "filename": "sfst_transduce-1.2.1-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "670c6265fc1430ae2e79cf1ca15741b8",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1231016,
            "upload_time": "2024-10-30T10:02:00",
            "upload_time_iso_8601": "2024-10-30T10:02:00.807654Z",
            "url": "https://files.pythonhosted.org/packages/a0/e8/603b385a6c2da34591f7facf4b0a5e058c56d75459e997d7b375b3dea542/sfst_transduce-1.2.1-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a29fe34dd47cb5c89f4b0d34e05a084ff6949dc85cac81973c88d56ffd755105",
                "md5": "2f5b8bb0851cd117052726b60b099aca",
                "sha256": "2cb6b337fd7e802f0b21e38a28e9c753f9d71181bb70f79ab8735b87ce75e161"
            },
            "downloads": -1,
            "filename": "sfst_transduce-1.2.1-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "2f5b8bb0851cd117052726b60b099aca",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 113381,
            "upload_time": "2024-10-30T10:02:01",
            "upload_time_iso_8601": "2024-10-30T10:02:01.956089Z",
            "url": "https://files.pythonhosted.org/packages/a2/9f/e34dd47cb5c89f4b0d34e05a084ff6949dc85cac81973c88d56ffd755105/sfst_transduce-1.2.1-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "adfdf06bf02aa8e242cee1936485a994ea04339ad562a0c2a9d316a1ef698544",
                "md5": "da88aa1c857a8d12130a4d4c1de03a70",
                "sha256": "8b03293fd96ec4f1d2286caba2431ade9db874f97041750c21ff37f6773a6d22"
            },
            "downloads": -1,
            "filename": "sfst_transduce-1.2.1-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "da88aa1c857a8d12130a4d4c1de03a70",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 129652,
            "upload_time": "2024-10-30T10:02:03",
            "upload_time_iso_8601": "2024-10-30T10:02:03.318087Z",
            "url": "https://files.pythonhosted.org/packages/ad/fd/f06bf02aa8e242cee1936485a994ea04339ad562a0c2a9d316a1ef698544/sfst_transduce-1.2.1-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "148d4d2d6c79ad5d6017ddfd61d2f12b1f5c85cc20e9d004f82266943a497100",
                "md5": "127a47150f69697ab7cc1791fb65a750",
                "sha256": "feba7a103e3de248c84706b09ce19fbfa111b52d858088da713776afd04f4af1"
            },
            "downloads": -1,
            "filename": "sfst_transduce-1.2.1-cp311-cp311-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "127a47150f69697ab7cc1791fb65a750",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 334526,
            "upload_time": "2024-10-30T10:02:04",
            "upload_time_iso_8601": "2024-10-30T10:02:04.667117Z",
            "url": "https://files.pythonhosted.org/packages/14/8d/4d2d6c79ad5d6017ddfd61d2f12b1f5c85cc20e9d004f82266943a497100/sfst_transduce-1.2.1-cp311-cp311-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "058749bd8cf4c67848159637edc2e569d205abc6eaa5ecc355370a6db75a21ff",
                "md5": "b4fb467971034c5148250ac635a2df0a",
                "sha256": "b71bd5d463ca37631733a711b04e33766bb0605b4563b1a19281529b5a51d996"
            },
            "downloads": -1,
            "filename": "sfst_transduce-1.2.1-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b4fb467971034c5148250ac635a2df0a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 178116,
            "upload_time": "2024-10-30T10:02:05",
            "upload_time_iso_8601": "2024-10-30T10:02:05.925582Z",
            "url": "https://files.pythonhosted.org/packages/05/87/49bd8cf4c67848159637edc2e569d205abc6eaa5ecc355370a6db75a21ff/sfst_transduce-1.2.1-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bbb1125a2b7588bea409e490a288a211039a3d1f7aa8801a0cc33c7693a7006c",
                "md5": "7e58c2eb5e63cdd0baa542cb2096842f",
                "sha256": "0e6c1b60839a4fd278e6c830bdf82e7d9b98283b29d0a1d8e41dc3b70c9c1789"
            },
            "downloads": -1,
            "filename": "sfst_transduce-1.2.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "7e58c2eb5e63cdd0baa542cb2096842f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 277571,
            "upload_time": "2024-10-30T10:02:06",
            "upload_time_iso_8601": "2024-10-30T10:02:06.860338Z",
            "url": "https://files.pythonhosted.org/packages/bb/b1/125a2b7588bea409e490a288a211039a3d1f7aa8801a0cc33c7693a7006c/sfst_transduce-1.2.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0e03ae03a3661c9198df0629988e34d88ba2b814bb32162e0bb5435e95b9cc58",
                "md5": "24b4c5ec4801a3abd206322deb5d0509",
                "sha256": "c1eff9fcb1979990cff5d3eee8eea7012896f73ea613178bc89412af7b36b375"
            },
            "downloads": -1,
            "filename": "sfst_transduce-1.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "24b4c5ec4801a3abd206322deb5d0509",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 259843,
            "upload_time": "2024-10-30T10:02:08",
            "upload_time_iso_8601": "2024-10-30T10:02:08.414320Z",
            "url": "https://files.pythonhosted.org/packages/0e/03/ae03a3661c9198df0629988e34d88ba2b814bb32162e0bb5435e95b9cc58/sfst_transduce-1.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7af469ca4cf04d04d44cc6a2db994612fc5db5aac29031e701bb0071d7594463",
                "md5": "0e4a494489d03a7de63520fc65a145ee",
                "sha256": "d84a34f2d664fe1d1ea191a50c008ad313daab6c5507f4ce3440673a579c78e2"
            },
            "downloads": -1,
            "filename": "sfst_transduce-1.2.1-cp311-cp311-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "0e4a494489d03a7de63520fc65a145ee",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1345011,
            "upload_time": "2024-10-30T10:02:09",
            "upload_time_iso_8601": "2024-10-30T10:02:09.513315Z",
            "url": "https://files.pythonhosted.org/packages/7a/f4/69ca4cf04d04d44cc6a2db994612fc5db5aac29031e701bb0071d7594463/sfst_transduce-1.2.1-cp311-cp311-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9476e94f38222341c5f8c5963f4f15e71c3593041d7be681e1932a550122939e",
                "md5": "fcb3034d2a105dbf4e0b875ca612602d",
                "sha256": "7797f68b67186a681eb53db1a591d5c2a6f7d0d418d004a56088e9a1ef1f162b"
            },
            "downloads": -1,
            "filename": "sfst_transduce-1.2.1-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fcb3034d2a105dbf4e0b875ca612602d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1232771,
            "upload_time": "2024-10-30T10:02:10",
            "upload_time_iso_8601": "2024-10-30T10:02:10.865145Z",
            "url": "https://files.pythonhosted.org/packages/94/76/e94f38222341c5f8c5963f4f15e71c3593041d7be681e1932a550122939e/sfst_transduce-1.2.1-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2bb8f0f12a7bcf09d40e79edda653e236cb07cd10050daf7040fd215bae73a8f",
                "md5": "2428e5fe388ff8e7a6f3c187b866e87c",
                "sha256": "aef76894d26ca51bcd9e2d2233122f7b5c8411afe7ab3448d4c340556ad1587b"
            },
            "downloads": -1,
            "filename": "sfst_transduce-1.2.1-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "2428e5fe388ff8e7a6f3c187b866e87c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 114338,
            "upload_time": "2024-10-30T10:02:12",
            "upload_time_iso_8601": "2024-10-30T10:02:12.040861Z",
            "url": "https://files.pythonhosted.org/packages/2b/b8/f0f12a7bcf09d40e79edda653e236cb07cd10050daf7040fd215bae73a8f/sfst_transduce-1.2.1-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5adbd04326ab74ccac1482ad1af8795ab5a38aef09bb7888b116a3c3cd720843",
                "md5": "3e41459aec77ffdee695d653fca82787",
                "sha256": "f1712f96d4d559fa11e545bba63bf5576c54fb9821fa3b3ae75ed9b220401e52"
            },
            "downloads": -1,
            "filename": "sfst_transduce-1.2.1-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "3e41459aec77ffdee695d653fca82787",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 130866,
            "upload_time": "2024-10-30T10:02:13",
            "upload_time_iso_8601": "2024-10-30T10:02:13.424327Z",
            "url": "https://files.pythonhosted.org/packages/5a/db/d04326ab74ccac1482ad1af8795ab5a38aef09bb7888b116a3c3cd720843/sfst_transduce-1.2.1-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e580b8efae715c0b886e85bcc76bcc0b0b7f2f1044a956d790391947cbe37ec9",
                "md5": "05246f41647b9291713c3b862e3cb2ec",
                "sha256": "fd5d8a3e07b0fa61736f51bf72467c979410fab3f289bbb9c9fc982012dc13fb"
            },
            "downloads": -1,
            "filename": "sfst_transduce-1.2.1-cp312-cp312-macosx_10_13_universal2.whl",
            "has_sig": false,
            "md5_digest": "05246f41647b9291713c3b862e3cb2ec",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 335160,
            "upload_time": "2024-10-30T10:02:14",
            "upload_time_iso_8601": "2024-10-30T10:02:14.374514Z",
            "url": "https://files.pythonhosted.org/packages/e5/80/b8efae715c0b886e85bcc76bcc0b0b7f2f1044a956d790391947cbe37ec9/sfst_transduce-1.2.1-cp312-cp312-macosx_10_13_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2d4e66f51438b9412464ad3b01ba2b2678792944b6f7f75ae58c0bcd123c452c",
                "md5": "528192c536b2141d831ecc68b2189e25",
                "sha256": "e6c5b594e234bc9c535be7bd8b52a0546461b90d1a7452c4a77451c26e2e9d73"
            },
            "downloads": -1,
            "filename": "sfst_transduce-1.2.1-cp312-cp312-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "528192c536b2141d831ecc68b2189e25",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 178612,
            "upload_time": "2024-10-30T10:02:15",
            "upload_time_iso_8601": "2024-10-30T10:02:15.703260Z",
            "url": "https://files.pythonhosted.org/packages/2d/4e/66f51438b9412464ad3b01ba2b2678792944b6f7f75ae58c0bcd123c452c/sfst_transduce-1.2.1-cp312-cp312-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6c32b7209f93cc6c8e08d707afe7686c0cdda441ecdd36a61aa67f4fbaa4c25b",
                "md5": "1f58e7ea38822ba9a426139b3cd8295a",
                "sha256": "5f0d7c0ea7eda11ed9574d05e2b7ee50444734ad86e6e383586889affbc83350"
            },
            "downloads": -1,
            "filename": "sfst_transduce-1.2.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "1f58e7ea38822ba9a426139b3cd8295a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 277017,
            "upload_time": "2024-10-30T10:02:17",
            "upload_time_iso_8601": "2024-10-30T10:02:17.023027Z",
            "url": "https://files.pythonhosted.org/packages/6c/32/b7209f93cc6c8e08d707afe7686c0cdda441ecdd36a61aa67f4fbaa4c25b/sfst_transduce-1.2.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d8043c0a3d12e67e315848811a8e2a28c6c5ff2271c474029d12c99033dc9d59",
                "md5": "5ff4c3b2be73612c2f3ea348c2cfddec",
                "sha256": "8c664abbb345d4b53fa2778b0338801931044dcdff931f628161f40c64b844c6"
            },
            "downloads": -1,
            "filename": "sfst_transduce-1.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5ff4c3b2be73612c2f3ea348c2cfddec",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 259671,
            "upload_time": "2024-10-30T10:02:18",
            "upload_time_iso_8601": "2024-10-30T10:02:18.083783Z",
            "url": "https://files.pythonhosted.org/packages/d8/04/3c0a3d12e67e315848811a8e2a28c6c5ff2271c474029d12c99033dc9d59/sfst_transduce-1.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "249f13f706e55f2dad15831d3ad276100bfb10d7f66e3efc0a53ca6ddeaca2fa",
                "md5": "e7ddc4f296476aed0656be14a70127fa",
                "sha256": "31ff6d868fc512ba05e56c50eef9b7074f4d2ff1dcc87b8e38ac06b1b23bf928"
            },
            "downloads": -1,
            "filename": "sfst_transduce-1.2.1-cp312-cp312-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "e7ddc4f296476aed0656be14a70127fa",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1345406,
            "upload_time": "2024-10-30T10:02:19",
            "upload_time_iso_8601": "2024-10-30T10:02:19.231548Z",
            "url": "https://files.pythonhosted.org/packages/24/9f/13f706e55f2dad15831d3ad276100bfb10d7f66e3efc0a53ca6ddeaca2fa/sfst_transduce-1.2.1-cp312-cp312-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6604df4dfd320ac692ec151291ea9cd27f07a9bd256911587033734a98199418",
                "md5": "0bfbf73a8057ba264437382526a272e7",
                "sha256": "f70b8a7082b9cb63c488b9b2a8d31bc4d438e68265a6f554e18185e652b39997"
            },
            "downloads": -1,
            "filename": "sfst_transduce-1.2.1-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0bfbf73a8057ba264437382526a272e7",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1232292,
            "upload_time": "2024-10-30T10:02:20",
            "upload_time_iso_8601": "2024-10-30T10:02:20.941748Z",
            "url": "https://files.pythonhosted.org/packages/66/04/df4dfd320ac692ec151291ea9cd27f07a9bd256911587033734a98199418/sfst_transduce-1.2.1-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7f1a746b92f1ff56d7f065fcd105382224f1f349e17a830e06c576fa6f20b653",
                "md5": "b994bf60496a1032a727d93499f0e260",
                "sha256": "724b6a21d3012f76b3ee40128b9dab6b140d0a630db42a49daef054ed49dcac2"
            },
            "downloads": -1,
            "filename": "sfst_transduce-1.2.1-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "b994bf60496a1032a727d93499f0e260",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 114570,
            "upload_time": "2024-10-30T10:02:23",
            "upload_time_iso_8601": "2024-10-30T10:02:23.354843Z",
            "url": "https://files.pythonhosted.org/packages/7f/1a/746b92f1ff56d7f065fcd105382224f1f349e17a830e06c576fa6f20b653/sfst_transduce-1.2.1-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b9055928b77f2c598509f0d40eae57e2f5e7fcf34cf1aee6009ee5c114d7322b",
                "md5": "70a359b63eb7dbfbb64ac32c4515732a",
                "sha256": "32345f50a34eea8fcea1e3720cfb935f569dc2156ea7ad9a0a10b3c210d9aff8"
            },
            "downloads": -1,
            "filename": "sfst_transduce-1.2.1-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "70a359b63eb7dbfbb64ac32c4515732a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 131028,
            "upload_time": "2024-10-30T10:02:24",
            "upload_time_iso_8601": "2024-10-30T10:02:24.713133Z",
            "url": "https://files.pythonhosted.org/packages/b9/05/5928b77f2c598509f0d40eae57e2f5e7fcf34cf1aee6009ee5c114d7322b/sfst_transduce-1.2.1-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4c1f1e9833377354b5987fe84ea8c930ed0691b7769fb2bfa2c50187287c60e8",
                "md5": "4989c765174dd9e928fc21734a5cfa08",
                "sha256": "c2ff1b02e03e69eb3320aace2fd3a7c3012bf2c4031e78bf59ee8fe361bfccd1"
            },
            "downloads": -1,
            "filename": "sfst_transduce-1.2.1-cp313-cp313-macosx_10_13_universal2.whl",
            "has_sig": false,
            "md5_digest": "4989c765174dd9e928fc21734a5cfa08",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 335289,
            "upload_time": "2024-10-30T10:02:25",
            "upload_time_iso_8601": "2024-10-30T10:02:25.947785Z",
            "url": "https://files.pythonhosted.org/packages/4c/1f/1e9833377354b5987fe84ea8c930ed0691b7769fb2bfa2c50187287c60e8/sfst_transduce-1.2.1-cp313-cp313-macosx_10_13_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e45a0d33745ff64dd6b39eb95af87da8cf2e40ce3be1b3fda08df4f485bfa286",
                "md5": "7be6ed52f4cc2149e742084a391f5ea0",
                "sha256": "bcb36136528b75a6fbe28f7dc75aeb1c30b7b4e1dd9cbf2d58b7fe3658da39b4"
            },
            "downloads": -1,
            "filename": "sfst_transduce-1.2.1-cp313-cp313-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7be6ed52f4cc2149e742084a391f5ea0",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 178674,
            "upload_time": "2024-10-30T10:02:27",
            "upload_time_iso_8601": "2024-10-30T10:02:27.265179Z",
            "url": "https://files.pythonhosted.org/packages/e4/5a/0d33745ff64dd6b39eb95af87da8cf2e40ce3be1b3fda08df4f485bfa286/sfst_transduce-1.2.1-cp313-cp313-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c595a448bb8e149dfed1afe117675a4bc5df271b8c790c89e49c3a758312e179",
                "md5": "ff55b70191fc9f1fca6a6782a14c7965",
                "sha256": "8110d4e14885c495f60eab27c9b7b734a9329056da3858f826becf0a19a803b2"
            },
            "downloads": -1,
            "filename": "sfst_transduce-1.2.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "ff55b70191fc9f1fca6a6782a14c7965",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 277014,
            "upload_time": "2024-10-30T10:02:28",
            "upload_time_iso_8601": "2024-10-30T10:02:28.272542Z",
            "url": "https://files.pythonhosted.org/packages/c5/95/a448bb8e149dfed1afe117675a4bc5df271b8c790c89e49c3a758312e179/sfst_transduce-1.2.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "226ba4443989fb5b407df51abfafc9c8c6a32427623ea98f669360282103b071",
                "md5": "adbef2c47ee3b43dabf26765f8b78f0c",
                "sha256": "8c9d00cd894f2a709a3645157c85c4a88f573005956b5555f56b626e91277903"
            },
            "downloads": -1,
            "filename": "sfst_transduce-1.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "adbef2c47ee3b43dabf26765f8b78f0c",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 259577,
            "upload_time": "2024-10-30T10:02:29",
            "upload_time_iso_8601": "2024-10-30T10:02:29.327856Z",
            "url": "https://files.pythonhosted.org/packages/22/6b/a4443989fb5b407df51abfafc9c8c6a32427623ea98f669360282103b071/sfst_transduce-1.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6275b47160b004fc8369fbb8ba2ca90a5ddff5ceeba7bc4c4119ecdfdf2561b6",
                "md5": "ddc8b7cf907a46a4dce0837388dc1f59",
                "sha256": "26b967c96fe08b17272b6c0d447b6bf0d45adda69c4164d7b84596b98ec6f47b"
            },
            "downloads": -1,
            "filename": "sfst_transduce-1.2.1-cp313-cp313-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "ddc8b7cf907a46a4dce0837388dc1f59",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 1345530,
            "upload_time": "2024-10-30T10:02:31",
            "upload_time_iso_8601": "2024-10-30T10:02:31.657424Z",
            "url": "https://files.pythonhosted.org/packages/62/75/b47160b004fc8369fbb8ba2ca90a5ddff5ceeba7bc4c4119ecdfdf2561b6/sfst_transduce-1.2.1-cp313-cp313-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b42d0c850b094c1b0f4a34b33621f45fc1b9994583fd7ce9cc041ed304845a6a",
                "md5": "e5e18f9c10f2eff07dd86075847e80a6",
                "sha256": "9374ae5861ef1dbd1dd84d03ac239b990aa53c6d70fb7f9b4658ca06c8e8f86a"
            },
            "downloads": -1,
            "filename": "sfst_transduce-1.2.1-cp313-cp313-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e5e18f9c10f2eff07dd86075847e80a6",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 1232236,
            "upload_time": "2024-10-30T10:02:33",
            "upload_time_iso_8601": "2024-10-30T10:02:33.352226Z",
            "url": "https://files.pythonhosted.org/packages/b4/2d/0c850b094c1b0f4a34b33621f45fc1b9994583fd7ce9cc041ed304845a6a/sfst_transduce-1.2.1-cp313-cp313-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fe8922343288b723ae8036ffb53e6c4e39c6d279a05fa57959476a0ecc1ea029",
                "md5": "05f18c795e1436ec8ba9413a0c0a8755",
                "sha256": "85ae6140aaa8fe49c17c435b006440f1856cca706e2287efa7f10ab4bb9c71c0"
            },
            "downloads": -1,
            "filename": "sfst_transduce-1.2.1-cp313-cp313-win32.whl",
            "has_sig": false,
            "md5_digest": "05f18c795e1436ec8ba9413a0c0a8755",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 114611,
            "upload_time": "2024-10-30T10:02:34",
            "upload_time_iso_8601": "2024-10-30T10:02:34.994561Z",
            "url": "https://files.pythonhosted.org/packages/fe/89/22343288b723ae8036ffb53e6c4e39c6d279a05fa57959476a0ecc1ea029/sfst_transduce-1.2.1-cp313-cp313-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bc0542b8a77714bc96b974bc25b979caa323437141d83d4fe5ce0ac9539adeb8",
                "md5": "a7079aa4620c792b6f85ad5af4c28f5c",
                "sha256": "b1ecae083c9767bdbe282f320aa12d57417ee74c07ccee6ac57c838c0b9072bb"
            },
            "downloads": -1,
            "filename": "sfst_transduce-1.2.1-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a7079aa4620c792b6f85ad5af4c28f5c",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 131042,
            "upload_time": "2024-10-30T10:02:35",
            "upload_time_iso_8601": "2024-10-30T10:02:35.925273Z",
            "url": "https://files.pythonhosted.org/packages/bc/05/42b8a77714bc96b974bc25b979caa323437141d83d4fe5ce0ac9539adeb8/sfst_transduce-1.2.1-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a63daae612b8ecc77f30fd971cff79cd664ee70244d4d3493a40b37c66edcafd",
                "md5": "19766330a0d057e49b9861ecd848bfa8",
                "sha256": "97fd47e705200a2c0ffd40dc97dafe6cf5c1118a5d2dd5dd5238f30d8542cf86"
            },
            "downloads": -1,
            "filename": "sfst_transduce-1.2.1-cp38-cp38-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "19766330a0d057e49b9861ecd848bfa8",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 332142,
            "upload_time": "2024-10-30T10:02:36",
            "upload_time_iso_8601": "2024-10-30T10:02:36.995040Z",
            "url": "https://files.pythonhosted.org/packages/a6/3d/aae612b8ecc77f30fd971cff79cd664ee70244d4d3493a40b37c66edcafd/sfst_transduce-1.2.1-cp38-cp38-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ce56d76500dd8d5ee6ae5919127097f55a3165deddad5306db352e3876f2ad2e",
                "md5": "50a8e74ac3edc62181762e6cec249b24",
                "sha256": "fc970cc24859e528f84cac061dfcaffdbb18f0a1a6658e9c9b4c13bca9ebdaf5"
            },
            "downloads": -1,
            "filename": "sfst_transduce-1.2.1-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "50a8e74ac3edc62181762e6cec249b24",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 176881,
            "upload_time": "2024-10-30T10:02:38",
            "upload_time_iso_8601": "2024-10-30T10:02:38.131312Z",
            "url": "https://files.pythonhosted.org/packages/ce/56/d76500dd8d5ee6ae5919127097f55a3165deddad5306db352e3876f2ad2e/sfst_transduce-1.2.1-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9a9d11ad23c0eb7fe18f17124cbd6a1cc3184728fa4b1dd8cf421f3769fc1dd4",
                "md5": "c4f1b9790da070ceaf6938db2f811a6a",
                "sha256": "f411defca9a3ccd488003cf3ec0b129c32158643dc5b2f0c2f4b52e6a481648e"
            },
            "downloads": -1,
            "filename": "sfst_transduce-1.2.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "c4f1b9790da070ceaf6938db2f811a6a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 276053,
            "upload_time": "2024-10-30T10:02:39",
            "upload_time_iso_8601": "2024-10-30T10:02:39.091376Z",
            "url": "https://files.pythonhosted.org/packages/9a/9d/11ad23c0eb7fe18f17124cbd6a1cc3184728fa4b1dd8cf421f3769fc1dd4/sfst_transduce-1.2.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f85061b6fc090f345e17e9eaac7bd62815288df291384db5469c6614ee0020b6",
                "md5": "68070d569e5e86921d2db4e58c5ff494",
                "sha256": "40012b5151734a59c48aab79276485011e05d2bbe9cb454501f24d63093af1c7"
            },
            "downloads": -1,
            "filename": "sfst_transduce-1.2.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "68070d569e5e86921d2db4e58c5ff494",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 258125,
            "upload_time": "2024-10-30T10:02:41",
            "upload_time_iso_8601": "2024-10-30T10:02:41.262491Z",
            "url": "https://files.pythonhosted.org/packages/f8/50/61b6fc090f345e17e9eaac7bd62815288df291384db5469c6614ee0020b6/sfst_transduce-1.2.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "39a1a9819414613433c2068e49bb6b5dee46c07823fc7b14ac0de528fa1d1e57",
                "md5": "3c0af3b0248e59bd26ac9334a43e4e91",
                "sha256": "e229c892a6d54868e54842fc69ea76cff610534aded68aec9c3502eb23810bf7"
            },
            "downloads": -1,
            "filename": "sfst_transduce-1.2.1-cp38-cp38-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "3c0af3b0248e59bd26ac9334a43e4e91",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1344903,
            "upload_time": "2024-10-30T10:02:43",
            "upload_time_iso_8601": "2024-10-30T10:02:43.124718Z",
            "url": "https://files.pythonhosted.org/packages/39/a1/a9819414613433c2068e49bb6b5dee46c07823fc7b14ac0de528fa1d1e57/sfst_transduce-1.2.1-cp38-cp38-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6238a93bb920d635c7b51b63d8efd6eaaaded708bfffa1a56173f5df9ac19605",
                "md5": "ceaaa14bc6d2e5106087a0410f0caf19",
                "sha256": "5a4d177d0bab88f1758201917cfdf8516c0d624ca044aeb5321d32485219f30c"
            },
            "downloads": -1,
            "filename": "sfst_transduce-1.2.1-cp38-cp38-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ceaaa14bc6d2e5106087a0410f0caf19",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1230765,
            "upload_time": "2024-10-30T10:02:44",
            "upload_time_iso_8601": "2024-10-30T10:02:44.868439Z",
            "url": "https://files.pythonhosted.org/packages/62/38/a93bb920d635c7b51b63d8efd6eaaaded708bfffa1a56173f5df9ac19605/sfst_transduce-1.2.1-cp38-cp38-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7e4522a6b921dfca201a83842144704917e1dc53d12fdc88890f78905937e558",
                "md5": "5315d44ab87225b058c78f9e3b0d40cb",
                "sha256": "63616ac835782019bd718b432e2b6426d55f1e43537baffbdb1ff44c7a583764"
            },
            "downloads": -1,
            "filename": "sfst_transduce-1.2.1-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "5315d44ab87225b058c78f9e3b0d40cb",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 113328,
            "upload_time": "2024-10-30T10:02:46",
            "upload_time_iso_8601": "2024-10-30T10:02:46.768291Z",
            "url": "https://files.pythonhosted.org/packages/7e/45/22a6b921dfca201a83842144704917e1dc53d12fdc88890f78905937e558/sfst_transduce-1.2.1-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a7ce65298162a48e394459655f9090e436b29319dc48059bb8ad9f05068124f2",
                "md5": "65d324178df6f82b94e94cbb84f831c5",
                "sha256": "0d58c0384c85b982c67a9c2765a2f3452b815b9d631ce7d7e1ecb3b983273cde"
            },
            "downloads": -1,
            "filename": "sfst_transduce-1.2.1-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "65d324178df6f82b94e94cbb84f831c5",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 129590,
            "upload_time": "2024-10-30T10:02:47",
            "upload_time_iso_8601": "2024-10-30T10:02:47.721736Z",
            "url": "https://files.pythonhosted.org/packages/a7/ce/65298162a48e394459655f9090e436b29319dc48059bb8ad9f05068124f2/sfst_transduce-1.2.1-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f27052bf57429029e63e4bf53cbcad7453c01443f80e932c7a29c6df4f3db5b3",
                "md5": "e72e5e4b3d32ac9e9b5ba8194a478cdd",
                "sha256": "150c5f3b01f28e2c314a46af138b103867da5cf45c9316dbed76c43173ef93a3"
            },
            "downloads": -1,
            "filename": "sfst_transduce-1.2.1-cp39-cp39-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "e72e5e4b3d32ac9e9b5ba8194a478cdd",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 332661,
            "upload_time": "2024-10-30T10:02:48",
            "upload_time_iso_8601": "2024-10-30T10:02:48.999522Z",
            "url": "https://files.pythonhosted.org/packages/f2/70/52bf57429029e63e4bf53cbcad7453c01443f80e932c7a29c6df4f3db5b3/sfst_transduce-1.2.1-cp39-cp39-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a1c6c1ba0d18c35b744272b6b505b660e4e65893fbd4b7a464631984514daa7d",
                "md5": "ca6d52ade572fe6bf86ac5f88160bc58",
                "sha256": "f0f64645f72d39e4bbb2b96d150acdb77d1b68d2ac286ea295512d02796ce4ce"
            },
            "downloads": -1,
            "filename": "sfst_transduce-1.2.1-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ca6d52ade572fe6bf86ac5f88160bc58",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 177106,
            "upload_time": "2024-10-30T10:02:50",
            "upload_time_iso_8601": "2024-10-30T10:02:50.135352Z",
            "url": "https://files.pythonhosted.org/packages/a1/c6/c1ba0d18c35b744272b6b505b660e4e65893fbd4b7a464631984514daa7d/sfst_transduce-1.2.1-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bc95495eb1d48c84a9fd92e47bc488009e484f045f194b0ca4cce81b039f3d4e",
                "md5": "03678a7c9b92b89b9524d6870196a73f",
                "sha256": "9fd9e9205007f5d247e4fc02d48a715282529d58947b027d19af67f48c3f3ff7"
            },
            "downloads": -1,
            "filename": "sfst_transduce-1.2.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "03678a7c9b92b89b9524d6870196a73f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 276204,
            "upload_time": "2024-10-30T10:02:51",
            "upload_time_iso_8601": "2024-10-30T10:02:51.204354Z",
            "url": "https://files.pythonhosted.org/packages/bc/95/495eb1d48c84a9fd92e47bc488009e484f045f194b0ca4cce81b039f3d4e/sfst_transduce-1.2.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b6d691366ad777f1beae8372933c55bf3976c703581e29e9ea2ea632342b7a09",
                "md5": "2ed5edfbcd175c9ace9f2261ab87be75",
                "sha256": "f855f3e4f080a17129701cef3ef11c9499993843ec472fa20b30bbad21a3a890"
            },
            "downloads": -1,
            "filename": "sfst_transduce-1.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2ed5edfbcd175c9ace9f2261ab87be75",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 258512,
            "upload_time": "2024-10-30T10:02:52",
            "upload_time_iso_8601": "2024-10-30T10:02:52.474347Z",
            "url": "https://files.pythonhosted.org/packages/b6/d6/91366ad777f1beae8372933c55bf3976c703581e29e9ea2ea632342b7a09/sfst_transduce-1.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dd938c1df2ee181120461d1a0f6c745432418445f3d05dfe0a4dd435a931107a",
                "md5": "955fb550d9ddc37a9f10122e28f9b06e",
                "sha256": "59a2111912104f93def797362ee7d2484bee336342c7e608d837234a54abb262"
            },
            "downloads": -1,
            "filename": "sfst_transduce-1.2.1-cp39-cp39-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "955fb550d9ddc37a9f10122e28f9b06e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1345501,
            "upload_time": "2024-10-30T10:02:53",
            "upload_time_iso_8601": "2024-10-30T10:02:53.910618Z",
            "url": "https://files.pythonhosted.org/packages/dd/93/8c1df2ee181120461d1a0f6c745432418445f3d05dfe0a4dd435a931107a/sfst_transduce-1.2.1-cp39-cp39-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "64f98b79ac1158cd800f2c5b66b74c9a34af9cbd03168e76b801f44a96646ab0",
                "md5": "cd75176ec5da6e5a29d54359efb0e0af",
                "sha256": "2b0fdeb76fb328afa5de3e84ae1b54aeb405ec3267a6ddee72cbeaeb521d14a4"
            },
            "downloads": -1,
            "filename": "sfst_transduce-1.2.1-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cd75176ec5da6e5a29d54359efb0e0af",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1231383,
            "upload_time": "2024-10-30T10:02:55",
            "upload_time_iso_8601": "2024-10-30T10:02:55.412887Z",
            "url": "https://files.pythonhosted.org/packages/64/f9/8b79ac1158cd800f2c5b66b74c9a34af9cbd03168e76b801f44a96646ab0/sfst_transduce-1.2.1-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2c4df490a9ab6acafc9c043a546f885932b63cdd0990a519bdb085989cb5f75d",
                "md5": "27f54ad9428e83b46193cb2837971614",
                "sha256": "3b26505f332e587beeb96cc6869b2924476e87ba2276a62ef5c1ab8ee87d9594"
            },
            "downloads": -1,
            "filename": "sfst_transduce-1.2.1-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "27f54ad9428e83b46193cb2837971614",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 113275,
            "upload_time": "2024-10-30T10:02:56",
            "upload_time_iso_8601": "2024-10-30T10:02:56.634164Z",
            "url": "https://files.pythonhosted.org/packages/2c/4d/f490a9ab6acafc9c043a546f885932b63cdd0990a519bdb085989cb5f75d/sfst_transduce-1.2.1-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d63ca0ab5fc49ad50ba0d6e11b9ee95985890a1a46e4670fcc4443728113c289",
                "md5": "2f7eb930f798a85c6d38e4199a59274f",
                "sha256": "1154e85571c5506b9a55913d244a65ef546d55568722a3fc428207263510615a"
            },
            "downloads": -1,
            "filename": "sfst_transduce-1.2.1-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "2f7eb930f798a85c6d38e4199a59274f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 129163,
            "upload_time": "2024-10-30T10:02:57",
            "upload_time_iso_8601": "2024-10-30T10:02:57.572774Z",
            "url": "https://files.pythonhosted.org/packages/d6/3c/a0ab5fc49ad50ba0d6e11b9ee95985890a1a46e4670fcc4443728113c289/sfst_transduce-1.2.1-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c336cf3972dcf2e77418e6413f7ee461495d0d58349cab03f5ca803ffde1ee89",
                "md5": "7cb335ef29cca0ef7e1336b1ed70d61d",
                "sha256": "9963e739cdcf16235a925a2bbff94e1290cf637c2467c0bc0f660119e7acc4ab"
            },
            "downloads": -1,
            "filename": "sfst_transduce-1.2.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7cb335ef29cca0ef7e1336b1ed70d61d",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 175925,
            "upload_time": "2024-10-30T10:02:58",
            "upload_time_iso_8601": "2024-10-30T10:02:58.621801Z",
            "url": "https://files.pythonhosted.org/packages/c3/36/cf3972dcf2e77418e6413f7ee461495d0d58349cab03f5ca803ffde1ee89/sfst_transduce-1.2.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c0ca710620fe274895f4e1165f31e2370a468438662da63a2f942c82cb873dff",
                "md5": "42695fa2385b1c378a6b1eadec417a99",
                "sha256": "fdf542c7dbd4939d68245f8f9719ec715337bfb289eac4d07eedd7bfa38e5d4b"
            },
            "downloads": -1,
            "filename": "sfst_transduce-1.2.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "42695fa2385b1c378a6b1eadec417a99",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 254793,
            "upload_time": "2024-10-30T10:02:59",
            "upload_time_iso_8601": "2024-10-30T10:02:59.734734Z",
            "url": "https://files.pythonhosted.org/packages/c0/ca/710620fe274895f4e1165f31e2370a468438662da63a2f942c82cb873dff/sfst_transduce-1.2.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8483b6add84e23c8b7e88ace120cd70bb377a8891f6c402c19c4b1a95b07d4e0",
                "md5": "9a1e04590a9808c248b0a5531b70d1c6",
                "sha256": "0f3543d088bececb58eb4cce390c2643ae99406542e920931d64c9372df52c93"
            },
            "downloads": -1,
            "filename": "sfst_transduce-1.2.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9a1e04590a9808c248b0a5531b70d1c6",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 236688,
            "upload_time": "2024-10-30T10:03:00",
            "upload_time_iso_8601": "2024-10-30T10:03:00.840030Z",
            "url": "https://files.pythonhosted.org/packages/84/83/b6add84e23c8b7e88ace120cd70bb377a8891f6c402c19c4b1a95b07d4e0/sfst_transduce-1.2.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5ab3194353859e474f9dcabafd6671327d4a07ac51a6e4fc9f79302c34c90f60",
                "md5": "6d7fba822cf213417f9d1989361eabd3",
                "sha256": "c68ee5440649ec4726860a7888a19d7ba1ead04fdfb97f48f341655c98a6f0c3"
            },
            "downloads": -1,
            "filename": "sfst_transduce-1.2.1-pp310-pypy310_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "6d7fba822cf213417f9d1989361eabd3",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 129419,
            "upload_time": "2024-10-30T10:03:02",
            "upload_time_iso_8601": "2024-10-30T10:03:02.479964Z",
            "url": "https://files.pythonhosted.org/packages/5a/b3/194353859e474f9dcabafd6671327d4a07ac51a6e4fc9f79302c34c90f60/sfst_transduce-1.2.1-pp310-pypy310_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "313185152bca5ac197f7dfce96a7e5c87e7351f2f7c9c7a672c4fcc81ee5a95a",
                "md5": "763444c5298fd4960a61652a4088ee02",
                "sha256": "9346834dc68776fd359677582df62e21d46dded2065a6946abbb7b9f49576068"
            },
            "downloads": -1,
            "filename": "sfst_transduce-1.2.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "763444c5298fd4960a61652a4088ee02",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 175777,
            "upload_time": "2024-10-30T10:03:03",
            "upload_time_iso_8601": "2024-10-30T10:03:03.420404Z",
            "url": "https://files.pythonhosted.org/packages/31/31/85152bca5ac197f7dfce96a7e5c87e7351f2f7c9c7a672c4fcc81ee5a95a/sfst_transduce-1.2.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "653db65221dc7b197fa57b640bebab3d81827f02df5ce2f695f925ab23abe342",
                "md5": "e9ca8c3dfa9e263315846caf3fb2b81d",
                "sha256": "5c334cb827421c7177f3df907d9c06cef7480acc372a00e3395b458e8c9a77a1"
            },
            "downloads": -1,
            "filename": "sfst_transduce-1.2.1-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "e9ca8c3dfa9e263315846caf3fb2b81d",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 254967,
            "upload_time": "2024-10-30T10:03:04",
            "upload_time_iso_8601": "2024-10-30T10:03:04.548942Z",
            "url": "https://files.pythonhosted.org/packages/65/3d/b65221dc7b197fa57b640bebab3d81827f02df5ce2f695f925ab23abe342/sfst_transduce-1.2.1-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a2b0a24b45736b427c4b2770d5c74ca14a4f170756ce01dd9883042df45d5200",
                "md5": "3bc2b77bb9a9f16167e168fd4fb8d541",
                "sha256": "f44b815c3b7750c9227a51984f5ca664de9cd011799a47e0d1d55f61204b9d1c"
            },
            "downloads": -1,
            "filename": "sfst_transduce-1.2.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3bc2b77bb9a9f16167e168fd4fb8d541",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 237108,
            "upload_time": "2024-10-30T10:03:05",
            "upload_time_iso_8601": "2024-10-30T10:03:05.648166Z",
            "url": "https://files.pythonhosted.org/packages/a2/b0/a24b45736b427c4b2770d5c74ca14a4f170756ce01dd9883042df45d5200/sfst_transduce-1.2.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "206ee56db055bd16df73ef04d2584d6cf53371c01a854f0796811dfcb175b45d",
                "md5": "da9748e70947c16f7d8b36b5bc558bb5",
                "sha256": "1e44111d5b7bb8d284d3e2842a9d21b2af5993fff78bec5a7f8965010464d6c5"
            },
            "downloads": -1,
            "filename": "sfst_transduce-1.2.1-pp38-pypy38_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "da9748e70947c16f7d8b36b5bc558bb5",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 129314,
            "upload_time": "2024-10-30T10:03:06",
            "upload_time_iso_8601": "2024-10-30T10:03:06.885828Z",
            "url": "https://files.pythonhosted.org/packages/20/6e/e56db055bd16df73ef04d2584d6cf53371c01a854f0796811dfcb175b45d/sfst_transduce-1.2.1-pp38-pypy38_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4037f4f30ed0e630ee7ac4d6fd173e61a80c92cd0a7f1448f787dba2e1121a1f",
                "md5": "c348a689a0657329271f83cc6f39441b",
                "sha256": "c81564e472882a07869c6ba1c646712e70b92fe8c0be774147f389ff2fcb0f4c"
            },
            "downloads": -1,
            "filename": "sfst_transduce-1.2.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c348a689a0657329271f83cc6f39441b",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 175919,
            "upload_time": "2024-10-30T10:03:07",
            "upload_time_iso_8601": "2024-10-30T10:03:07.856234Z",
            "url": "https://files.pythonhosted.org/packages/40/37/f4f30ed0e630ee7ac4d6fd173e61a80c92cd0a7f1448f787dba2e1121a1f/sfst_transduce-1.2.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f6815990a552c07ea4ded6c0e9441cea3f45d4d111e636e4e73beb7ae9d98d85",
                "md5": "448432584c67aaa70760804be56c1ef9",
                "sha256": "d494b7c23d697dfffc2ab6d07a6272d11147b3c1cc7beff8d67b88b9d5377c9b"
            },
            "downloads": -1,
            "filename": "sfst_transduce-1.2.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "448432584c67aaa70760804be56c1ef9",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 254794,
            "upload_time": "2024-10-30T10:03:08",
            "upload_time_iso_8601": "2024-10-30T10:03:08.904297Z",
            "url": "https://files.pythonhosted.org/packages/f6/81/5990a552c07ea4ded6c0e9441cea3f45d4d111e636e4e73beb7ae9d98d85/sfst_transduce-1.2.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7475c9419a87b5ad12f725658af4b283c81b1d27a84e7924da88e0486f543ffb",
                "md5": "726a938ad7a8c1ff81dc5749a485ed4e",
                "sha256": "32e76e4eda86a51f499f4e1d65f48a1d4b0640f0743f3c7b528f360ad63904e3"
            },
            "downloads": -1,
            "filename": "sfst_transduce-1.2.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "726a938ad7a8c1ff81dc5749a485ed4e",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 236672,
            "upload_time": "2024-10-30T10:03:09",
            "upload_time_iso_8601": "2024-10-30T10:03:09.923343Z",
            "url": "https://files.pythonhosted.org/packages/74/75/c9419a87b5ad12f725658af4b283c81b1d27a84e7924da88e0486f543ffb/sfst_transduce-1.2.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "347d9e1731000e0330841d840877d42f0273517fa5b4f62bf00a3b1e324073dd",
                "md5": "8f24a59f6288a40fc5c2c8dae3b935f0",
                "sha256": "a94ba8f54e432f0257d958b559416958490136f0c904aeda0582d1b2cc50a7b7"
            },
            "downloads": -1,
            "filename": "sfst_transduce-1.2.1-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "8f24a59f6288a40fc5c2c8dae3b935f0",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 129460,
            "upload_time": "2024-10-30T10:03:11",
            "upload_time_iso_8601": "2024-10-30T10:03:11.384304Z",
            "url": "https://files.pythonhosted.org/packages/34/7d/9e1731000e0330841d840877d42f0273517fa5b4f62bf00a3b1e324073dd/sfst_transduce-1.2.1-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "35cecf8470ceebf5b2b22725aa79a6edd36ee663892475c88395324874a70155",
                "md5": "e6aad1e080cc674a369d4b025d91046d",
                "sha256": "c5bb759c515bfeab682746df2ad9984f2d1186d94923747f132f6057b5ca449c"
            },
            "downloads": -1,
            "filename": "sfst_transduce-1.2.1.tar.gz",
            "has_sig": false,
            "md5_digest": "e6aad1e080cc674a369d4b025d91046d",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 80050,
            "upload_time": "2024-10-30T10:03:12",
            "upload_time_iso_8601": "2024-10-30T10:03:12.653489Z",
            "url": "https://files.pythonhosted.org/packages/35/ce/cf8470ceebf5b2b22725aa79a6edd36ee663892475c88395324874a70155/sfst_transduce-1.2.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-10-30 10:03:12",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "zentrum-lexikographie",
    "github_project": "sfst-transduce",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "sfst-transduce"
}
        
Elapsed time: 0.71672s