Name | python-crfsuite JSON |
Version |
0.9.11
JSON |
| download |
home_page | None |
Summary | Python binding for CRFsuite |
upload_time | 2024-10-02 13:01:16 |
maintainer | None |
docs_url | None |
author | None |
requires_python | >=3.8 |
license | MIT License |
keywords |
|
VCS |
|
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
===============
python-crfsuite
===============
.. image:: https://github.com/scrapinghub/python-crfsuite/actions/workflows/tests.yml/badge.svg
:target: https://github.com/scrapinghub/python-crfsuite/actions/workflows/tests.yml
.. image:: https://img.shields.io/pypi/v/python-crfsuite.svg?style=flat-square
:target: https://pypi.python.org/pypi/python-crfsuite
:alt: pypi Version
.. image:: https://anaconda.org/conda-forge/python-crfsuite/badges/version.svg
:target: https://anaconda.org/conda-forge/python-crfsuite
:alt: conda Version
python-crfsuite is a python binding to CRFsuite_.
Installation
============
Using ``pip``::
pip install python-crfsuite
Using ``conda``::
conda install -c conda-forge python-crfsuite
Usage
=====
See docs_ and an example_.
.. _docs: http://python-crfsuite.rtfd.org/
.. _example: https://github.com/scrapinghub/python-crfsuite/blob/master/examples/CoNLL%202002.ipynb
See Also
========
sklearn-crfsuite_ is a python-crfsuite wrapper which provides
API similar to scikit-learn.
.. _sklearn-crfsuite: https://github.com/TeamHG-Memex/sklearn-crfsuite
Contributing
============
* Source code: https://github.com/scrapinghub/python-crfsuite
* Issue tracker: https://github.com/scrapinghub/python-crfsuite/issues
Feel free to submit ideas, bugs reports, pull requests or regular patches.
Please don't commit generated cpp files in the same commit as other files.
.. _Cython: http://cython.org/
.. _tox: http://tox.testrun.org
Authors and Contributors
========================
Original authors are Terry Peng <pengtaoo@gmail.com> and
Mikhail Korobov <kmike84@gmail.com>. Many other people contributed;
some of them can be found at github Contributors_ page.
Bundled CRFSuite_ C/C++ library is by Naoaki Okazaki & contributors.
.. _Contributors: https://github.com/scrapinghub/python-crfsuite/graphs/contributors
License
=======
python-crfsuite is licensed under MIT license.
CRFsuite_ library is licensed under BSD license.
.. _CRFsuite: https://github.com/chokkan/crfsuite
Alternatives
============
* https://github.com/chokkan/crfsuite/tree/master/swig/python - official
Python wrapper, exposes C++ API using SWIG.
* https://github.com/jakevdp/pyCRFsuite - uses C API instead of C++ API;
allows to use scipy sparse matrices as an input. At the time of writing
it is unmaintained.
* https://github.com/bosondata/crfsuite-rs - uses a Rust wrapper with CFFI instead of C++ API;
allows to tag with GIL released for better performance.
This package (python-crfsuite) wraps CRFsuite C++ API using Cython.
It is faster than official SWIG wrapper and has a simpler codebase than
a more advanced pyCRFsuite. python-crfsuite works in Python 2 and Python 3,
doesn't have external dependencies (CRFsuite is bundled, numpy/scipy stack
is not needed) and workarounds some of the issues with C++ CRFsuite library.
Raw data
{
"_id": null,
"home_page": null,
"name": "python-crfsuite",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.8",
"maintainer_email": null,
"keywords": null,
"author": null,
"author_email": "Terry Peng <pengtaoo@gmail.com>, Mikhail Korobov <kmike84@gmail.com>",
"download_url": "https://files.pythonhosted.org/packages/ea/17/9c64a2486de27fce7570c366eb723fd7a39dd7845119ee8fdd5051023671/python_crfsuite-0.9.11.tar.gz",
"platform": null,
"description": "===============\npython-crfsuite\n===============\n\n.. image:: https://github.com/scrapinghub/python-crfsuite/actions/workflows/tests.yml/badge.svg\n :target: https://github.com/scrapinghub/python-crfsuite/actions/workflows/tests.yml\n\n.. image:: https://img.shields.io/pypi/v/python-crfsuite.svg?style=flat-square\n :target: https://pypi.python.org/pypi/python-crfsuite\n :alt: pypi Version\n\n.. image:: https://anaconda.org/conda-forge/python-crfsuite/badges/version.svg\n :target: https://anaconda.org/conda-forge/python-crfsuite\n :alt: conda Version\n\npython-crfsuite is a python binding to CRFsuite_.\n\nInstallation\n============\n\nUsing ``pip``::\n\n pip install python-crfsuite\n\nUsing ``conda``::\n\n conda install -c conda-forge python-crfsuite\n\nUsage\n=====\n\nSee docs_ and an example_.\n\n.. _docs: http://python-crfsuite.rtfd.org/\n.. _example: https://github.com/scrapinghub/python-crfsuite/blob/master/examples/CoNLL%202002.ipynb\n\nSee Also\n========\n\nsklearn-crfsuite_ is a python-crfsuite wrapper which provides\nAPI similar to scikit-learn.\n\n.. _sklearn-crfsuite: https://github.com/TeamHG-Memex/sklearn-crfsuite\n\nContributing\n============\n\n* Source code: https://github.com/scrapinghub/python-crfsuite\n* Issue tracker: https://github.com/scrapinghub/python-crfsuite/issues\n\nFeel free to submit ideas, bugs reports, pull requests or regular patches.\n\nPlease don't commit generated cpp files in the same commit as other files.\n\n.. _Cython: http://cython.org/\n.. _tox: http://tox.testrun.org\n\nAuthors and Contributors\n========================\n\nOriginal authors are Terry Peng <pengtaoo@gmail.com> and\nMikhail Korobov <kmike84@gmail.com>. Many other people contributed;\nsome of them can be found at github Contributors_ page.\n\nBundled CRFSuite_ C/C++ library is by Naoaki Okazaki & contributors.\n\n.. _Contributors: https://github.com/scrapinghub/python-crfsuite/graphs/contributors\n\nLicense\n=======\n\npython-crfsuite is licensed under MIT license.\nCRFsuite_ library is licensed under BSD license.\n\n.. _CRFsuite: https://github.com/chokkan/crfsuite\n\nAlternatives\n============\n\n* https://github.com/chokkan/crfsuite/tree/master/swig/python - official\n Python wrapper, exposes C++ API using SWIG.\n* https://github.com/jakevdp/pyCRFsuite - uses C API instead of C++ API;\n allows to use scipy sparse matrices as an input. At the time of writing\n it is unmaintained.\n* https://github.com/bosondata/crfsuite-rs - uses a Rust wrapper with CFFI instead of C++ API;\n allows to tag with GIL released for better performance.\n\nThis package (python-crfsuite) wraps CRFsuite C++ API using Cython.\nIt is faster than official SWIG wrapper and has a simpler codebase than\na more advanced pyCRFsuite. python-crfsuite works in Python 2 and Python 3,\ndoesn't have external dependencies (CRFsuite is bundled, numpy/scipy stack\nis not needed) and workarounds some of the issues with C++ CRFsuite library.\n",
"bugtrack_url": null,
"license": "MIT License",
"summary": "Python binding for CRFsuite",
"version": "0.9.11",
"project_urls": {
"Homepage": "https://github.com/scrapinghub/python-crfsuite"
},
"split_keywords": [],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "cb746335c271196db419c77ddfb19c04abe40fee45921faca96c150bfc51f176",
"md5": "e5731353ef668499624a76220e4a35b7",
"sha256": "2f5ed569517e7b1fa3d32cf5d5cbe2fb6c85486195bf5cad03d52072fef7aa8a"
},
"downloads": -1,
"filename": "python_crfsuite-0.9.11-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "e5731353ef668499624a76220e4a35b7",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 319014,
"upload_time": "2024-10-02T12:59:52",
"upload_time_iso_8601": "2024-10-02T12:59:52.622218Z",
"url": "https://files.pythonhosted.org/packages/cb/74/6335c271196db419c77ddfb19c04abe40fee45921faca96c150bfc51f176/python_crfsuite-0.9.11-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3832b2986996b4be2edeb13b62b5115aa042250f5da87edd3f8db4d71d6d1457",
"md5": "460ec8cc536732c01d5a520b1440f556",
"sha256": "aed10ee4334c99173940e88318d312a4f9e70ba653b8ac0e6f3ef816431af811"
},
"downloads": -1,
"filename": "python_crfsuite-0.9.11-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "460ec8cc536732c01d5a520b1440f556",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1183446,
"upload_time": "2024-10-02T12:59:54",
"upload_time_iso_8601": "2024-10-02T12:59:54.601058Z",
"url": "https://files.pythonhosted.org/packages/38/32/b2986996b4be2edeb13b62b5115aa042250f5da87edd3f8db4d71d6d1457/python_crfsuite-0.9.11-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5f46bea59e70e382aeeb1cd47e04868ce3bcec622968af4b01b24b272d8050ad",
"md5": "130feab605a91dbe74da6bf453b3f31a",
"sha256": "4fd8cc52f853436bbed580ad6c17e37c3657466fdfa28ddc55efcbba28b92cdf"
},
"downloads": -1,
"filename": "python_crfsuite-0.9.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "130feab605a91dbe74da6bf453b3f31a",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1215316,
"upload_time": "2024-10-02T12:59:55",
"upload_time_iso_8601": "2024-10-02T12:59:55.891811Z",
"url": "https://files.pythonhosted.org/packages/5f/46/bea59e70e382aeeb1cd47e04868ce3bcec622968af4b01b24b272d8050ad/python_crfsuite-0.9.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4dbaf4c169ce26689ddf4eb92effb4b15dafbb52622302f15a67492c680f3e0c",
"md5": "8b8aa28a38c68695003f5f7b9f8f6177",
"sha256": "182fad0415697d5acbe18364333f8255016c8609d570cba78c20d8d71a392f90"
},
"downloads": -1,
"filename": "python_crfsuite-0.9.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "8b8aa28a38c68695003f5f7b9f8f6177",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1232601,
"upload_time": "2024-10-02T12:59:57",
"upload_time_iso_8601": "2024-10-02T12:59:57.495778Z",
"url": "https://files.pythonhosted.org/packages/4d/ba/f4c169ce26689ddf4eb92effb4b15dafbb52622302f15a67492c680f3e0c/python_crfsuite-0.9.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "54cbb38bd20df2274570275dc97515f7cf8475ef8ffc50bc6d9dffaafd9a8600",
"md5": "6ec2b8c35064652a40722b157c16e43c",
"sha256": "05cd988aaa7ac87a54d4bd1d756455f6e3b078f07b4fcbda3bccfd91a784dd20"
},
"downloads": -1,
"filename": "python_crfsuite-0.9.11-cp310-cp310-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "6ec2b8c35064652a40722b157c16e43c",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 2103655,
"upload_time": "2024-10-02T12:59:59",
"upload_time_iso_8601": "2024-10-02T12:59:59.181833Z",
"url": "https://files.pythonhosted.org/packages/54/cb/b38bd20df2274570275dc97515f7cf8475ef8ffc50bc6d9dffaafd9a8600/python_crfsuite-0.9.11-cp310-cp310-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fad016f0d8bcc284afb197a22cc923c5cbd219b12ee1482c3ebb237bee48f957",
"md5": "acfc37929b865b8b93e15d987ece5b60",
"sha256": "2dead957809b92b7f0fc4c03fc70af9cbcaf35518ff1fd3a3fe2862dd0bb52fa"
},
"downloads": -1,
"filename": "python_crfsuite-0.9.11-cp310-cp310-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "acfc37929b865b8b93e15d987ece5b60",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 2250127,
"upload_time": "2024-10-02T13:00:00",
"upload_time_iso_8601": "2024-10-02T13:00:00.615617Z",
"url": "https://files.pythonhosted.org/packages/fa/d0/16f0d8bcc284afb197a22cc923c5cbd219b12ee1482c3ebb237bee48f957/python_crfsuite-0.9.11-cp310-cp310-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "510e8ab90bfc316ff326588f6bbbb2eef1776ca11e91e22ab4eaced483b8f774",
"md5": "e571bfc005d75599d615940253085703",
"sha256": "66f24e5281b8a10091c3a9eef5a85115aea9570bcb9e0c03c738b0eab7070cb5"
},
"downloads": -1,
"filename": "python_crfsuite-0.9.11-cp310-cp310-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "e571bfc005d75599d615940253085703",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 2191878,
"upload_time": "2024-10-02T13:00:02",
"upload_time_iso_8601": "2024-10-02T13:00:02.441433Z",
"url": "https://files.pythonhosted.org/packages/51/0e/8ab90bfc316ff326588f6bbbb2eef1776ca11e91e22ab4eaced483b8f774/python_crfsuite-0.9.11-cp310-cp310-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5d8452e622fed7335a97dbabf7cc577feefa92001d3d39135d3ddaef998bf929",
"md5": "9c5cc9863ac637fc64ea49bce29eb302",
"sha256": "b5a9492686e3dde5739ea19a3ec37397eb7cff787362e403a411acb6431aaf84"
},
"downloads": -1,
"filename": "python_crfsuite-0.9.11-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "9c5cc9863ac637fc64ea49bce29eb302",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 280885,
"upload_time": "2024-10-02T13:00:04",
"upload_time_iso_8601": "2024-10-02T13:00:04.186956Z",
"url": "https://files.pythonhosted.org/packages/5d/84/52e622fed7335a97dbabf7cc577feefa92001d3d39135d3ddaef998bf929/python_crfsuite-0.9.11-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "137adef271af273f5b15052fa0ce8f80811b2486c47dc7c718971418b58c8ce2",
"md5": "fea8d0fdf5e86cc208f59c5a47ba524c",
"sha256": "d2c361819ba331c48038f1b231b8863b886205e9decae2fb89f69da44b28d00a"
},
"downloads": -1,
"filename": "python_crfsuite-0.9.11-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "fea8d0fdf5e86cc208f59c5a47ba524c",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 301530,
"upload_time": "2024-10-02T13:00:05",
"upload_time_iso_8601": "2024-10-02T13:00:05.749937Z",
"url": "https://files.pythonhosted.org/packages/13/7a/def271af273f5b15052fa0ce8f80811b2486c47dc7c718971418b58c8ce2/python_crfsuite-0.9.11-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bc32743048adf41ba3ebc4d82deed5d4a336164dc0066ef83b28d2a4b1979d66",
"md5": "d045f3018456fc564d8f3bde9eb0c85e",
"sha256": "4a2f2ff5b6b0b6cf72ee476436f3926ccd0045c97e7703478a025c9badd180c6"
},
"downloads": -1,
"filename": "python_crfsuite-0.9.11-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "d045f3018456fc564d8f3bde9eb0c85e",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 319684,
"upload_time": "2024-10-02T13:00:07",
"upload_time_iso_8601": "2024-10-02T13:00:07.376334Z",
"url": "https://files.pythonhosted.org/packages/bc/32/743048adf41ba3ebc4d82deed5d4a336164dc0066ef83b28d2a4b1979d66/python_crfsuite-0.9.11-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f01299235a88e786a4f2874cb9b416b53edc778719c2d27843c2727e7233bbaa",
"md5": "89d2c605522fa9f33dcd89739a3a3847",
"sha256": "83bc133fc2a411144778bb03d56a95f88a4da0386462fb99d32b45428959101f"
},
"downloads": -1,
"filename": "python_crfsuite-0.9.11-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "89d2c605522fa9f33dcd89739a3a3847",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1211479,
"upload_time": "2024-10-02T13:00:08",
"upload_time_iso_8601": "2024-10-02T13:00:08.624407Z",
"url": "https://files.pythonhosted.org/packages/f0/12/99235a88e786a4f2874cb9b416b53edc778719c2d27843c2727e7233bbaa/python_crfsuite-0.9.11-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a57f8da1653440925627f1e2730a2a8f048f9e84e644a95a6324f7cce5b0e324",
"md5": "da513cf6d238555cf4fe04b704a10685",
"sha256": "4d5e52bfe54c1cb94009f1edb9c1dec3fe6d31823c60fafee04d63354c342303"
},
"downloads": -1,
"filename": "python_crfsuite-0.9.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "da513cf6d238555cf4fe04b704a10685",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1244805,
"upload_time": "2024-10-02T13:00:10",
"upload_time_iso_8601": "2024-10-02T13:00:10.406073Z",
"url": "https://files.pythonhosted.org/packages/a5/7f/8da1653440925627f1e2730a2a8f048f9e84e644a95a6324f7cce5b0e324/python_crfsuite-0.9.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "344307221382ab31f3fd8d648c1421b240a332cc64ad7f89af275101ce9e5bad",
"md5": "c6fa3445544d035ad6c3fecec2cc28ad",
"sha256": "a23a96dc9a25a0d143430236158ca0d836b94a26d5752ffdf7efe315c14045f5"
},
"downloads": -1,
"filename": "python_crfsuite-0.9.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "c6fa3445544d035ad6c3fecec2cc28ad",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1261854,
"upload_time": "2024-10-02T13:00:11",
"upload_time_iso_8601": "2024-10-02T13:00:11.940690Z",
"url": "https://files.pythonhosted.org/packages/34/43/07221382ab31f3fd8d648c1421b240a332cc64ad7f89af275101ce9e5bad/python_crfsuite-0.9.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "45e7ac1d92ce9951401d71116526d76100a7ed3a1717dfbb2bfc0e9195d5ef09",
"md5": "e7666feed5a832e847c91f41e09a06ea",
"sha256": "dd95a8ab9d92ac6756c17dde8150d7edcc696e49b4ca5f537e347143d19c94bc"
},
"downloads": -1,
"filename": "python_crfsuite-0.9.11-cp311-cp311-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "e7666feed5a832e847c91f41e09a06ea",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 2139166,
"upload_time": "2024-10-02T13:00:13",
"upload_time_iso_8601": "2024-10-02T13:00:13.789850Z",
"url": "https://files.pythonhosted.org/packages/45/e7/ac1d92ce9951401d71116526d76100a7ed3a1717dfbb2bfc0e9195d5ef09/python_crfsuite-0.9.11-cp311-cp311-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bdd8a4e799f6126a7b8bafe3896472065985c99d32a68dd9bba29885e1c3c56c",
"md5": "c3526f9822dabbe4337bb170d8dc57f5",
"sha256": "800fd345f2eb822d574eeaa6099bb88a23942272f62ea3e182e8ec07f4cf5ca8"
},
"downloads": -1,
"filename": "python_crfsuite-0.9.11-cp311-cp311-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "c3526f9822dabbe4337bb170d8dc57f5",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 2282077,
"upload_time": "2024-10-02T13:00:15",
"upload_time_iso_8601": "2024-10-02T13:00:15.116495Z",
"url": "https://files.pythonhosted.org/packages/bd/d8/a4e799f6126a7b8bafe3896472065985c99d32a68dd9bba29885e1c3c56c/python_crfsuite-0.9.11-cp311-cp311-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a70e8f66fe63a751edd4ab1036af5276334e111a43d7cc939c57cd04090416d4",
"md5": "9196b8e8758fc892eff0ba1683cc4795",
"sha256": "4c17dc2c5ac63d10993afbab0288bb1949e4ac856361c83e8041fff4493d7dab"
},
"downloads": -1,
"filename": "python_crfsuite-0.9.11-cp311-cp311-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "9196b8e8758fc892eff0ba1683cc4795",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 2225963,
"upload_time": "2024-10-02T13:00:16",
"upload_time_iso_8601": "2024-10-02T13:00:16.664497Z",
"url": "https://files.pythonhosted.org/packages/a7/0e/8f66fe63a751edd4ab1036af5276334e111a43d7cc939c57cd04090416d4/python_crfsuite-0.9.11-cp311-cp311-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "50578d58d869a41715fbefe6d4fcf62a483e76f223716f44583df7d2ac0a05fe",
"md5": "b413258437105a197ea759b99ff638b2",
"sha256": "9a00f1f32203d9cb66658df75ee62ce4809b24f26b982b7f482934a683abc96c"
},
"downloads": -1,
"filename": "python_crfsuite-0.9.11-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "b413258437105a197ea759b99ff638b2",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 280872,
"upload_time": "2024-10-02T13:00:17",
"upload_time_iso_8601": "2024-10-02T13:00:17.870904Z",
"url": "https://files.pythonhosted.org/packages/50/57/8d58d869a41715fbefe6d4fcf62a483e76f223716f44583df7d2ac0a05fe/python_crfsuite-0.9.11-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f34c2aabe6f3c06a6e62fb4d80d0ed224e3d813b7fc5bc7d9aba52e724639268",
"md5": "9e1b83b7edbcebbba3dc10b0619426b6",
"sha256": "d255f02c890628337c970d76cba787afb7991340b3a7b201d3a158add5f78989"
},
"downloads": -1,
"filename": "python_crfsuite-0.9.11-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "9e1b83b7edbcebbba3dc10b0619426b6",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 301866,
"upload_time": "2024-10-02T13:00:19",
"upload_time_iso_8601": "2024-10-02T13:00:19.330061Z",
"url": "https://files.pythonhosted.org/packages/f3/4c/2aabe6f3c06a6e62fb4d80d0ed224e3d813b7fc5bc7d9aba52e724639268/python_crfsuite-0.9.11-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "22e21fafca9ea7a964bbc4a8a91351acb1f46c17c63e9aa766a22a59b0a14aa0",
"md5": "c53048035dcad9416bbf4e78e4368461",
"sha256": "346a37d1ffa9f161d56c523d2386eaa5026c663e70f65db4478adb292d7c047c"
},
"downloads": -1,
"filename": "python_crfsuite-0.9.11-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "c53048035dcad9416bbf4e78e4368461",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 319874,
"upload_time": "2024-10-02T13:00:20",
"upload_time_iso_8601": "2024-10-02T13:00:20.921819Z",
"url": "https://files.pythonhosted.org/packages/22/e2/1fafca9ea7a964bbc4a8a91351acb1f46c17c63e9aa766a22a59b0a14aa0/python_crfsuite-0.9.11-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "433f1d954edbef65a0d2b9fe71a974973aaace5f617ab3276f50b995ea1ea198",
"md5": "338b53cf76ad0e1fb9c7b554acc18375",
"sha256": "bec40a7924d2e79a06f8eb0cec613ade54d677b73c4041c6052cd890aca2db89"
},
"downloads": -1,
"filename": "python_crfsuite-0.9.11-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "338b53cf76ad0e1fb9c7b554acc18375",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1200041,
"upload_time": "2024-10-02T13:00:22",
"upload_time_iso_8601": "2024-10-02T13:00:22.526526Z",
"url": "https://files.pythonhosted.org/packages/43/3f/1d954edbef65a0d2b9fe71a974973aaace5f617ab3276f50b995ea1ea198/python_crfsuite-0.9.11-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4977069c75217707c0727944293571bccb90642269990abfac76427b3446c275",
"md5": "817c7555738c559cc76918ae055c136e",
"sha256": "7c5b3836e8ee8d684fb9d76d287035db51039b30cadac3332664655acf970831"
},
"downloads": -1,
"filename": "python_crfsuite-0.9.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "817c7555738c559cc76918ae055c136e",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1234277,
"upload_time": "2024-10-02T13:00:24",
"upload_time_iso_8601": "2024-10-02T13:00:24.593345Z",
"url": "https://files.pythonhosted.org/packages/49/77/069c75217707c0727944293571bccb90642269990abfac76427b3446c275/python_crfsuite-0.9.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "54a36af8a68bdfe4d8c001a1fdb84b6fa1154d2b772dbd619050697f4cc2fe39",
"md5": "a7414edf717ee9de41028f138dd03e25",
"sha256": "7f498cb82686dc18f7cecaf0a7ebceb4590ee2137cfa8cfe1b75f53514d0e956"
},
"downloads": -1,
"filename": "python_crfsuite-0.9.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "a7414edf717ee9de41028f138dd03e25",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1254759,
"upload_time": "2024-10-02T13:00:26",
"upload_time_iso_8601": "2024-10-02T13:00:26.159373Z",
"url": "https://files.pythonhosted.org/packages/54/a3/6af8a68bdfe4d8c001a1fdb84b6fa1154d2b772dbd619050697f4cc2fe39/python_crfsuite-0.9.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6f3c75e26cfd1e2c8807aa465a7213f63e2e0c9d61af0ad0ff635bbd2f47e4aa",
"md5": "3dbb3da3675247d98f5ce4466324a92b",
"sha256": "29cdf55c54c388c62148ba310bf8ad1b93b352d62dd84856d15c421dae2e902d"
},
"downloads": -1,
"filename": "python_crfsuite-0.9.11-cp312-cp312-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "3dbb3da3675247d98f5ce4466324a92b",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 2131213,
"upload_time": "2024-10-02T13:00:27",
"upload_time_iso_8601": "2024-10-02T13:00:27.945531Z",
"url": "https://files.pythonhosted.org/packages/6f/3c/75e26cfd1e2c8807aa465a7213f63e2e0c9d61af0ad0ff635bbd2f47e4aa/python_crfsuite-0.9.11-cp312-cp312-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "167653e57efd9f3e9cbbed3615d065d5367a8c18df0217e83ca216f215aa257a",
"md5": "6afd4c10cc5228f8217dbb7cfa1e7df0",
"sha256": "7e6738ed044ba91d8284716f87525ca95bc857ece0b226910a80126a8ce6ad06"
},
"downloads": -1,
"filename": "python_crfsuite-0.9.11-cp312-cp312-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "6afd4c10cc5228f8217dbb7cfa1e7df0",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 2259424,
"upload_time": "2024-10-02T13:00:29",
"upload_time_iso_8601": "2024-10-02T13:00:29.371725Z",
"url": "https://files.pythonhosted.org/packages/16/76/53e57efd9f3e9cbbed3615d065d5367a8c18df0217e83ca216f215aa257a/python_crfsuite-0.9.11-cp312-cp312-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a105663e01d5721ea5b0dfde0483696dd28498929cd095e86e31501891de2381",
"md5": "031beb3e1a3a112cf2b0bcfae8ad9ba3",
"sha256": "1a365a70e54dbd20a9251a3b6df91e1406cab1b1b5995a9d68e8c748fc9b3af7"
},
"downloads": -1,
"filename": "python_crfsuite-0.9.11-cp312-cp312-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "031beb3e1a3a112cf2b0bcfae8ad9ba3",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 2219484,
"upload_time": "2024-10-02T13:00:31",
"upload_time_iso_8601": "2024-10-02T13:00:31.033306Z",
"url": "https://files.pythonhosted.org/packages/a1/05/663e01d5721ea5b0dfde0483696dd28498929cd095e86e31501891de2381/python_crfsuite-0.9.11-cp312-cp312-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "755355c908ca49e0d3f5d0c7410f876ef4fc0b605e140492b41f8833a1befb96",
"md5": "8292ddb307fda52be0c5f1b0fcb69120",
"sha256": "4b230ab1b69c6025e4f64e72c445f7492cccf00d94fc2c0bf2f337fafc05d5d5"
},
"downloads": -1,
"filename": "python_crfsuite-0.9.11-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "8292ddb307fda52be0c5f1b0fcb69120",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 280500,
"upload_time": "2024-10-02T13:00:32",
"upload_time_iso_8601": "2024-10-02T13:00:32.765112Z",
"url": "https://files.pythonhosted.org/packages/75/53/55c908ca49e0d3f5d0c7410f876ef4fc0b605e140492b41f8833a1befb96/python_crfsuite-0.9.11-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5408d060405793cab77dbd167814393c838c456f9d9281cebcc3d9f185e2c5d5",
"md5": "a35665241ecbc22fa0c4dcf9da73c9e3",
"sha256": "c89d7ad4ca520a5f045c676865ec09a2accc25dc5dce387f2199e5b2c9d8f337"
},
"downloads": -1,
"filename": "python_crfsuite-0.9.11-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "a35665241ecbc22fa0c4dcf9da73c9e3",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 301055,
"upload_time": "2024-10-02T13:00:33",
"upload_time_iso_8601": "2024-10-02T13:00:33.956300Z",
"url": "https://files.pythonhosted.org/packages/54/08/d060405793cab77dbd167814393c838c456f9d9281cebcc3d9f185e2c5d5/python_crfsuite-0.9.11-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "228d55073b5150b3884a30fc2ec2fc01fbdaa4187bedd57b5c80002182b09ab3",
"md5": "48d1dbb845b4c93796a099383523cdc4",
"sha256": "89b45426f28b39dfc4789d29bcd7398f177746e4ab27f6ae3c7b48a082ecb73b"
},
"downloads": -1,
"filename": "python_crfsuite-0.9.11-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "48d1dbb845b4c93796a099383523cdc4",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 318894,
"upload_time": "2024-10-02T13:00:35",
"upload_time_iso_8601": "2024-10-02T13:00:35.363886Z",
"url": "https://files.pythonhosted.org/packages/22/8d/55073b5150b3884a30fc2ec2fc01fbdaa4187bedd57b5c80002182b09ab3/python_crfsuite-0.9.11-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "145f89cfb856b9bfc6d37723e20c439b5fff56a7a1b48de331a53d1669907b38",
"md5": "a14915e9bec3e05eccb86f071b826d57",
"sha256": "788b6ca5fd43797f6822bb7aed8d5b0255d7d53be62746c77ca91dad5dfd2f2b"
},
"downloads": -1,
"filename": "python_crfsuite-0.9.11-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "a14915e9bec3e05eccb86f071b826d57",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 1196963,
"upload_time": "2024-10-02T13:00:37",
"upload_time_iso_8601": "2024-10-02T13:00:37.512702Z",
"url": "https://files.pythonhosted.org/packages/14/5f/89cfb856b9bfc6d37723e20c439b5fff56a7a1b48de331a53d1669907b38/python_crfsuite-0.9.11-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "72a7cfe27cb4539dbd0209fd23a1c3d653ba493202bb8c635045ff8f3e8ec6d5",
"md5": "d4c14826c834855f107fccf83d1f9a2e",
"sha256": "609ce1e2ea1ff36379e91a4af9f10bcaaca0b22d089ec7489181ae0d9d098419"
},
"downloads": -1,
"filename": "python_crfsuite-0.9.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "d4c14826c834855f107fccf83d1f9a2e",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 1231856,
"upload_time": "2024-10-02T13:00:39",
"upload_time_iso_8601": "2024-10-02T13:00:39.312904Z",
"url": "https://files.pythonhosted.org/packages/72/a7/cfe27cb4539dbd0209fd23a1c3d653ba493202bb8c635045ff8f3e8ec6d5/python_crfsuite-0.9.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7872ec157e6a280e1662622ac8a74d891e436e765299df75b5f5cdbb48c2ca1a",
"md5": "9bfb4eb412571a4a68740fe93ede54f6",
"sha256": "893af206342196e37c84af73941d7c2498e3ab926a67f846f78de6f48a7cb067"
},
"downloads": -1,
"filename": "python_crfsuite-0.9.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "9bfb4eb412571a4a68740fe93ede54f6",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 1252163,
"upload_time": "2024-10-02T13:00:41",
"upload_time_iso_8601": "2024-10-02T13:00:41.139851Z",
"url": "https://files.pythonhosted.org/packages/78/72/ec157e6a280e1662622ac8a74d891e436e765299df75b5f5cdbb48c2ca1a/python_crfsuite-0.9.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6c1a1b60a013e5e24ffcd420aa7b44f2328c1f4f0d8f33606baa845ee5e1fa9c",
"md5": "21a826e87d879d3f4de14ef01a2b7a29",
"sha256": "a387c4c4794ecccc712e01091b2887fc90b63dbc6612947232c2593116545e8a"
},
"downloads": -1,
"filename": "python_crfsuite-0.9.11-cp313-cp313-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "21a826e87d879d3f4de14ef01a2b7a29",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 2130072,
"upload_time": "2024-10-02T13:00:42",
"upload_time_iso_8601": "2024-10-02T13:00:42.518913Z",
"url": "https://files.pythonhosted.org/packages/6c/1a/1b60a013e5e24ffcd420aa7b44f2328c1f4f0d8f33606baa845ee5e1fa9c/python_crfsuite-0.9.11-cp313-cp313-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "590a48a93be02c2eee1f62c92ead8ca50e194c09da9e62bea6c7177ea767d36a",
"md5": "4d9d35a6dac0ec205508633eea4d8c11",
"sha256": "00db049cc46f716cef6626fbcf5b8abc258f4740e39dcceccc706ba77200992b"
},
"downloads": -1,
"filename": "python_crfsuite-0.9.11-cp313-cp313-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "4d9d35a6dac0ec205508633eea4d8c11",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 2259369,
"upload_time": "2024-10-02T13:00:43",
"upload_time_iso_8601": "2024-10-02T13:00:43.914130Z",
"url": "https://files.pythonhosted.org/packages/59/0a/48a93be02c2eee1f62c92ead8ca50e194c09da9e62bea6c7177ea767d36a/python_crfsuite-0.9.11-cp313-cp313-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7c88666e5a7a46119200d079bd676001e154938be2674c54a0e0cf6cf2bfa1a3",
"md5": "43310b13427ae7b5ecb6416bf6662b0b",
"sha256": "c0f95fd723e7a684188c541106f301a1d87104a07acd1e5687df849d2a86391a"
},
"downloads": -1,
"filename": "python_crfsuite-0.9.11-cp313-cp313-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "43310b13427ae7b5ecb6416bf6662b0b",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 2218763,
"upload_time": "2024-10-02T13:00:45",
"upload_time_iso_8601": "2024-10-02T13:00:45.627020Z",
"url": "https://files.pythonhosted.org/packages/7c/88/666e5a7a46119200d079bd676001e154938be2674c54a0e0cf6cf2bfa1a3/python_crfsuite-0.9.11-cp313-cp313-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a71a9c21fe8ca1cf05d2fb879c7cebc31938eb7e8734bd2cf4066d41afd08db8",
"md5": "c2e950af257906d90099591107760d71",
"sha256": "5664cebdc82d20b374641f2d0e77a86e8b010fafaf8efeb8862c3fc567d41c08"
},
"downloads": -1,
"filename": "python_crfsuite-0.9.11-cp313-cp313-win32.whl",
"has_sig": false,
"md5_digest": "c2e950af257906d90099591107760d71",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 280175,
"upload_time": "2024-10-02T13:00:46",
"upload_time_iso_8601": "2024-10-02T13:00:46.915474Z",
"url": "https://files.pythonhosted.org/packages/a7/1a/9c21fe8ca1cf05d2fb879c7cebc31938eb7e8734bd2cf4066d41afd08db8/python_crfsuite-0.9.11-cp313-cp313-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5fbdf37bad6ec84b8e5eaa8c56965de2ae25d292b011ff6532bdfe70b7a0b6c0",
"md5": "e465b1b64dc413c1df6049df03e57b59",
"sha256": "00123f42dca02897aaa1fc129ea99b815f800c2893ffb210d8b8f71235ffeef4"
},
"downloads": -1,
"filename": "python_crfsuite-0.9.11-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "e465b1b64dc413c1df6049df03e57b59",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 300505,
"upload_time": "2024-10-02T13:00:48",
"upload_time_iso_8601": "2024-10-02T13:00:48.117765Z",
"url": "https://files.pythonhosted.org/packages/5f/bd/f37bad6ec84b8e5eaa8c56965de2ae25d292b011ff6532bdfe70b7a0b6c0/python_crfsuite-0.9.11-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3958c7f30d14480ae92ba1318bba200592d2009ae2a99b1b1c91ead5f11f94f6",
"md5": "b3f821fc4563ccd1e603f32757ab8f94",
"sha256": "bb02962c16e3c84bb056ed86f2227b3d0432995c047acb7eb15032c1b645044c"
},
"downloads": -1,
"filename": "python_crfsuite-0.9.11-cp38-cp38-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "b3f821fc4563ccd1e603f32757ab8f94",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 318878,
"upload_time": "2024-10-02T13:00:49",
"upload_time_iso_8601": "2024-10-02T13:00:49.906686Z",
"url": "https://files.pythonhosted.org/packages/39/58/c7f30d14480ae92ba1318bba200592d2009ae2a99b1b1c91ead5f11f94f6/python_crfsuite-0.9.11-cp38-cp38-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b291059469e27538168a108afec7f0484c16ca1d5df4201586e90714fa9a057c",
"md5": "a47d7366198179af28053c815125395b",
"sha256": "f5cc941f1e22cd52e1965cd353b67edfbae06dc5ceb6556bf3176d8523113f66"
},
"downloads": -1,
"filename": "python_crfsuite-0.9.11-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "a47d7366198179af28053c815125395b",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1190392,
"upload_time": "2024-10-02T13:00:51",
"upload_time_iso_8601": "2024-10-02T13:00:51.170971Z",
"url": "https://files.pythonhosted.org/packages/b2/91/059469e27538168a108afec7f0484c16ca1d5df4201586e90714fa9a057c/python_crfsuite-0.9.11-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3139928fc5cd72b7c9792771338fcc174fa0df1a64e2d47d0672395759cf1bc7",
"md5": "f553cba46a43d7d0e556c01853f8d57b",
"sha256": "b8b3ceefc199b46e562a8bfaac9ef71f86108f0435e28f40007da48618f53837"
},
"downloads": -1,
"filename": "python_crfsuite-0.9.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "f553cba46a43d7d0e556c01853f8d57b",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1222567,
"upload_time": "2024-10-02T13:00:52",
"upload_time_iso_8601": "2024-10-02T13:00:52.708774Z",
"url": "https://files.pythonhosted.org/packages/31/39/928fc5cd72b7c9792771338fcc174fa0df1a64e2d47d0672395759cf1bc7/python_crfsuite-0.9.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d7dea2c3f0c3fd8f8363b44d4b62e4bb39d2a9ae40455bd0cd8b0f7042dbab45",
"md5": "f292c2459096d5690a4b0d9b345722ab",
"sha256": "9b0c244c0ac04f1213576d28743dae133ca3ff2ebba98b3c4abda3327f37ed23"
},
"downloads": -1,
"filename": "python_crfsuite-0.9.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "f292c2459096d5690a4b0d9b345722ab",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1238916,
"upload_time": "2024-10-02T13:00:54",
"upload_time_iso_8601": "2024-10-02T13:00:54.050238Z",
"url": "https://files.pythonhosted.org/packages/d7/de/a2c3f0c3fd8f8363b44d4b62e4bb39d2a9ae40455bd0cd8b0f7042dbab45/python_crfsuite-0.9.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3e99c9db6eb25d2286b0c82c77011b2b57a67459b91335f19768d14044635db0",
"md5": "71a089ba975701dd92ff13f0b95aa533",
"sha256": "8919fec4638133b3e95afe1496b5b771bb8464741bd467534cc1414ae7f0efc6"
},
"downloads": -1,
"filename": "python_crfsuite-0.9.11-cp38-cp38-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "71a089ba975701dd92ff13f0b95aa533",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 2118120,
"upload_time": "2024-10-02T13:00:55",
"upload_time_iso_8601": "2024-10-02T13:00:55.432881Z",
"url": "https://files.pythonhosted.org/packages/3e/99/c9db6eb25d2286b0c82c77011b2b57a67459b91335f19768d14044635db0/python_crfsuite-0.9.11-cp38-cp38-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6bcea4e1bda745e0a62faf670e2102fe30260f2ec2e2369046b52bf72a3146f9",
"md5": "91af8d22a5d9bcd15ccb052e4345e980",
"sha256": "993705405b979047a9c66141f4ef886635278f244b5371c25db94751f4b7d326"
},
"downloads": -1,
"filename": "python_crfsuite-0.9.11-cp38-cp38-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "91af8d22a5d9bcd15ccb052e4345e980",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 2265809,
"upload_time": "2024-10-02T13:00:56",
"upload_time_iso_8601": "2024-10-02T13:00:56.797035Z",
"url": "https://files.pythonhosted.org/packages/6b/ce/a4e1bda745e0a62faf670e2102fe30260f2ec2e2369046b52bf72a3146f9/python_crfsuite-0.9.11-cp38-cp38-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f1f03c27b7ab3bdf1df41f9440096d2069f20234755a5d1385ed424aa36f82f4",
"md5": "866b6ba065780d2077eb8360cfdadcbb",
"sha256": "48fb8b11ae294a3f5986dc4ae9a20047d850e1dc20dae3725c3a9d0c70e14418"
},
"downloads": -1,
"filename": "python_crfsuite-0.9.11-cp38-cp38-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "866b6ba065780d2077eb8360cfdadcbb",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 2203546,
"upload_time": "2024-10-02T13:00:58",
"upload_time_iso_8601": "2024-10-02T13:00:58.253368Z",
"url": "https://files.pythonhosted.org/packages/f1/f0/3c27b7ab3bdf1df41f9440096d2069f20234755a5d1385ed424aa36f82f4/python_crfsuite-0.9.11-cp38-cp38-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7d2c7e95cbee1af95d9bfade729bf7195348163afc0e4159ecb9b51de661c2e7",
"md5": "dd99a93878cf239bd165c5a45282f4a2",
"sha256": "f8df18614e5c6c3c95d3e20a7968f75201693a0cc1284d893f7bbc04a392f8e3"
},
"downloads": -1,
"filename": "python_crfsuite-0.9.11-cp38-cp38-win32.whl",
"has_sig": false,
"md5_digest": "dd99a93878cf239bd165c5a45282f4a2",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 281164,
"upload_time": "2024-10-02T13:00:59",
"upload_time_iso_8601": "2024-10-02T13:00:59.652814Z",
"url": "https://files.pythonhosted.org/packages/7d/2c/7e95cbee1af95d9bfade729bf7195348163afc0e4159ecb9b51de661c2e7/python_crfsuite-0.9.11-cp38-cp38-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "09f87b226d4fb4863eb1a0a0923bdf023dfb14b9bc99a0fdffb9260524e06fe0",
"md5": "b5803a1eabf21852a20675e6cfa6f0bb",
"sha256": "01a0078292fff9e171ab9f4cabc67cbd2c629647b8fc67187c1335520a7a45fa"
},
"downloads": -1,
"filename": "python_crfsuite-0.9.11-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "b5803a1eabf21852a20675e6cfa6f0bb",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 301761,
"upload_time": "2024-10-02T13:01:00",
"upload_time_iso_8601": "2024-10-02T13:01:00.877035Z",
"url": "https://files.pythonhosted.org/packages/09/f8/7b226d4fb4863eb1a0a0923bdf023dfb14b9bc99a0fdffb9260524e06fe0/python_crfsuite-0.9.11-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "82b6334d7f67e5775d6fadf29240c83fb7aedd8d45138140adf749ca094762ac",
"md5": "b60dc09a0c197dacac5d5619eba78c45",
"sha256": "e0e1fad868fe15cb5bca7c0015995bd962de2f0b100e3e5b7dd3c14273fdc806"
},
"downloads": -1,
"filename": "python_crfsuite-0.9.11-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "b60dc09a0c197dacac5d5619eba78c45",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 319161,
"upload_time": "2024-10-02T13:01:02",
"upload_time_iso_8601": "2024-10-02T13:01:02.153231Z",
"url": "https://files.pythonhosted.org/packages/82/b6/334d7f67e5775d6fadf29240c83fb7aedd8d45138140adf749ca094762ac/python_crfsuite-0.9.11-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6696a8faa72b934c6502d29f71d4d7251fdfc387cd1a5e256650b2cbc66008f1",
"md5": "947a461e3db3de209c9a64a86a4d6d95",
"sha256": "bcb60d6ac04e6f7e64f02aceaea88b6ad4ffdc183c5301f7fd8b8a280c3efc8e"
},
"downloads": -1,
"filename": "python_crfsuite-0.9.11-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "947a461e3db3de209c9a64a86a4d6d95",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1184056,
"upload_time": "2024-10-02T13:01:03",
"upload_time_iso_8601": "2024-10-02T13:01:03.678800Z",
"url": "https://files.pythonhosted.org/packages/66/96/a8faa72b934c6502d29f71d4d7251fdfc387cd1a5e256650b2cbc66008f1/python_crfsuite-0.9.11-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "64852f09e1f6aed9e2f2b532e19a3de3fc81b6b9f982dc884d0c85f5b6e1c1e6",
"md5": "f3a585a6a1f5f248084f0ff2e356c05f",
"sha256": "27e6e9a3439c503884d6bb4311f9e7bb34cd4c5e83da28f8c8abcfa34332b2f7"
},
"downloads": -1,
"filename": "python_crfsuite-0.9.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "f3a585a6a1f5f248084f0ff2e356c05f",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1216296,
"upload_time": "2024-10-02T13:01:05",
"upload_time_iso_8601": "2024-10-02T13:01:05.631070Z",
"url": "https://files.pythonhosted.org/packages/64/85/2f09e1f6aed9e2f2b532e19a3de3fc81b6b9f982dc884d0c85f5b6e1c1e6/python_crfsuite-0.9.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4c0fa6f17d8ba1fff46db69c32fdd818a87c7ec91c489d77a96b4f7b5f16b9ca",
"md5": "a7bba0a7bd0a425bf69b0627652cf664",
"sha256": "3064a4902b18c8a0916e48db4f94bc323e9390b96ae41098674ceb36f107acee"
},
"downloads": -1,
"filename": "python_crfsuite-0.9.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "a7bba0a7bd0a425bf69b0627652cf664",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1232157,
"upload_time": "2024-10-02T13:01:07",
"upload_time_iso_8601": "2024-10-02T13:01:07.039488Z",
"url": "https://files.pythonhosted.org/packages/4c/0f/a6f17d8ba1fff46db69c32fdd818a87c7ec91c489d77a96b4f7b5f16b9ca/python_crfsuite-0.9.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5366206b27db342a62d58697d63e8b8d820d1107c7c49e7c3be55191bf16ceb8",
"md5": "8dcbc6be816c923f46d2952094244824",
"sha256": "cac7a8bb6f629dc42408f3df45a892010321ba539a30cecc54bdea8f05580003"
},
"downloads": -1,
"filename": "python_crfsuite-0.9.11-cp39-cp39-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "8dcbc6be816c923f46d2952094244824",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 2102304,
"upload_time": "2024-10-02T13:01:08",
"upload_time_iso_8601": "2024-10-02T13:01:08.444122Z",
"url": "https://files.pythonhosted.org/packages/53/66/206b27db342a62d58697d63e8b8d820d1107c7c49e7c3be55191bf16ceb8/python_crfsuite-0.9.11-cp39-cp39-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "833efc4b4087b7a52402c4f5460088c0bf4ab9b6aa331f29b9ef53fe183e2aff",
"md5": "f1e73e3ae16c74e0a9d864a1af62d6b9",
"sha256": "796b6b84d4af5b848786f05c378a32f08ef6a5c67dd929f9845f0f7217177db8"
},
"downloads": -1,
"filename": "python_crfsuite-0.9.11-cp39-cp39-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "f1e73e3ae16c74e0a9d864a1af62d6b9",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 2250605,
"upload_time": "2024-10-02T13:01:10",
"upload_time_iso_8601": "2024-10-02T13:01:10.337380Z",
"url": "https://files.pythonhosted.org/packages/83/3e/fc4b4087b7a52402c4f5460088c0bf4ab9b6aa331f29b9ef53fe183e2aff/python_crfsuite-0.9.11-cp39-cp39-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4208dad565049d00e686aa26ff372dc1a14a27ff336e24b243b3012dfc6e7714",
"md5": "f101023169f9a2932af118a1d4c8d170",
"sha256": "92ebc0f4291b6beae87eb6b9999c3381db5299852f7bdd88cdfca62d759630db"
},
"downloads": -1,
"filename": "python_crfsuite-0.9.11-cp39-cp39-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "f101023169f9a2932af118a1d4c8d170",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 2190582,
"upload_time": "2024-10-02T13:01:12",
"upload_time_iso_8601": "2024-10-02T13:01:12.088524Z",
"url": "https://files.pythonhosted.org/packages/42/08/dad565049d00e686aa26ff372dc1a14a27ff336e24b243b3012dfc6e7714/python_crfsuite-0.9.11-cp39-cp39-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5e99634694a4d45dcee478ab5c958492f21b298c927f0ba307b6b2b1a0978f4c",
"md5": "d39e1b3e0e2d236f92883db58ab5f001",
"sha256": "d6b4705cd7657efa8fc7742b09783537595944d18c0708e362252c2a9cd2a58d"
},
"downloads": -1,
"filename": "python_crfsuite-0.9.11-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "d39e1b3e0e2d236f92883db58ab5f001",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 280967,
"upload_time": "2024-10-02T13:01:13",
"upload_time_iso_8601": "2024-10-02T13:01:13.643341Z",
"url": "https://files.pythonhosted.org/packages/5e/99/634694a4d45dcee478ab5c958492f21b298c927f0ba307b6b2b1a0978f4c/python_crfsuite-0.9.11-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4931950bd2e96df785218aa5db5870ed96b48a5d5030fdd4528de084f0361852",
"md5": "efabbfd7754236463e259f71e9679b35",
"sha256": "c7aeec4be4056b0c6dd4a1357707c8d5b9c88b3f74e51d2f4d407692cad4877f"
},
"downloads": -1,
"filename": "python_crfsuite-0.9.11-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "efabbfd7754236463e259f71e9679b35",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 301523,
"upload_time": "2024-10-02T13:01:14",
"upload_time_iso_8601": "2024-10-02T13:01:14.900595Z",
"url": "https://files.pythonhosted.org/packages/49/31/950bd2e96df785218aa5db5870ed96b48a5d5030fdd4528de084f0361852/python_crfsuite-0.9.11-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ea179c64a2486de27fce7570c366eb723fd7a39dd7845119ee8fdd5051023671",
"md5": "30beb24920ddec9bb5e27e18f5b6b7c5",
"sha256": "6eff965ca70567396d822c9a35ea74b0f7edb27d9471524997bdabe7a6da5f5a"
},
"downloads": -1,
"filename": "python_crfsuite-0.9.11.tar.gz",
"has_sig": false,
"md5_digest": "30beb24920ddec9bb5e27e18f5b6b7c5",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 477721,
"upload_time": "2024-10-02T13:01:16",
"upload_time_iso_8601": "2024-10-02T13:01:16.646868Z",
"url": "https://files.pythonhosted.org/packages/ea/17/9c64a2486de27fce7570c366eb723fd7a39dd7845119ee8fdd5051023671/python_crfsuite-0.9.11.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-10-02 13:01:16",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "scrapinghub",
"github_project": "python-crfsuite",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"tox": true,
"lcname": "python-crfsuite"
}