fuzzyset2


Namefuzzyset2 JSON
Version 0.2.3 PyPI version JSON
download
home_pagehttps://github.com/alpae/fuzzyset/
SummaryA simple python fuzzyset implementation.
upload_time2024-03-06 07:53:23
maintainer
docs_urlNone
authorMichael Axiak, Adrian Altenhoff
requires_python>=3.6
licenseBSD
keywords fuzzyset fuzzy data structure
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ===========================================
fuzzyset - A fuzzy string set for python.
===========================================

Note
----

   This is a maintained fork of the unfortunately no longer maintained `fuzzyset package <https://github.com/axiak/fuzzyset>`_ package by
   Mike Axiak. This fork is available on PyPi as `fuzzyset2 <https://pypi.org/project/fuzzyset2>`_.

fuzzyset is a data structure that performs something akin to fulltext search
against data to determine likely misspellings and approximate string matching.

Usage
-----

The usage is simple. Just add a string to the set, and ask for it later
by using either ``.get`` or ``[]``::

   >>> a = fuzzyset.FuzzySet()
   >>> a.add("michael axiak")
   >>> a.get("micael asiak")
   [(0.8461538461538461, u'michael axiak')]

The result will be a list of ``(score, matched_value)`` tuples.
The score is between 0 and 1, with 1 being a perfect match.

For roughly 15% performance increase, there is also a Cython-implemented
version called ``cfuzzyset``. So you can write the following, akin to
``cStringIO`` and ``cPickle``::

    try:
        from cfuzzyset import cFuzzySet as FuzzySet
    except ImportError:
        from fuzzyset import FuzzySet

Construction Arguments
----------------------

 - iterable: An iterable that yields strings to initialize the data structure with
 - gram_size_lower: The lower bound of gram sizes to use, inclusive (see Theory of operation). Default: 2
 - gram_size_upper: The upper bound of gram sizes to use, inclusive (see Theory of operation). Default: 3
 - use_levenshtein: Whether or not to use the levenshtein distance to determine the match scoring. Default: True

Theory of operation
-------------------

Adding to the data structure
~~~~~~~~~~~~~~~~~~~~~~~~~~~~

First let's look at adding a string, 'michaelich' to an empty set. We first break apart the string into n-grams (strings of length
n). So trigrams of 'michaelich' would look like::

    '-mi'
    'mic'
    'ich'
    'cha'
    'hae'
    'ael'
    'eli'
    'lic'
    'ich'
    'ch-'

Note that fuzzyset will first normalize the string by removing non word characters except for spaces and commas and force
everything to be lowercase.

Next the fuzzyset essentially creates a reverse index on those grams. Maintaining a dictionary that says::

     'mic' -> (1, 0)
     'ich' -> (2, 0)
     ...

And there's a list that looks like::

    [(3.31, 'michaelich')]

Note that we maintain this reverse index for *all* grams from ``gram_size_lower`` to ``gram_size_upper`` in the constructor.
This becomes important in a second.

Retrieving
~~~~~~~~~~

To search the data structure, we take the n-grams of the query string and perform a reverse index look up. To illustrate,
let's consider looking up ``'michael'`` in our fictitious set containing ``'michaelich'`` where the ``gram_size_upper``
and ``gram_size_lower`` parameters are default (3 and 2 respectively).

We begin by considering first all trigrams (the value of ``gram_size_upper``). Those grams are::

   '-mi'
   'mic'
   'ich'
   'cha'
   'el-'

Then we create a list of any element in the set that has *at least one* occurrence of a trigram listed above. Note that
this is just a dictionary lookup 5 times. For each of these matched elements, we compute the `cosine similarity`_ between
each element and the query string. We then sort to get the most similar matched elements.

If ``use_levenshtein`` is false, then we return all top matched elements with the same cosine similarity.

If ``use_levenshtein`` is true, then we truncate the possible search space to 50, compute a score based on the levenshtein
distance (so that we handle transpositions), and return based on that.

In the event that none of the trigrams matched, we try the whole thing again with bigrams (note though that if there are no matches,
the failure to match will be quick). Bigram searching will always be slower because there will be a much larger set to order.

.. _cosine similarity: http://en.wikipedia.org/wiki/Cosine_similarity


Install
--------

``pip install fuzzyset2``

Afterwards, you can import the package simply with::

    try:
        from cfuzzyset import cFuzzySet as FuzzySet
    except ImportError:
        from fuzzyset import FuzzySet



License
-------

BSD

Author
--------

-  Mike Axiak <mike@axiak.net>
-  Adrian Altenhoff <adrian.altenhoff@inf.ethz.ch>

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/alpae/fuzzyset/",
    "name": "fuzzyset2",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": "",
    "keywords": "fuzzyset fuzzy data structure",
    "author": "Michael Axiak, Adrian Altenhoff",
    "author_email": "adrian.altenhoff@inf.ethz.ch",
    "download_url": "https://files.pythonhosted.org/packages/59/3f/7266ae730857828394f1c47e98b9315bec4ecabd614a28e8ee60e7d01158/fuzzyset2-0.2.3.tar.gz",
    "platform": null,
    "description": "===========================================\nfuzzyset - A fuzzy string set for python.\n===========================================\n\nNote\n----\n\n   This is a maintained fork of the unfortunately no longer maintained `fuzzyset package <https://github.com/axiak/fuzzyset>`_ package by\n   Mike Axiak. This fork is available on PyPi as `fuzzyset2 <https://pypi.org/project/fuzzyset2>`_.\n\nfuzzyset is a data structure that performs something akin to fulltext search\nagainst data to determine likely misspellings and approximate string matching.\n\nUsage\n-----\n\nThe usage is simple. Just add a string to the set, and ask for it later\nby using either ``.get`` or ``[]``::\n\n   >>> a = fuzzyset.FuzzySet()\n   >>> a.add(\"michael axiak\")\n   >>> a.get(\"micael asiak\")\n   [(0.8461538461538461, u'michael axiak')]\n\nThe result will be a list of ``(score, matched_value)`` tuples.\nThe score is between 0 and 1, with 1 being a perfect match.\n\nFor roughly 15% performance increase, there is also a Cython-implemented\nversion called ``cfuzzyset``. So you can write the following, akin to\n``cStringIO`` and ``cPickle``::\n\n    try:\n        from cfuzzyset import cFuzzySet as FuzzySet\n    except ImportError:\n        from fuzzyset import FuzzySet\n\nConstruction Arguments\n----------------------\n\n - iterable: An iterable that yields strings to initialize the data structure with\n - gram_size_lower: The lower bound of gram sizes to use, inclusive (see Theory of operation). Default: 2\n - gram_size_upper: The upper bound of gram sizes to use, inclusive (see Theory of operation). Default: 3\n - use_levenshtein: Whether or not to use the levenshtein distance to determine the match scoring. Default: True\n\nTheory of operation\n-------------------\n\nAdding to the data structure\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nFirst let's look at adding a string, 'michaelich' to an empty set. We first break apart the string into n-grams (strings of length\nn). So trigrams of 'michaelich' would look like::\n\n    '-mi'\n    'mic'\n    'ich'\n    'cha'\n    'hae'\n    'ael'\n    'eli'\n    'lic'\n    'ich'\n    'ch-'\n\nNote that fuzzyset will first normalize the string by removing non word characters except for spaces and commas and force\neverything to be lowercase.\n\nNext the fuzzyset essentially creates a reverse index on those grams. Maintaining a dictionary that says::\n\n     'mic' -> (1, 0)\n     'ich' -> (2, 0)\n     ...\n\nAnd there's a list that looks like::\n\n    [(3.31, 'michaelich')]\n\nNote that we maintain this reverse index for *all* grams from ``gram_size_lower`` to ``gram_size_upper`` in the constructor.\nThis becomes important in a second.\n\nRetrieving\n~~~~~~~~~~\n\nTo search the data structure, we take the n-grams of the query string and perform a reverse index look up. To illustrate,\nlet's consider looking up ``'michael'`` in our fictitious set containing ``'michaelich'`` where the ``gram_size_upper``\nand ``gram_size_lower`` parameters are default (3 and 2 respectively).\n\nWe begin by considering first all trigrams (the value of ``gram_size_upper``). Those grams are::\n\n   '-mi'\n   'mic'\n   'ich'\n   'cha'\n   'el-'\n\nThen we create a list of any element in the set that has *at least one* occurrence of a trigram listed above. Note that\nthis is just a dictionary lookup 5 times. For each of these matched elements, we compute the `cosine similarity`_ between\neach element and the query string. We then sort to get the most similar matched elements.\n\nIf ``use_levenshtein`` is false, then we return all top matched elements with the same cosine similarity.\n\nIf ``use_levenshtein`` is true, then we truncate the possible search space to 50, compute a score based on the levenshtein\ndistance (so that we handle transpositions), and return based on that.\n\nIn the event that none of the trigrams matched, we try the whole thing again with bigrams (note though that if there are no matches,\nthe failure to match will be quick). Bigram searching will always be slower because there will be a much larger set to order.\n\n.. _cosine similarity: http://en.wikipedia.org/wiki/Cosine_similarity\n\n\nInstall\n--------\n\n``pip install fuzzyset2``\n\nAfterwards, you can import the package simply with::\n\n    try:\n        from cfuzzyset import cFuzzySet as FuzzySet\n    except ImportError:\n        from fuzzyset import FuzzySet\n\n\n\nLicense\n-------\n\nBSD\n\nAuthor\n--------\n\n-  Mike Axiak <mike@axiak.net>\n-  Adrian Altenhoff <adrian.altenhoff@inf.ethz.ch>\n",
    "bugtrack_url": null,
    "license": "BSD",
    "summary": "A simple python fuzzyset implementation.",
    "version": "0.2.3",
    "project_urls": {
        "Homepage": "https://github.com/alpae/fuzzyset/"
    },
    "split_keywords": [
        "fuzzyset",
        "fuzzy",
        "data",
        "structure"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4b151c9285ef48cc326e4862d7524dbe0ab227de82c6bf5ae841c6f181ea5ec2",
                "md5": "3dc856de946d4fa1f75b6c97fc29b321",
                "sha256": "0699869e96e6ccf7c0daed9ab15d6cf90f9e24119f8231c4ede67a50374965e7"
            },
            "downloads": -1,
            "filename": "fuzzyset2-0.2.3-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3dc856de946d4fa1f75b6c97fc29b321",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 44185,
            "upload_time": "2024-03-06T07:52:30",
            "upload_time_iso_8601": "2024-03-06T07:52:30.745722Z",
            "url": "https://files.pythonhosted.org/packages/4b/15/1c9285ef48cc326e4862d7524dbe0ab227de82c6bf5ae841c6f181ea5ec2/fuzzyset2-0.2.3-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7bde28eb71be9b66b8d1e0f64f6126bbae71104eb8a59551e5b8f0edcabbf081",
                "md5": "b25047170ced46556a12b8dfb52533e5",
                "sha256": "c81e3eae8a3fc34c75ceff13506d92a3ade9d33585c6e5945385c99b4add0d0f"
            },
            "downloads": -1,
            "filename": "fuzzyset2-0.2.3-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "b25047170ced46556a12b8dfb52533e5",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 41719,
            "upload_time": "2024-03-06T07:52:32",
            "upload_time_iso_8601": "2024-03-06T07:52:32.818271Z",
            "url": "https://files.pythonhosted.org/packages/7b/de/28eb71be9b66b8d1e0f64f6126bbae71104eb8a59551e5b8f0edcabbf081/fuzzyset2-0.2.3-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2d91037f29c866ed108638e2442c5335aa791ac3cc5383243aa4d4d3ff459225",
                "md5": "67aaceac35e1c8f907edde4747efb45f",
                "sha256": "9bd56a8dc47a727773062d7c57846f99e416c5bfebf6c89e68c93df643e771c4"
            },
            "downloads": -1,
            "filename": "fuzzyset2-0.2.3-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "67aaceac35e1c8f907edde4747efb45f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 57228,
            "upload_time": "2024-03-06T07:52:33",
            "upload_time_iso_8601": "2024-03-06T07:52:33.729729Z",
            "url": "https://files.pythonhosted.org/packages/2d/91/037f29c866ed108638e2442c5335aa791ac3cc5383243aa4d4d3ff459225/fuzzyset2-0.2.3-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8a2ad43c13b61728c8ea72d86463b2ee20f4d03cedd657ba661a87242cf6c049",
                "md5": "e759be27d3609fd4532aaecc9d65ef1a",
                "sha256": "ce13c7cd19b6433c7756bd119507c81d0e8857a64400432f3752d899a55abe38"
            },
            "downloads": -1,
            "filename": "fuzzyset2-0.2.3-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "e759be27d3609fd4532aaecc9d65ef1a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 34592,
            "upload_time": "2024-03-06T07:52:36",
            "upload_time_iso_8601": "2024-03-06T07:52:36.436809Z",
            "url": "https://files.pythonhosted.org/packages/8a/2a/d43c13b61728c8ea72d86463b2ee20f4d03cedd657ba661a87242cf6c049/fuzzyset2-0.2.3-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "47695131b6640c4eebbc45635567ca3e4fd2d787d58f6618270e1c922833b396",
                "md5": "a1a4d5b8203dfcda909ae6c3993303a6",
                "sha256": "c8c13c0967cb40d864d9620b0d26ca066f4862bb34bac6fdd13c507094274394"
            },
            "downloads": -1,
            "filename": "fuzzyset2-0.2.3-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a1a4d5b8203dfcda909ae6c3993303a6",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 37405,
            "upload_time": "2024-03-06T07:52:37",
            "upload_time_iso_8601": "2024-03-06T07:52:37.979818Z",
            "url": "https://files.pythonhosted.org/packages/47/69/5131b6640c4eebbc45635567ca3e4fd2d787d58f6618270e1c922833b396/fuzzyset2-0.2.3-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "42d6980cb38a06ff8b0a37606c87462522111586fcf20e90925a7021dae1939c",
                "md5": "c326370f8e078939c5ac2ac4acc5040a",
                "sha256": "222e09dccf8af169ae321bd15a29139c0f210c88bf1ca84eebae770c5c7ceb05"
            },
            "downloads": -1,
            "filename": "fuzzyset2-0.2.3-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c326370f8e078939c5ac2ac4acc5040a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 43198,
            "upload_time": "2024-03-06T07:52:39",
            "upload_time_iso_8601": "2024-03-06T07:52:39.875105Z",
            "url": "https://files.pythonhosted.org/packages/42/d6/980cb38a06ff8b0a37606c87462522111586fcf20e90925a7021dae1939c/fuzzyset2-0.2.3-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d8e01a7ab08e29d7823acd9d686c315afa9b22e3624f760a2bcf07c1cc7a5921",
                "md5": "6a071762e537f5f598d24a43314c3ac7",
                "sha256": "3f793b8e5bd527324f01f997766434ff574a477d6a450e4dacd8b216c7ef17f9"
            },
            "downloads": -1,
            "filename": "fuzzyset2-0.2.3-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "6a071762e537f5f598d24a43314c3ac7",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 40814,
            "upload_time": "2024-03-06T07:52:40",
            "upload_time_iso_8601": "2024-03-06T07:52:40.947306Z",
            "url": "https://files.pythonhosted.org/packages/d8/e0/1a7ab08e29d7823acd9d686c315afa9b22e3624f760a2bcf07c1cc7a5921/fuzzyset2-0.2.3-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9749c1deb713ec3c10e905780642ebea7757158a46ae4f22f1d9070a755b491e",
                "md5": "2493574d1d70f661ddb062518284784b",
                "sha256": "522de5a1e6eb2211240bc0820539ff6c0329753f97ba4da8aab0466e1e697a0f"
            },
            "downloads": -1,
            "filename": "fuzzyset2-0.2.3-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2493574d1d70f661ddb062518284784b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 57843,
            "upload_time": "2024-03-06T07:52:43",
            "upload_time_iso_8601": "2024-03-06T07:52:43.512287Z",
            "url": "https://files.pythonhosted.org/packages/97/49/c1deb713ec3c10e905780642ebea7757158a46ae4f22f1d9070a755b491e/fuzzyset2-0.2.3-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a5a9f97f2bc96f425b4d5101e7fa704124aa745257c346601333701a69ea6da3",
                "md5": "978d8f6f51dad772503677f1c2e613ee",
                "sha256": "f41315c4b739d567496aa22d36aeba92b8eb5a8f2e0dcecb2e74af03bb6e3155"
            },
            "downloads": -1,
            "filename": "fuzzyset2-0.2.3-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "978d8f6f51dad772503677f1c2e613ee",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 34298,
            "upload_time": "2024-03-06T07:52:44",
            "upload_time_iso_8601": "2024-03-06T07:52:44.562089Z",
            "url": "https://files.pythonhosted.org/packages/a5/a9/f97f2bc96f425b4d5101e7fa704124aa745257c346601333701a69ea6da3/fuzzyset2-0.2.3-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c8952e50e7600fc524cc3ae2c9aaeee5f2d819aeb78f60dc5cdf6584af5f39aa",
                "md5": "65e0c12b9aca220678b16609da0c91f1",
                "sha256": "ef05ec7c2ee64ca5a1b1fb45905fb97ee576697b1ccfdc9a351f5262ac3c0c7a"
            },
            "downloads": -1,
            "filename": "fuzzyset2-0.2.3-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "65e0c12b9aca220678b16609da0c91f1",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 36971,
            "upload_time": "2024-03-06T07:52:47",
            "upload_time_iso_8601": "2024-03-06T07:52:47.085815Z",
            "url": "https://files.pythonhosted.org/packages/c8/95/2e50e7600fc524cc3ae2c9aaeee5f2d819aeb78f60dc5cdf6584af5f39aa/fuzzyset2-0.2.3-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1090ea1fc4e69360ce63ef91429e536bc002a9eb3fbc27b4bc18247ab5241c17",
                "md5": "7c36f0827afaf9ed2fde1357aadd3143",
                "sha256": "28a386aa74532bc5bb440dfa7d13e416f0c40ea5065fb98e1825626568d89071"
            },
            "downloads": -1,
            "filename": "fuzzyset2-0.2.3-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7c36f0827afaf9ed2fde1357aadd3143",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 43474,
            "upload_time": "2024-03-06T07:52:51",
            "upload_time_iso_8601": "2024-03-06T07:52:51.461275Z",
            "url": "https://files.pythonhosted.org/packages/10/90/ea1fc4e69360ce63ef91429e536bc002a9eb3fbc27b4bc18247ab5241c17/fuzzyset2-0.2.3-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7bd6e9b34ff770593858b966f94c419dfa3504a10c55be816109cf9823c259ef",
                "md5": "8db395a3f74c9949ea563ccfa500d724",
                "sha256": "68100fa6b6cf919b2bbe12123b9b1769652abbad27c00c0d298f53ba71a0869b"
            },
            "downloads": -1,
            "filename": "fuzzyset2-0.2.3-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "8db395a3f74c9949ea563ccfa500d724",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 40741,
            "upload_time": "2024-03-06T07:52:53",
            "upload_time_iso_8601": "2024-03-06T07:52:53.131895Z",
            "url": "https://files.pythonhosted.org/packages/7b/d6/e9b34ff770593858b966f94c419dfa3504a10c55be816109cf9823c259ef/fuzzyset2-0.2.3-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a5994ac2aba042c913577fd72a3836f3a4fdd6d2c521e74c988f25661bec2526",
                "md5": "a436d28cff94f39778820005c4068f66",
                "sha256": "bf9f7e847dfa3e9259815cb2fdeebe84057d63a7b6d81049cd6ec1d38ed33bde"
            },
            "downloads": -1,
            "filename": "fuzzyset2-0.2.3-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a436d28cff94f39778820005c4068f66",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 55954,
            "upload_time": "2024-03-06T07:52:56",
            "upload_time_iso_8601": "2024-03-06T07:52:56.220217Z",
            "url": "https://files.pythonhosted.org/packages/a5/99/4ac2aba042c913577fd72a3836f3a4fdd6d2c521e74c988f25661bec2526/fuzzyset2-0.2.3-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2ee1cb04341e2bdd42f17de0a48e0c5ee729f3ba27c20d596d853945f20c9c10",
                "md5": "fc90d6bd7b5ab9478a992e28fadb067e",
                "sha256": "5659da4ba10cc08471c4d8d84a82e8513639af7b04636a716a601fc55e5aaafe"
            },
            "downloads": -1,
            "filename": "fuzzyset2-0.2.3-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "fc90d6bd7b5ab9478a992e28fadb067e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 34425,
            "upload_time": "2024-03-06T07:52:58",
            "upload_time_iso_8601": "2024-03-06T07:52:58.862129Z",
            "url": "https://files.pythonhosted.org/packages/2e/e1/cb04341e2bdd42f17de0a48e0c5ee729f3ba27c20d596d853945f20c9c10/fuzzyset2-0.2.3-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4d7fe6a0277c4d3d319900dbc7158c5327c58f1b646f27c88076d0af1561f4ad",
                "md5": "5cd4085163128d1119c936198a7eb029",
                "sha256": "ee02b70b6367ea0c9a3d9e6f29902d7715a7ad60609af7512a3ee055d972c70f"
            },
            "downloads": -1,
            "filename": "fuzzyset2-0.2.3-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "5cd4085163128d1119c936198a7eb029",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 37008,
            "upload_time": "2024-03-06T07:52:59",
            "upload_time_iso_8601": "2024-03-06T07:52:59.994147Z",
            "url": "https://files.pythonhosted.org/packages/4d/7f/e6a0277c4d3d319900dbc7158c5327c58f1b646f27c88076d0af1561f4ad/fuzzyset2-0.2.3-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "30cb06b65c5ba327200cd94d999e19c382f61269a126e25f7db3a7f36990f975",
                "md5": "8e2651a65dc3c19c5526e789174f284a",
                "sha256": "ee6066f7867a2bee51a6c28ffcd1bd467b08f3d3208389d3fb15a04e7a113d63"
            },
            "downloads": -1,
            "filename": "fuzzyset2-0.2.3-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8e2651a65dc3c19c5526e789174f284a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 44260,
            "upload_time": "2024-03-06T07:53:02",
            "upload_time_iso_8601": "2024-03-06T07:53:02.432024Z",
            "url": "https://files.pythonhosted.org/packages/30/cb/06b65c5ba327200cd94d999e19c382f61269a126e25f7db3a7f36990f975/fuzzyset2-0.2.3-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1036ec47ced16ce28e69182853653f803cccc745749773ca0dc01d9c7639abd1",
                "md5": "99939477980c406fea2c5d4ef26b65b1",
                "sha256": "313b1ac734618ee92b7efb75c168ad1e280d26badeed1560f0b8d2148c2c9f62"
            },
            "downloads": -1,
            "filename": "fuzzyset2-0.2.3-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "99939477980c406fea2c5d4ef26b65b1",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 41960,
            "upload_time": "2024-03-06T07:53:03",
            "upload_time_iso_8601": "2024-03-06T07:53:03.473990Z",
            "url": "https://files.pythonhosted.org/packages/10/36/ec47ced16ce28e69182853653f803cccc745749773ca0dc01d9c7639abd1/fuzzyset2-0.2.3-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "80cd3bb0f697734f8a5d2c7b9fe5c0cec0d676842289c838e5a568f1b7696430",
                "md5": "5904689d4fde01ca3590f3bb552d8670",
                "sha256": "a7c31b1608759eca404a1903e234aebc254d4528ec42c5471ecf43a114a9ad18"
            },
            "downloads": -1,
            "filename": "fuzzyset2-0.2.3-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5904689d4fde01ca3590f3bb552d8670",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 57441,
            "upload_time": "2024-03-06T07:53:06",
            "upload_time_iso_8601": "2024-03-06T07:53:06.104192Z",
            "url": "https://files.pythonhosted.org/packages/80/cd/3bb0f697734f8a5d2c7b9fe5c0cec0d676842289c838e5a568f1b7696430/fuzzyset2-0.2.3-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "40c5b6faeea9edadb8395540d9af47f470818876d1ed07ab5f922313cc05668c",
                "md5": "befd8dbb0584247eb94a7d0be515b1d9",
                "sha256": "0808402ba4b24fc7a4a9957b630e7c1b0a00c445c899da795f529b2557759230"
            },
            "downloads": -1,
            "filename": "fuzzyset2-0.2.3-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "befd8dbb0584247eb94a7d0be515b1d9",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 35766,
            "upload_time": "2024-03-06T07:53:07",
            "upload_time_iso_8601": "2024-03-06T07:53:07.062923Z",
            "url": "https://files.pythonhosted.org/packages/40/c5/b6faeea9edadb8395540d9af47f470818876d1ed07ab5f922313cc05668c/fuzzyset2-0.2.3-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "167373398132e643259bf2153b9e753672410ee573e2f1141dc2e352d0275f39",
                "md5": "77cdabc7ffdd478dbec689a049d6ce32",
                "sha256": "042b09b75a4948164d024781cd111dde6cf8df4453ceeae4b881d0b57c6da9d1"
            },
            "downloads": -1,
            "filename": "fuzzyset2-0.2.3-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "77cdabc7ffdd478dbec689a049d6ce32",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 38723,
            "upload_time": "2024-03-06T07:53:09",
            "upload_time_iso_8601": "2024-03-06T07:53:09.353105Z",
            "url": "https://files.pythonhosted.org/packages/16/73/73398132e643259bf2153b9e753672410ee573e2f1141dc2e352d0275f39/fuzzyset2-0.2.3-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ebbb5b31357623f009f3d62a50664c11a36330fc7aca422e174676b2effbdb81",
                "md5": "6b9cb80689a95dc8b319eeca152a5ee9",
                "sha256": "1c343bae24f516669f5fa6d9a22737df68e838b2fc872099f16188aa125f2b75"
            },
            "downloads": -1,
            "filename": "fuzzyset2-0.2.3-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6b9cb80689a95dc8b319eeca152a5ee9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 45474,
            "upload_time": "2024-03-06T07:53:11",
            "upload_time_iso_8601": "2024-03-06T07:53:11.525741Z",
            "url": "https://files.pythonhosted.org/packages/eb/bb/5b31357623f009f3d62a50664c11a36330fc7aca422e174676b2effbdb81/fuzzyset2-0.2.3-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7a10aa12ad34377d66c1f0f0ca9965b6458f31cadc1ce7aee0b085970c1745b8",
                "md5": "e114eac538ffefd6d8e6dd09e6ece781",
                "sha256": "767dd09ac2458341190fe28d896376473cc8fc9b51870b6d549f8d75918644f3"
            },
            "downloads": -1,
            "filename": "fuzzyset2-0.2.3-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "e114eac538ffefd6d8e6dd09e6ece781",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 42695,
            "upload_time": "2024-03-06T07:53:13",
            "upload_time_iso_8601": "2024-03-06T07:53:13.695216Z",
            "url": "https://files.pythonhosted.org/packages/7a/10/aa12ad34377d66c1f0f0ca9965b6458f31cadc1ce7aee0b085970c1745b8/fuzzyset2-0.2.3-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3fe0bc5b4551e8e27e7d1cea7efb114e72dbf03f36dd911d7231ff59bb2c40cd",
                "md5": "532bae903b880f684f8643c1d2eb65f3",
                "sha256": "b03a2a751b9de4bcc84f63bbd57de616103c501da1432ad8bd856aea4e7d69b0"
            },
            "downloads": -1,
            "filename": "fuzzyset2-0.2.3-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "532bae903b880f684f8643c1d2eb65f3",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 57184,
            "upload_time": "2024-03-06T07:53:16",
            "upload_time_iso_8601": "2024-03-06T07:53:16.354181Z",
            "url": "https://files.pythonhosted.org/packages/3f/e0/bc5b4551e8e27e7d1cea7efb114e72dbf03f36dd911d7231ff59bb2c40cd/fuzzyset2-0.2.3-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "eb983994f1fca676aa5367e27b89aab05213a810b7aeda36d796f350deb9d087",
                "md5": "769f0a6f2a448e2cac93e4d04d1ec402",
                "sha256": "01714d542d5e1d0baf9de79c7a610f377aa823e3196613168f25e837462b1b7f"
            },
            "downloads": -1,
            "filename": "fuzzyset2-0.2.3-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "769f0a6f2a448e2cac93e4d04d1ec402",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 35760,
            "upload_time": "2024-03-06T07:53:18",
            "upload_time_iso_8601": "2024-03-06T07:53:18.954882Z",
            "url": "https://files.pythonhosted.org/packages/eb/98/3994f1fca676aa5367e27b89aab05213a810b7aeda36d796f350deb9d087/fuzzyset2-0.2.3-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "81a4377e3c5d0099b96bc79ea45c033a7a9ef5c2e18e5b2b0efa0f2c5fd13122",
                "md5": "85c390750ec6b6017969a46891e343f8",
                "sha256": "0b369505e4d97945507cde9c0f0389cd764f3abd34e9e4a7c486ace8fdaf4cb9"
            },
            "downloads": -1,
            "filename": "fuzzyset2-0.2.3-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "85c390750ec6b6017969a46891e343f8",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 38695,
            "upload_time": "2024-03-06T07:53:21",
            "upload_time_iso_8601": "2024-03-06T07:53:21.359064Z",
            "url": "https://files.pythonhosted.org/packages/81/a4/377e3c5d0099b96bc79ea45c033a7a9ef5c2e18e5b2b0efa0f2c5fd13122/fuzzyset2-0.2.3-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "593f7266ae730857828394f1c47e98b9315bec4ecabd614a28e8ee60e7d01158",
                "md5": "63b7b79842703fb4a3824a3eac24d0cb",
                "sha256": "7bd618dc9b1ca58a79cefe7ef04e5754057bc23d117874ab277655750e259650"
            },
            "downloads": -1,
            "filename": "fuzzyset2-0.2.3.tar.gz",
            "has_sig": false,
            "md5_digest": "63b7b79842703fb4a3824a3eac24d0cb",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6",
            "size": 323839,
            "upload_time": "2024-03-06T07:53:23",
            "upload_time_iso_8601": "2024-03-06T07:53:23.135939Z",
            "url": "https://files.pythonhosted.org/packages/59/3f/7266ae730857828394f1c47e98b9315bec4ecabd614a28e8ee60e7d01158/fuzzyset2-0.2.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-06 07:53:23",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "alpae",
    "github_project": "fuzzyset",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "fuzzyset2"
}
        
Elapsed time: 0.21049s