dedupe


Namededupe JSON
Version 2.0.22 PyPI version JSON
download
home_page
SummaryA python library for accurate and scaleable data deduplication and entity-resolution
upload_time2023-01-18 18:01:41
maintainer
docs_urlNone
author
requires_python>=3.7
licenseThe MIT License (MIT) Copyright (c) 2014 Forest Gregg, Derek Eder, DataMade and Contributors Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Dedupe Python Library

[![Tests Passing](https://github.com/dedupeio/dedupe/workflows/tests/badge.svg)](https://github.com/dedupeio/dedupe/actions?query=workflow%3Atests)[![codecov](https://codecov.io/gh/dedupeio/dedupe/branch/main/graph/badge.svg?token=aauKUrTEgh)](https://codecov.io/gh/dedupeio/dedupe)

_dedupe is a python library that uses machine learning to perform fuzzy matching, deduplication and entity resolution quickly on structured data._

__dedupe__ will help you: 

* __remove duplicate entries__ from a spreadsheet of names and addresses
* __link a list__ with customer information to another with order history, even without unique customer IDs
* take a database of campaign contributions and __figure out which ones were made by the same person__, even if the names were entered slightly differently for each record

dedupe takes in human training data and comes up with the best rules for your dataset to quickly and automatically find similar records, even with very large databases.

## Important links
* Documentation: https://docs.dedupe.io/
* Repository: https://github.com/dedupeio/dedupe
* Issues: https://github.com/dedupeio/dedupe/issues
* Mailing list: https://groups.google.com/forum/#!forum/open-source-deduplication
* Examples: https://github.com/dedupeio/dedupe-examples

## dedupe library consulting

If you or your organization would like professional assistance in working with the dedupe library, Dedupe.io LLC offers consulting services. [Read more about pricing and available services here](https://dedupe.io/pricing/#consulting).

## Tools built with dedupe

### [Dedupe.io](https://dedupe.io/)
A cloud service powered by the dedupe library for de-duplicating and finding matches in your data. It provides a step-by-step wizard for uploading your data, setting up a model, training, clustering and reviewing the results.

[Dedupe.io](https://dedupe.io/) also supports record linkage across data sources and continuous matching and training through an [API](https://apidocs.dedupe.io/en/latest/).

For more, see the [Dedupe.io product site](https://dedupe.io/), [tutorials on how to use it](https://dedupe.io/tutorial/intro-to-dedupe-io.html), and [differences between it and the dedupe library](https://dedupe.io/documentation/should-i-use-dedupeio-or-the-dedupe-python-library.html).

Dedupe is well adopted by the Python community. Check out this [blogpost](https://medium.com/district-data-labs/basics-of-entity-resolution-with-python-and-dedupe-bc87440b64d4),
a YouTube video on how to use [Dedupe with Python](https://youtu.be/McsTWXeURhA) and a Youtube video on how to apply [Dedupe at scale using Spark](https://youtu.be/q9HPUYmiwjE?t=2704).


### [csvdedupe](https://github.com/dedupeio/csvdedupe)
Command line tool for de-duplicating and [linking](https://github.com/dedupeio/csvdedupe#csvlink-usage) CSV files. Read about it on [Source Knight-Mozilla OpenNews](https://source.opennews.org/en-US/articles/introducing-cvsdedupe/).

## Installation

### Using dedupe

If you only want to use dedupe, install it this way:

```bash
pip install dedupe
```

Familiarize yourself with [dedupe's API](https://docs.dedupe.io/en/latest/API-documentation.html), and get started on your project. Need inspiration? Have a look at [some examples](https://github.com/dedupeio/dedupe-examples).

### Developing dedupe

We recommend using [virtualenv](http://virtualenv.readthedocs.org/en/latest/virtualenv.html) and [virtualenvwrapper](http://virtualenvwrapper.readthedocs.org/en/latest/install.html) for working in a virtualized development environment. [Read how to set up virtualenv](http://docs.python-guide.org/en/latest/dev/virtualenvs/).

Once you have virtualenvwrapper set up,

```bash
mkvirtualenv dedupe
git clone https://github.com/dedupeio/dedupe.git
cd dedupe
pip install -e . --config-settings editable_mode=compat
pip install -r requirements.txt
```

If these tests pass, then everything should have been installed correctly!

```bash
pytest
```

Afterwards, whenever you want to work on dedupe,

```bash
workon dedupe
```

## Testing
Unit tests of core dedupe functions
```bash
pytest
```

#### Test using canonical dataset from Bilenko's research
  
Using Deduplication
```bash
python -m pip install -e ./benchmarks
python benchmarks/benchmarks/canonical.py
```

Using Record Linkage
```bash
python -m pip install -e ./benchmarks
python benchmarks/benchmarks/canonical_matching.py
```


## Team

* Forest Gregg, DataMade
* Derek Eder, DataMade

## Credits

Dedupe is based on Mikhail Yuryevich Bilenko's Ph.D. dissertation: [*Learnable Similarity Functions and their Application to Record Linkage and Clustering*](http://www.cs.utexas.edu/~ml/papers/marlin-dissertation-06.pdf).

## Errors / Bugs

If something is not behaving intuitively, it is a bug, and should be reported.
[Report it here](https://github.com/dedupeio/dedupe/issues)


## Note on Patches/Pull Requests
 
* Fork the project.
* Make your feature addition or bug fix.
* Send us a pull request. Bonus points for topic branches.

## Copyright

Copyright (c) 2022 Forest Gregg and Derek Eder. Released under the [MIT License](https://github.com/dedupeio/dedupe/blob/main/LICENSE).

Third-party copyright in this distribution is noted where applicable.

## Citing Dedupe
If you use Dedupe in an academic work, please give this citation:

Forest Gregg and Derek Eder. 2022. Dedupe. https://github.com/dedupeio/dedupe.

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "dedupe",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "",
    "keywords": "",
    "author": "",
    "author_email": "Forest Gregg <fgregg@datamade.us>",
    "download_url": "https://files.pythonhosted.org/packages/f7/ec/dd0461a9892761a794dadba449476d5309e5be825d3abf3a65fe0b4d98d3/dedupe-2.0.22.tar.gz",
    "platform": null,
    "description": "# Dedupe Python Library\n\n[![Tests Passing](https://github.com/dedupeio/dedupe/workflows/tests/badge.svg)](https://github.com/dedupeio/dedupe/actions?query=workflow%3Atests)[![codecov](https://codecov.io/gh/dedupeio/dedupe/branch/main/graph/badge.svg?token=aauKUrTEgh)](https://codecov.io/gh/dedupeio/dedupe)\n\n_dedupe is a python library that uses machine learning to perform fuzzy matching, deduplication and entity resolution quickly on structured data._\n\n__dedupe__ will help you: \n\n* __remove duplicate entries__ from a spreadsheet of names and addresses\n* __link a list__ with customer information to another with order history, even without unique customer IDs\n* take a database of campaign contributions and __figure out which ones were made by the same person__, even if the names were entered slightly differently for each record\n\ndedupe takes in human training data and comes up with the best rules for your dataset to quickly and automatically find similar records, even with very large databases.\n\n## Important links\n* Documentation: https://docs.dedupe.io/\n* Repository: https://github.com/dedupeio/dedupe\n* Issues: https://github.com/dedupeio/dedupe/issues\n* Mailing list: https://groups.google.com/forum/#!forum/open-source-deduplication\n* Examples: https://github.com/dedupeio/dedupe-examples\n\n## dedupe library consulting\n\nIf you or your organization would like professional assistance in working with the dedupe library, Dedupe.io LLC offers consulting services. [Read more about pricing and available services here](https://dedupe.io/pricing/#consulting).\n\n## Tools built with dedupe\n\n### [Dedupe.io](https://dedupe.io/)\nA cloud service powered by the dedupe library for de-duplicating and finding matches in your data. It provides a step-by-step wizard for uploading your data, setting up a model, training, clustering and reviewing the results.\n\n[Dedupe.io](https://dedupe.io/) also supports record linkage across data sources and continuous matching and training through an [API](https://apidocs.dedupe.io/en/latest/).\n\nFor more, see the [Dedupe.io product site](https://dedupe.io/), [tutorials on how to use it](https://dedupe.io/tutorial/intro-to-dedupe-io.html), and [differences between it and the dedupe library](https://dedupe.io/documentation/should-i-use-dedupeio-or-the-dedupe-python-library.html).\n\nDedupe is well adopted by the Python community. Check out this [blogpost](https://medium.com/district-data-labs/basics-of-entity-resolution-with-python-and-dedupe-bc87440b64d4),\na YouTube video on how to use [Dedupe with Python](https://youtu.be/McsTWXeURhA) and a Youtube video on how to apply [Dedupe at scale using Spark](https://youtu.be/q9HPUYmiwjE?t=2704).\n\n\n### [csvdedupe](https://github.com/dedupeio/csvdedupe)\nCommand line tool for de-duplicating and [linking](https://github.com/dedupeio/csvdedupe#csvlink-usage) CSV files. Read about it on [Source Knight-Mozilla OpenNews](https://source.opennews.org/en-US/articles/introducing-cvsdedupe/).\n\n## Installation\n\n### Using dedupe\n\nIf you only want to use dedupe, install it this way:\n\n```bash\npip install dedupe\n```\n\nFamiliarize yourself with [dedupe's API](https://docs.dedupe.io/en/latest/API-documentation.html), and get started on your project. Need inspiration? Have a look at [some examples](https://github.com/dedupeio/dedupe-examples).\n\n### Developing dedupe\n\nWe recommend using [virtualenv](http://virtualenv.readthedocs.org/en/latest/virtualenv.html) and [virtualenvwrapper](http://virtualenvwrapper.readthedocs.org/en/latest/install.html) for working in a virtualized development environment. [Read how to set up virtualenv](http://docs.python-guide.org/en/latest/dev/virtualenvs/).\n\nOnce you have virtualenvwrapper set up,\n\n```bash\nmkvirtualenv dedupe\ngit clone https://github.com/dedupeio/dedupe.git\ncd dedupe\npip install -e . --config-settings editable_mode=compat\npip install -r requirements.txt\n```\n\nIf these tests pass, then everything should have been installed correctly!\n\n```bash\npytest\n```\n\nAfterwards, whenever you want to work on dedupe,\n\n```bash\nworkon dedupe\n```\n\n## Testing\nUnit tests of core dedupe functions\n```bash\npytest\n```\n\n#### Test using canonical dataset from Bilenko's research\n  \nUsing Deduplication\n```bash\npython -m pip install -e ./benchmarks\npython benchmarks/benchmarks/canonical.py\n```\n\nUsing Record Linkage\n```bash\npython -m pip install -e ./benchmarks\npython benchmarks/benchmarks/canonical_matching.py\n```\n\n\n## Team\n\n* Forest Gregg, DataMade\n* Derek Eder, DataMade\n\n## Credits\n\nDedupe is based on Mikhail Yuryevich Bilenko's Ph.D. dissertation: [*Learnable Similarity Functions and their Application to Record Linkage and Clustering*](http://www.cs.utexas.edu/~ml/papers/marlin-dissertation-06.pdf).\n\n## Errors / Bugs\n\nIf something is not behaving intuitively, it is a bug, and should be reported.\n[Report it here](https://github.com/dedupeio/dedupe/issues)\n\n\n## Note on Patches/Pull Requests\n \n* Fork the project.\n* Make your feature addition or bug fix.\n* Send us a pull request. Bonus points for topic branches.\n\n## Copyright\n\nCopyright (c) 2022 Forest Gregg and Derek Eder. Released under the [MIT License](https://github.com/dedupeio/dedupe/blob/main/LICENSE).\n\nThird-party copyright in this distribution is noted where applicable.\n\n## Citing Dedupe\nIf you use Dedupe in an academic work, please give this citation:\n\nForest Gregg and Derek Eder. 2022. Dedupe. https://github.com/dedupeio/dedupe.\n",
    "bugtrack_url": null,
    "license": "The MIT License (MIT)  Copyright (c) 2014 Forest Gregg, Derek Eder, DataMade and Contributors  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:  The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ",
    "summary": "A python library for accurate and scaleable data deduplication and entity-resolution",
    "version": "2.0.22",
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f4318eb3fc91cbe3cd464d8c41ab7ab1d615b1c08147393a7b9294ec7ce2edf3",
                "md5": "f46bdd14bcc8e95644855bb2c5cadbd9",
                "sha256": "701431d5af60fcca532a94b1de6a4ec3ac53189ba9935d3a9f4b28137f77dd33"
            },
            "downloads": -1,
            "filename": "dedupe-2.0.22-cp310-cp310-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "f46bdd14bcc8e95644855bb2c5cadbd9",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 102312,
            "upload_time": "2023-01-18T18:08:33",
            "upload_time_iso_8601": "2023-01-18T18:08:33.275573Z",
            "url": "https://files.pythonhosted.org/packages/f4/31/8eb3fc91cbe3cd464d8c41ab7ab1d615b1c08147393a7b9294ec7ce2edf3/dedupe-2.0.22-cp310-cp310-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6d4b57579f2ca58b79b8b125c4af06e56bd105542ae0689602e2f9ac63b72313",
                "md5": "0d76361542865b5cdb43bbc942628162",
                "sha256": "2b523213d811cd1f7f841a973a97fd5fac0c55de64f06be8e38dc40b2b653c62"
            },
            "downloads": -1,
            "filename": "dedupe-2.0.22-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0d76361542865b5cdb43bbc942628162",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 92249,
            "upload_time": "2023-01-18T18:08:34",
            "upload_time_iso_8601": "2023-01-18T18:08:34.516982Z",
            "url": "https://files.pythonhosted.org/packages/6d/4b/57579f2ca58b79b8b125c4af06e56bd105542ae0689602e2f9ac63b72313/dedupe-2.0.22-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3bf7e669f2a801ad45492f7f9da013ccbf9ee95ddf6e04655ce0dc71d7b5da50",
                "md5": "eee437225ba3d7de27dcc63a0cf6226b",
                "sha256": "2aebd8979ba73e5e25565f56d8b08854932f18e7d8a9e7d1e1d0d3ae34a3b4e7"
            },
            "downloads": -1,
            "filename": "dedupe-2.0.22-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "eee437225ba3d7de27dcc63a0cf6226b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 92296,
            "upload_time": "2023-01-18T18:08:36",
            "upload_time_iso_8601": "2023-01-18T18:08:36.373010Z",
            "url": "https://files.pythonhosted.org/packages/3b/f7/e669f2a801ad45492f7f9da013ccbf9ee95ddf6e04655ce0dc71d7b5da50/dedupe-2.0.22-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e1733a040e0deaf4caabbb8d3845ee46f1943f062765d34526b05a9bf0aa87c7",
                "md5": "2b02410442da34d7c89f2e0f66532c02",
                "sha256": "07e0aa08a5f3c058c3b5ea2d52c026c3edcf80085261f355131283dd73651190"
            },
            "downloads": -1,
            "filename": "dedupe-2.0.22-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "2b02410442da34d7c89f2e0f66532c02",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 130873,
            "upload_time": "2023-01-18T18:01:04",
            "upload_time_iso_8601": "2023-01-18T18:01:04.415564Z",
            "url": "https://files.pythonhosted.org/packages/e1/73/3a040e0deaf4caabbb8d3845ee46f1943f062765d34526b05a9bf0aa87c7/dedupe-2.0.22-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fb3367de4913f351d9dac9e593d04bed9812aa2034d72e3e50b41f7444bf4d99",
                "md5": "834f2240141166116fcae07468ebf979",
                "sha256": "51751915a1ec63432b8ed9e1415744b88071a1c53d3b1a0d37f6bc6bc6e3f82f"
            },
            "downloads": -1,
            "filename": "dedupe-2.0.22-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "834f2240141166116fcae07468ebf979",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 133311,
            "upload_time": "2023-01-18T18:01:06",
            "upload_time_iso_8601": "2023-01-18T18:01:06.395527Z",
            "url": "https://files.pythonhosted.org/packages/fb/33/67de4913f351d9dac9e593d04bed9812aa2034d72e3e50b41f7444bf4d99/dedupe-2.0.22-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": "3302ff386d554e55e43667216ea10810d6069588f1f779793cdd29aa9a85f1bb",
                "md5": "35a806e2cd923133e9d490bafdc3f490",
                "sha256": "c06ab4d29afbf652f03ed81b05d8394ac4e8f34644a363372f9024543af7cfd3"
            },
            "downloads": -1,
            "filename": "dedupe-2.0.22-cp310-cp310-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "35a806e2cd923133e9d490bafdc3f490",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 134528,
            "upload_time": "2023-01-18T18:01:08",
            "upload_time_iso_8601": "2023-01-18T18:01:08.045138Z",
            "url": "https://files.pythonhosted.org/packages/33/02/ff386d554e55e43667216ea10810d6069588f1f779793cdd29aa9a85f1bb/dedupe-2.0.22-cp310-cp310-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fb074945804283a3c9bc096ed24e9c88139eda855c0542d57ddecc0e8c508382",
                "md5": "37b8c26824e153e7d998bf8e6f2f5702",
                "sha256": "87b931985f22f396a18fcfe515fcfd9df199e7fa841aa4ec3341e775e8f6368d"
            },
            "downloads": -1,
            "filename": "dedupe-2.0.22-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "37b8c26824e153e7d998bf8e6f2f5702",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 136837,
            "upload_time": "2023-01-18T18:01:09",
            "upload_time_iso_8601": "2023-01-18T18:01:09.445230Z",
            "url": "https://files.pythonhosted.org/packages/fb/07/4945804283a3c9bc096ed24e9c88139eda855c0542d57ddecc0e8c508382/dedupe-2.0.22-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "adde8399cb4555962d15c193555f46302d785c9e3fba3a5e9c509e9664effa8b",
                "md5": "d688dfc45687cf42e8b5762894e276d2",
                "sha256": "e83beae26924864fb8e5ae26e16b59ddf22fb853aa7592f3bcc6be3e05c6600e"
            },
            "downloads": -1,
            "filename": "dedupe-2.0.22-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "d688dfc45687cf42e8b5762894e276d2",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 93296,
            "upload_time": "2023-01-18T18:08:33",
            "upload_time_iso_8601": "2023-01-18T18:08:33.794316Z",
            "url": "https://files.pythonhosted.org/packages/ad/de/8399cb4555962d15c193555f46302d785c9e3fba3a5e9c509e9664effa8b/dedupe-2.0.22-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e912336c8380cf383abf33190796a72dc118e2a730afd3e730767cfd602fe36c",
                "md5": "9a2117f04cd79a9b5234608f803b1483",
                "sha256": "a3f59447b8b77347fed5e88aa897d40fd0925b4405673db5c7912a11ed0105d1"
            },
            "downloads": -1,
            "filename": "dedupe-2.0.22-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "9a2117f04cd79a9b5234608f803b1483",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 94546,
            "upload_time": "2023-01-18T18:08:35",
            "upload_time_iso_8601": "2023-01-18T18:08:35.383911Z",
            "url": "https://files.pythonhosted.org/packages/e9/12/336c8380cf383abf33190796a72dc118e2a730afd3e730767cfd602fe36c/dedupe-2.0.22-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b3ff0ae6f049a0f3c725e69b6269d77a5c86ee6a70149f92246c16da0e9e1e1d",
                "md5": "a630373b8cdb8a43ee080474b6a36bb5",
                "sha256": "1395064a0dbb95de722f306a5eb16d31b21574e713f95a656bc8f2d74c068c24"
            },
            "downloads": -1,
            "filename": "dedupe-2.0.22-cp311-cp311-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "a630373b8cdb8a43ee080474b6a36bb5",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 102238,
            "upload_time": "2023-01-18T18:08:38",
            "upload_time_iso_8601": "2023-01-18T18:08:38.323029Z",
            "url": "https://files.pythonhosted.org/packages/b3/ff/0ae6f049a0f3c725e69b6269d77a5c86ee6a70149f92246c16da0e9e1e1d/dedupe-2.0.22-cp311-cp311-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f3a446729b661f320b4badf31f1545b95c5dbc06ec36dc6652af3ef731cd51dd",
                "md5": "1ccb0df2066a03866f3d3a816a962099",
                "sha256": "5470aa5f10bdb018dd7dc07087b6b4b2b9703a610fad1c716e83254be9879993"
            },
            "downloads": -1,
            "filename": "dedupe-2.0.22-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1ccb0df2066a03866f3d3a816a962099",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 92264,
            "upload_time": "2023-01-18T18:08:40",
            "upload_time_iso_8601": "2023-01-18T18:08:40.065747Z",
            "url": "https://files.pythonhosted.org/packages/f3/a4/46729b661f320b4badf31f1545b95c5dbc06ec36dc6652af3ef731cd51dd/dedupe-2.0.22-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b403cfba41191f64a760ac98599e423d448807acbcb2c404feb9c218171b7b0d",
                "md5": "336b6a612e51b1b378e5bb56ccb2e765",
                "sha256": "4ba3bad7ff2b7bc80166e60511f4ef0c0fb87c9370b4a85b86ffc369e51403a6"
            },
            "downloads": -1,
            "filename": "dedupe-2.0.22-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "336b6a612e51b1b378e5bb56ccb2e765",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 92230,
            "upload_time": "2023-01-18T18:08:42",
            "upload_time_iso_8601": "2023-01-18T18:08:42.414174Z",
            "url": "https://files.pythonhosted.org/packages/b4/03/cfba41191f64a760ac98599e423d448807acbcb2c404feb9c218171b7b0d/dedupe-2.0.22-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a5af0ea2aeb68223639db9221d632b4e18dd36c9dc1c3413ec8ab81ca7f53bfe",
                "md5": "b6ec78e061ff70ab7575c2f873e23d76",
                "sha256": "2a842289233365bb60e00fb306257f1e465e024456fdae02ddfa4da9f1eb75d6"
            },
            "downloads": -1,
            "filename": "dedupe-2.0.22-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "b6ec78e061ff70ab7575c2f873e23d76",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 132006,
            "upload_time": "2023-01-18T18:01:10",
            "upload_time_iso_8601": "2023-01-18T18:01:10.791166Z",
            "url": "https://files.pythonhosted.org/packages/a5/af/0ea2aeb68223639db9221d632b4e18dd36c9dc1c3413ec8ab81ca7f53bfe/dedupe-2.0.22-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e226118fc7af3a1bbf441b207c2b76e0bee89adfb7a73fee081e8eed7ebd6a9e",
                "md5": "5e0845356c72228e97e1468c3ce326d5",
                "sha256": "d6a7a39eef7156ab5acc07a5ff58e113b1d0221e63d0107a1721c16743a2074e"
            },
            "downloads": -1,
            "filename": "dedupe-2.0.22-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5e0845356c72228e97e1468c3ce326d5",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 135649,
            "upload_time": "2023-01-18T18:01:11",
            "upload_time_iso_8601": "2023-01-18T18:01:11.978073Z",
            "url": "https://files.pythonhosted.org/packages/e2/26/118fc7af3a1bbf441b207c2b76e0bee89adfb7a73fee081e8eed7ebd6a9e/dedupe-2.0.22-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": "989e3a33d7665ff322e65bebbea100e9a7e649dc76936ae6a595a3d3cf2208f2",
                "md5": "f1a346d795914cfbe004a6f27d69d2bd",
                "sha256": "59c0450415079ca13b0cbcab65cc4e84c66bf7bd36054263548890ba3f32dbc2"
            },
            "downloads": -1,
            "filename": "dedupe-2.0.22-cp311-cp311-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "f1a346d795914cfbe004a6f27d69d2bd",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 134969,
            "upload_time": "2023-01-18T18:01:13",
            "upload_time_iso_8601": "2023-01-18T18:01:13.149140Z",
            "url": "https://files.pythonhosted.org/packages/98/9e/3a33d7665ff322e65bebbea100e9a7e649dc76936ae6a595a3d3cf2208f2/dedupe-2.0.22-cp311-cp311-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6ab785c0341933f6ca030ec9bb6b5088fd2f2c061178f261e8ec6689932e8aa8",
                "md5": "21935c708e502d25e4c7e4190264a418",
                "sha256": "658483cdf7a55160c39222c4db8a45331d7103642a43b09e4166dfca0d696414"
            },
            "downloads": -1,
            "filename": "dedupe-2.0.22-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "21935c708e502d25e4c7e4190264a418",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 138305,
            "upload_time": "2023-01-18T18:01:14",
            "upload_time_iso_8601": "2023-01-18T18:01:14.622561Z",
            "url": "https://files.pythonhosted.org/packages/6a/b7/85c0341933f6ca030ec9bb6b5088fd2f2c061178f261e8ec6689932e8aa8/dedupe-2.0.22-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d5f74f9970803ad6e0cba12c70c489c8038e951aec976a971ec1fb282cbfb89c",
                "md5": "5a687eef5a3d013a0e15029ff48b24c5",
                "sha256": "a1655abf2807d2d60f4885f96cc9f83fd4fe8cc6da54a838b7c114df895dc96b"
            },
            "downloads": -1,
            "filename": "dedupe-2.0.22-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "5a687eef5a3d013a0e15029ff48b24c5",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 93136,
            "upload_time": "2023-01-18T18:08:37",
            "upload_time_iso_8601": "2023-01-18T18:08:37.300217Z",
            "url": "https://files.pythonhosted.org/packages/d5/f7/4f9970803ad6e0cba12c70c489c8038e951aec976a971ec1fb282cbfb89c/dedupe-2.0.22-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c14e581cf31785e52f871767b51db79045d177caccbacf7483942c7b72d08243",
                "md5": "770fc73800e82267f65bfbea5612742c",
                "sha256": "8da0db24e12de62feddb39cd414c17b7bc57d925dbfe14c0cecae0e0c7c29945"
            },
            "downloads": -1,
            "filename": "dedupe-2.0.22-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "770fc73800e82267f65bfbea5612742c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 94334,
            "upload_time": "2023-01-18T18:08:39",
            "upload_time_iso_8601": "2023-01-18T18:08:39.247059Z",
            "url": "https://files.pythonhosted.org/packages/c1/4e/581cf31785e52f871767b51db79045d177caccbacf7483942c7b72d08243/dedupe-2.0.22-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2eb68b0bac0f25a9c19223fe8f591873254f6a52959dff568ecb16f5313072d9",
                "md5": "c2cfc0e35b1a74c97cfe94b8eda925c5",
                "sha256": "bc826442f002cf786de26170438b1580d44b716267af7a91eb309338b5ed6c21"
            },
            "downloads": -1,
            "filename": "dedupe-2.0.22-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c2cfc0e35b1a74c97cfe94b8eda925c5",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 92170,
            "upload_time": "2023-01-18T18:08:44",
            "upload_time_iso_8601": "2023-01-18T18:08:44.099162Z",
            "url": "https://files.pythonhosted.org/packages/2e/b6/8b0bac0f25a9c19223fe8f591873254f6a52959dff568ecb16f5313072d9/dedupe-2.0.22-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3962ad8ff42c5b8e88f0a105495e255af94aca8557890797bedcbdc8cc469f50",
                "md5": "8d5084cc27a59f2888b60bebaf71f399",
                "sha256": "488006e7238b740da5a7ac11ab4428618dbfda2de9ce88ae655beb2d5093c173"
            },
            "downloads": -1,
            "filename": "dedupe-2.0.22-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "8d5084cc27a59f2888b60bebaf71f399",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 129432,
            "upload_time": "2023-01-18T18:01:15",
            "upload_time_iso_8601": "2023-01-18T18:01:15.842782Z",
            "url": "https://files.pythonhosted.org/packages/39/62/ad8ff42c5b8e88f0a105495e255af94aca8557890797bedcbdc8cc469f50/dedupe-2.0.22-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "700991bd11a75c09fc8312440740a6cc7a29ef9a2192b5da4018b022dc6c2938",
                "md5": "24d70e76fa1091a52e7b6d7b5fa872a7",
                "sha256": "e4eabe918047b8ac7f1fd5bb9a1a01e03060a5dbe4895b724bfbd3f3a101dac8"
            },
            "downloads": -1,
            "filename": "dedupe-2.0.22-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "24d70e76fa1091a52e7b6d7b5fa872a7",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 131957,
            "upload_time": "2023-01-18T18:01:17",
            "upload_time_iso_8601": "2023-01-18T18:01:17.230826Z",
            "url": "https://files.pythonhosted.org/packages/70/09/91bd11a75c09fc8312440740a6cc7a29ef9a2192b5da4018b022dc6c2938/dedupe-2.0.22-cp37-cp37m-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": "915dfa33aff5a19a9302c36e082d1c88d0f7c9c9a5acfb166200793fc4a37a35",
                "md5": "61820fda815b40259b415efdc67256a7",
                "sha256": "109466b620a6a67e8931486c8c243b92d7df88ef7b8325bc7989b5ce364a6897"
            },
            "downloads": -1,
            "filename": "dedupe-2.0.22-cp37-cp37m-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "61820fda815b40259b415efdc67256a7",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 132668,
            "upload_time": "2023-01-18T18:01:18",
            "upload_time_iso_8601": "2023-01-18T18:01:18.863172Z",
            "url": "https://files.pythonhosted.org/packages/91/5d/fa33aff5a19a9302c36e082d1c88d0f7c9c9a5acfb166200793fc4a37a35/dedupe-2.0.22-cp37-cp37m-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4b43bdef94847308e61604c11ab62b47d213954eb527bb7ef83779196eebec2a",
                "md5": "bd1152e43d48cf35284f7551e12e7498",
                "sha256": "42a77ee0012d9b971254e4171ad36cf4cf8e70e3329ef68c34eb1a84e74cbc41"
            },
            "downloads": -1,
            "filename": "dedupe-2.0.22-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bd1152e43d48cf35284f7551e12e7498",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 134766,
            "upload_time": "2023-01-18T18:01:20",
            "upload_time_iso_8601": "2023-01-18T18:01:20.157798Z",
            "url": "https://files.pythonhosted.org/packages/4b/43/bdef94847308e61604c11ab62b47d213954eb527bb7ef83779196eebec2a/dedupe-2.0.22-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "405bd6c9188dd2b9a8c1f83da3dbb38abf1625751dd00e970591de4ade669d12",
                "md5": "2c9f004ad87d206c3f8ab7c1bdb2a515",
                "sha256": "8cfa75a58150626fc99eea7b503dd38fec1fd07f33f994d0531b9a5848bfeb7f"
            },
            "downloads": -1,
            "filename": "dedupe-2.0.22-cp37-cp37m-win32.whl",
            "has_sig": false,
            "md5_digest": "2c9f004ad87d206c3f8ab7c1bdb2a515",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 93215,
            "upload_time": "2023-01-18T18:08:41",
            "upload_time_iso_8601": "2023-01-18T18:08:41.295809Z",
            "url": "https://files.pythonhosted.org/packages/40/5b/d6c9188dd2b9a8c1f83da3dbb38abf1625751dd00e970591de4ade669d12/dedupe-2.0.22-cp37-cp37m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c710c48135fb77c5d7c3f7e89ff2fbe53bf2f7fddf0fb66a4c866b1418de64a6",
                "md5": "4d0299b424a97e1157ce9546757d905f",
                "sha256": "4efe1772f48b87f53cd135c00946f40da3a4a1c4e1d919b5449c0052b421d75d"
            },
            "downloads": -1,
            "filename": "dedupe-2.0.22-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4d0299b424a97e1157ce9546757d905f",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 94601,
            "upload_time": "2023-01-18T18:08:43",
            "upload_time_iso_8601": "2023-01-18T18:08:43.273291Z",
            "url": "https://files.pythonhosted.org/packages/c7/10/c48135fb77c5d7c3f7e89ff2fbe53bf2f7fddf0fb66a4c866b1418de64a6/dedupe-2.0.22-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "42b98bc0a0f9acef1535877669a07db3577fae577bcca98e364b21ea6208478b",
                "md5": "719384c25c236b2239f6c38f310213d6",
                "sha256": "28748b058fd305c70410c1d413b70f76a1f1671d2feff7a65b4d1db8dbc02725"
            },
            "downloads": -1,
            "filename": "dedupe-2.0.22-cp38-cp38-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "719384c25c236b2239f6c38f310213d6",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 102310,
            "upload_time": "2023-01-18T18:08:45",
            "upload_time_iso_8601": "2023-01-18T18:08:45.925559Z",
            "url": "https://files.pythonhosted.org/packages/42/b9/8bc0a0f9acef1535877669a07db3577fae577bcca98e364b21ea6208478b/dedupe-2.0.22-cp38-cp38-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "124c170f7c7d921c1c248b21d12fa91fe482a6052bee815fefedc9fea9e558af",
                "md5": "e06d9ef9781f054f8b9c0723523165ea",
                "sha256": "79ad4ebe2f1b87a72dc3f803fb7ad9bef7e3a430b96d5fc59655cdf5d9f5ed38"
            },
            "downloads": -1,
            "filename": "dedupe-2.0.22-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e06d9ef9781f054f8b9c0723523165ea",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 92255,
            "upload_time": "2023-01-18T18:08:47",
            "upload_time_iso_8601": "2023-01-18T18:08:47.884756Z",
            "url": "https://files.pythonhosted.org/packages/12/4c/170f7c7d921c1c248b21d12fa91fe482a6052bee815fefedc9fea9e558af/dedupe-2.0.22-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cd90f0bb6ab224a32f60eec4c7f71def715d733140f2a98a723eb4389260a027",
                "md5": "8f3355448da9e15ba45542e81a576b28",
                "sha256": "1df9f3f98dd521e2fdc8f3f6f6bdc36afe96e54e1d8b9721d4062a93e098dc7b"
            },
            "downloads": -1,
            "filename": "dedupe-2.0.22-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "8f3355448da9e15ba45542e81a576b28",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 92294,
            "upload_time": "2023-01-18T18:08:49",
            "upload_time_iso_8601": "2023-01-18T18:08:49.725951Z",
            "url": "https://files.pythonhosted.org/packages/cd/90/f0bb6ab224a32f60eec4c7f71def715d733140f2a98a723eb4389260a027/dedupe-2.0.22-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ccbc31454ed60af92c5315d5428fe3136db68c1eaf508cc074bb5adb79d00356",
                "md5": "485e3d2a31bebea32ddb577192a8e5b0",
                "sha256": "df3eda48e8b773ed51deb86a4382a3a3102f20afcd827b1ffc5adc789dfd29a3"
            },
            "downloads": -1,
            "filename": "dedupe-2.0.22-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "485e3d2a31bebea32ddb577192a8e5b0",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 130931,
            "upload_time": "2023-01-18T18:01:21",
            "upload_time_iso_8601": "2023-01-18T18:01:21.343458Z",
            "url": "https://files.pythonhosted.org/packages/cc/bc/31454ed60af92c5315d5428fe3136db68c1eaf508cc074bb5adb79d00356/dedupe-2.0.22-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8aa882083a09a37b31a3bc409488487dcd420b7fb30049f0b97a82e537f7fe29",
                "md5": "e24eb98ee2f5d31f5cd4b16c99bbc810",
                "sha256": "c21b55b7c2cb2e9aae9963638ed49ff64fdb16c54be0cb9bc4c9d8991f1d251a"
            },
            "downloads": -1,
            "filename": "dedupe-2.0.22-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e24eb98ee2f5d31f5cd4b16c99bbc810",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 133283,
            "upload_time": "2023-01-18T18:01:22",
            "upload_time_iso_8601": "2023-01-18T18:01:22.667047Z",
            "url": "https://files.pythonhosted.org/packages/8a/a8/82083a09a37b31a3bc409488487dcd420b7fb30049f0b97a82e537f7fe29/dedupe-2.0.22-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": "60f9ccb9481aebbf197bd730a61124f642896bb62a718db9f86e816fd8b3ed9d",
                "md5": "b5b8a603112ce0cfcb04deac89ad3c3e",
                "sha256": "89299ed126e93e4dc24ffa127d581523a5b84c664dc7df499b851b58e06e99b8"
            },
            "downloads": -1,
            "filename": "dedupe-2.0.22-cp38-cp38-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "b5b8a603112ce0cfcb04deac89ad3c3e",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 134630,
            "upload_time": "2023-01-18T18:01:24",
            "upload_time_iso_8601": "2023-01-18T18:01:24.092700Z",
            "url": "https://files.pythonhosted.org/packages/60/f9/ccb9481aebbf197bd730a61124f642896bb62a718db9f86e816fd8b3ed9d/dedupe-2.0.22-cp38-cp38-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "530795333ab304d3a4a6345e96b7a104a71fdc41fe48a671f28935786f41a758",
                "md5": "7bd153d94eba1e9b2ec82c069e628d7c",
                "sha256": "a62de92a83d29fece79fc853694a2c14af6d7a99bb557b5bbdc5e0338de4f337"
            },
            "downloads": -1,
            "filename": "dedupe-2.0.22-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7bd153d94eba1e9b2ec82c069e628d7c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 136557,
            "upload_time": "2023-01-18T18:01:25",
            "upload_time_iso_8601": "2023-01-18T18:01:25.531518Z",
            "url": "https://files.pythonhosted.org/packages/53/07/95333ab304d3a4a6345e96b7a104a71fdc41fe48a671f28935786f41a758/dedupe-2.0.22-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3815a994b50f172c3e5de63722a644987f7e6bd684c993367ab559d40e8071ce",
                "md5": "109a571b82b546f8792a895d7f9f2c36",
                "sha256": "d3c5de06a23b2dc427cddd5dca63fd3ca549e7c0c8824466c94e154ed799f270"
            },
            "downloads": -1,
            "filename": "dedupe-2.0.22-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "109a571b82b546f8792a895d7f9f2c36",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 93294,
            "upload_time": "2023-01-18T18:08:44",
            "upload_time_iso_8601": "2023-01-18T18:08:44.983959Z",
            "url": "https://files.pythonhosted.org/packages/38/15/a994b50f172c3e5de63722a644987f7e6bd684c993367ab559d40e8071ce/dedupe-2.0.22-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "80c54741f809122144a6756d7b4d32dc7ea0e3a52f1441d2ac033998f756d901",
                "md5": "18cdc61ccd8b474fb067558c97daa2a2",
                "sha256": "5ac5d930cab07b033eedae7ff148964af0678b56de5b0e4d477d468651f92007"
            },
            "downloads": -1,
            "filename": "dedupe-2.0.22-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "18cdc61ccd8b474fb067558c97daa2a2",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 94545,
            "upload_time": "2023-01-18T18:08:46",
            "upload_time_iso_8601": "2023-01-18T18:08:46.857852Z",
            "url": "https://files.pythonhosted.org/packages/80/c5/4741f809122144a6756d7b4d32dc7ea0e3a52f1441d2ac033998f756d901/dedupe-2.0.22-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6df467f9803e8e17b36803a3d37b2cd6abd722b965b4d06714cf22eaa4d64e3a",
                "md5": "79dfcad9606a8d4c9b7b52dd927a52d5",
                "sha256": "fc9d5c6f7bda8590f79a0fd940167e7b09c1d20b0d3197e9965d446af52b70ce"
            },
            "downloads": -1,
            "filename": "dedupe-2.0.22-cp39-cp39-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "79dfcad9606a8d4c9b7b52dd927a52d5",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 102309,
            "upload_time": "2023-01-18T18:08:51",
            "upload_time_iso_8601": "2023-01-18T18:08:51.645853Z",
            "url": "https://files.pythonhosted.org/packages/6d/f4/67f9803e8e17b36803a3d37b2cd6abd722b965b4d06714cf22eaa4d64e3a/dedupe-2.0.22-cp39-cp39-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d674dd52dd31981f567f3796c1441b07f41d2a23abeba7b2dd431c2a148e8025",
                "md5": "7c598a538c508197469d0d343df050e7",
                "sha256": "9916f4914b924443155eb3215b11a02f55ba360cf1f10c0d2b0db8c0c680feb2"
            },
            "downloads": -1,
            "filename": "dedupe-2.0.22-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7c598a538c508197469d0d343df050e7",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 92240,
            "upload_time": "2023-01-18T18:08:53",
            "upload_time_iso_8601": "2023-01-18T18:08:53.676451Z",
            "url": "https://files.pythonhosted.org/packages/d6/74/dd52dd31981f567f3796c1441b07f41d2a23abeba7b2dd431c2a148e8025/dedupe-2.0.22-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "31991008478924acf9b82f8de221b976355da7ce8fe3048a461b05a5bfc75467",
                "md5": "e90bbdaf0ab1e681557568be1ea08feb",
                "sha256": "bbb35a441ac50b625cb830bb9a4cde5aa85eaf5ff1acc31cedfb0205f9edd004"
            },
            "downloads": -1,
            "filename": "dedupe-2.0.22-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "e90bbdaf0ab1e681557568be1ea08feb",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 92291,
            "upload_time": "2023-01-18T18:08:55",
            "upload_time_iso_8601": "2023-01-18T18:08:55.734355Z",
            "url": "https://files.pythonhosted.org/packages/31/99/1008478924acf9b82f8de221b976355da7ce8fe3048a461b05a5bfc75467/dedupe-2.0.22-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "97f06cfe042c56078be6cc4566afb4630b0b2478da31c9fbc5b888a7d469db27",
                "md5": "78e2872e0b811c5b248fe9b3d779af71",
                "sha256": "1fc3ac8307a937b3c4bdaa0d6d3785da379b640d3bc5d4aa1dbd70c30d203d92"
            },
            "downloads": -1,
            "filename": "dedupe-2.0.22-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "78e2872e0b811c5b248fe9b3d779af71",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 130588,
            "upload_time": "2023-01-18T18:01:26",
            "upload_time_iso_8601": "2023-01-18T18:01:26.746459Z",
            "url": "https://files.pythonhosted.org/packages/97/f0/6cfe042c56078be6cc4566afb4630b0b2478da31c9fbc5b888a7d469db27/dedupe-2.0.22-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ee41fc520e78502e4b4dcfe1503670277e32bddf13df5c9057b9086ccd2dcdc6",
                "md5": "9a4ad3662ef0d550417e472f80f10065",
                "sha256": "0b4a7caacc83c5ebd6063f9594e6cbbf3e161e9b59931599c7a5a328be7787ae"
            },
            "downloads": -1,
            "filename": "dedupe-2.0.22-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9a4ad3662ef0d550417e472f80f10065",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 132987,
            "upload_time": "2023-01-18T18:01:28",
            "upload_time_iso_8601": "2023-01-18T18:01:28.166725Z",
            "url": "https://files.pythonhosted.org/packages/ee/41/fc520e78502e4b4dcfe1503670277e32bddf13df5c9057b9086ccd2dcdc6/dedupe-2.0.22-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": "e071c0d349520032a2d009f50548f506fbca59f022e0c31019259368d21bf626",
                "md5": "a10cb61c4ee561569413b189aaccc4f6",
                "sha256": "1d753b8dd521d8bdaebaa77b03531cde45d4c7619c88d4a20b5819817902163b"
            },
            "downloads": -1,
            "filename": "dedupe-2.0.22-cp39-cp39-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "a10cb61c4ee561569413b189aaccc4f6",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 134177,
            "upload_time": "2023-01-18T18:01:29",
            "upload_time_iso_8601": "2023-01-18T18:01:29.777223Z",
            "url": "https://files.pythonhosted.org/packages/e0/71/c0d349520032a2d009f50548f506fbca59f022e0c31019259368d21bf626/dedupe-2.0.22-cp39-cp39-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2b0ee3606e00d49db3019fbe89068fc3496855f7cebb7d2844a9a386ae0fcfce",
                "md5": "cb8d6884238d37bca0709a3463a222d5",
                "sha256": "06f0ea6f1871945c449dd3e863c6cb220e6b2d2348541b653f46e8abe33fdaec"
            },
            "downloads": -1,
            "filename": "dedupe-2.0.22-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cb8d6884238d37bca0709a3463a222d5",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 136516,
            "upload_time": "2023-01-18T18:01:31",
            "upload_time_iso_8601": "2023-01-18T18:01:31.124918Z",
            "url": "https://files.pythonhosted.org/packages/2b/0e/e3606e00d49db3019fbe89068fc3496855f7cebb7d2844a9a386ae0fcfce/dedupe-2.0.22-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "905bc01cf0062a72a476b6b6b70a9a00ce41548f02dd57e3faadef47fdd4c331",
                "md5": "60b157b444a7dc60eefd78eb0888cc42",
                "sha256": "56095bb7718892fbc35de3ee0fd1271357f9ea9c903582160186b7b7859ed909"
            },
            "downloads": -1,
            "filename": "dedupe-2.0.22-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "60b157b444a7dc60eefd78eb0888cc42",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 93294,
            "upload_time": "2023-01-18T18:08:48",
            "upload_time_iso_8601": "2023-01-18T18:08:48.656264Z",
            "url": "https://files.pythonhosted.org/packages/90/5b/c01cf0062a72a476b6b6b70a9a00ce41548f02dd57e3faadef47fdd4c331/dedupe-2.0.22-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b53ce45cba5b44d5bb8fd401fd7dbe8ca5db465119f522040dba59f3b9f4cb39",
                "md5": "ade7be2437f41859c4c364411bc1c2be",
                "sha256": "cac23151636d597b0b5bf0a3f89ba777aaabb73aefbe9886489d421b602fbfc1"
            },
            "downloads": -1,
            "filename": "dedupe-2.0.22-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ade7be2437f41859c4c364411bc1c2be",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 94548,
            "upload_time": "2023-01-18T18:08:50",
            "upload_time_iso_8601": "2023-01-18T18:08:50.435888Z",
            "url": "https://files.pythonhosted.org/packages/b5/3c/e45cba5b44d5bb8fd401fd7dbe8ca5db465119f522040dba59f3b9f4cb39/dedupe-2.0.22-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a35f99494156e943acac85c79a49c0a063720ec4f062a7d5ec4fe07ffab57cff",
                "md5": "399badd83877ae635fe1851a0fe2358c",
                "sha256": "48cb1cf5d3db6d4a0f5706a560426c3dc1e41a915c4f962b6005896c64b8b22d"
            },
            "downloads": -1,
            "filename": "dedupe-2.0.22-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "399badd83877ae635fe1851a0fe2358c",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 90534,
            "upload_time": "2023-01-18T18:08:57",
            "upload_time_iso_8601": "2023-01-18T18:08:57.689962Z",
            "url": "https://files.pythonhosted.org/packages/a3/5f/99494156e943acac85c79a49c0a063720ec4f062a7d5ec4fe07ffab57cff/dedupe-2.0.22-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7b11a1ebe62c130156110801842ee1ce3a30b55f42589543e68f9cd3376dc1e3",
                "md5": "f3230850e3e8347f02c0e8b28d454948",
                "sha256": "9c4ef8ad407fab6f553d5c4392c64c13bc31d689d68fa5df412889b32bfa106d"
            },
            "downloads": -1,
            "filename": "dedupe-2.0.22-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "f3230850e3e8347f02c0e8b28d454948",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 93179,
            "upload_time": "2023-01-18T18:01:32",
            "upload_time_iso_8601": "2023-01-18T18:01:32.389045Z",
            "url": "https://files.pythonhosted.org/packages/7b/11/a1ebe62c130156110801842ee1ce3a30b55f42589543e68f9cd3376dc1e3/dedupe-2.0.22-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "93188d7b21973b2641cecee2c2bdd5e9fe23ef9ef7b36f01e194db15ad318783",
                "md5": "d8e9111fd8b685f56d70a4d4fff1255e",
                "sha256": "0e4b83548b38981c3125ac8c6c506cfbdc29d097b0f56c9d8c1e5a8ce5c0fc09"
            },
            "downloads": -1,
            "filename": "dedupe-2.0.22-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d8e9111fd8b685f56d70a4d4fff1255e",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 93052,
            "upload_time": "2023-01-18T18:01:33",
            "upload_time_iso_8601": "2023-01-18T18:01:33.726898Z",
            "url": "https://files.pythonhosted.org/packages/93/18/8d7b21973b2641cecee2c2bdd5e9fe23ef9ef7b36f01e194db15ad318783/dedupe-2.0.22-pp37-pypy37_pp73-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": "ca0b935f2d8336efbbd6eb722f1add098dd8198ca73cb102252ace6e36273bdb",
                "md5": "41d5b78e0f88072d982ff3f3525fe88f",
                "sha256": "b6d525a32baa42ec8a932dd756a3e7973fc2678b1691f2fd42edd2d35c50770d"
            },
            "downloads": -1,
            "filename": "dedupe-2.0.22-pp37-pypy37_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "41d5b78e0f88072d982ff3f3525fe88f",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 93466,
            "upload_time": "2023-01-18T18:08:52",
            "upload_time_iso_8601": "2023-01-18T18:08:52.608685Z",
            "url": "https://files.pythonhosted.org/packages/ca/0b/935f2d8336efbbd6eb722f1add098dd8198ca73cb102252ace6e36273bdb/dedupe-2.0.22-pp37-pypy37_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b3525bdc5057893553f1a095c9a8c7f80401e9dc5a1231a69dd2f8e4bd51f61d",
                "md5": "501361aa48cb93935e25b84a7126ee30",
                "sha256": "1801c34c1e2f40811ffdcb93315cf592fc15819ea61d2f0e4594111a9da9b7d5"
            },
            "downloads": -1,
            "filename": "dedupe-2.0.22-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "501361aa48cb93935e25b84a7126ee30",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 90552,
            "upload_time": "2023-01-18T18:08:59",
            "upload_time_iso_8601": "2023-01-18T18:08:59.498220Z",
            "url": "https://files.pythonhosted.org/packages/b3/52/5bdc5057893553f1a095c9a8c7f80401e9dc5a1231a69dd2f8e4bd51f61d/dedupe-2.0.22-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f6603db71cc86098b8d9ae79f956507ef73be677a94adfc98ccf6b0cdc8c53f5",
                "md5": "11664fdfe8853e8ad9b707aa8d9eec09",
                "sha256": "d9bf70b1b48d2f577f278defc4ddd72cc9b873d44ca698872431162469dc8ced"
            },
            "downloads": -1,
            "filename": "dedupe-2.0.22-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "11664fdfe8853e8ad9b707aa8d9eec09",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 93178,
            "upload_time": "2023-01-18T18:01:34",
            "upload_time_iso_8601": "2023-01-18T18:01:34.950277Z",
            "url": "https://files.pythonhosted.org/packages/f6/60/3db71cc86098b8d9ae79f956507ef73be677a94adfc98ccf6b0cdc8c53f5/dedupe-2.0.22-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "53c2be8a6f69efd66d75bfa761419345d88998ba992e3fa2842070e06f5bcb59",
                "md5": "49d6d98ffd423d38ea63e461252b6e65",
                "sha256": "4b85237b9283a85b311b031f589017b96cb146efb8666309a1ab77c255d04a61"
            },
            "downloads": -1,
            "filename": "dedupe-2.0.22-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "49d6d98ffd423d38ea63e461252b6e65",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 93055,
            "upload_time": "2023-01-18T18:01:36",
            "upload_time_iso_8601": "2023-01-18T18:01:36.508747Z",
            "url": "https://files.pythonhosted.org/packages/53/c2/be8a6f69efd66d75bfa761419345d88998ba992e3fa2842070e06f5bcb59/dedupe-2.0.22-pp38-pypy38_pp73-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": "4fb5b9889de89f90d063216fa6862209095cbae596b506e46a4e5e99a069e94a",
                "md5": "e6d0360510c5e64927bae82fcec6f607",
                "sha256": "681563dff2fb5a5fba68cd6ef2d41c155906adccfb265fdf16a5596079e843c5"
            },
            "downloads": -1,
            "filename": "dedupe-2.0.22-pp38-pypy38_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "e6d0360510c5e64927bae82fcec6f607",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 93465,
            "upload_time": "2023-01-18T18:08:54",
            "upload_time_iso_8601": "2023-01-18T18:08:54.634356Z",
            "url": "https://files.pythonhosted.org/packages/4f/b5/b9889de89f90d063216fa6862209095cbae596b506e46a4e5e99a069e94a/dedupe-2.0.22-pp38-pypy38_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "13f05ce535694e0cbd0ae5830d1bd5055860b5031fb7cc6f53974ec118c727bf",
                "md5": "356cb27c3a6e2185c705c1101383539d",
                "sha256": "79299a1e26f8ccc1e184df74de73f884115ba7e66e9f4edac65998167b0e8624"
            },
            "downloads": -1,
            "filename": "dedupe-2.0.22-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "356cb27c3a6e2185c705c1101383539d",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 90524,
            "upload_time": "2023-01-18T18:09:00",
            "upload_time_iso_8601": "2023-01-18T18:09:00.839484Z",
            "url": "https://files.pythonhosted.org/packages/13/f0/5ce535694e0cbd0ae5830d1bd5055860b5031fb7cc6f53974ec118c727bf/dedupe-2.0.22-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e57052e434d3cfadf877fa1334806f94e06c61d2e36dc1576109ebdeb3d1c8c8",
                "md5": "13d0bc0bbdba019e1bbbce4667ef83ef",
                "sha256": "2e872a9a33dd11bd16c81a08b74f76750384f30ccb28d6673857297fe31ef36d"
            },
            "downloads": -1,
            "filename": "dedupe-2.0.22-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "13d0bc0bbdba019e1bbbce4667ef83ef",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 93960,
            "upload_time": "2023-01-18T18:01:38",
            "upload_time_iso_8601": "2023-01-18T18:01:38.045302Z",
            "url": "https://files.pythonhosted.org/packages/e5/70/52e434d3cfadf877fa1334806f94e06c61d2e36dc1576109ebdeb3d1c8c8/dedupe-2.0.22-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bf23a3dd3cb73c9a2a290e5a073eb6ee33fa826db19b55034163a4f86f9ab361",
                "md5": "55b1db2c86b84de18055e2d19acc955d",
                "sha256": "a995ee7877090da78dd7a410e9e84b84f6ad1c2b20abbaef24f423a858433303"
            },
            "downloads": -1,
            "filename": "dedupe-2.0.22-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "55b1db2c86b84de18055e2d19acc955d",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 93035,
            "upload_time": "2023-01-18T18:01:39",
            "upload_time_iso_8601": "2023-01-18T18:01:39.327583Z",
            "url": "https://files.pythonhosted.org/packages/bf/23/a3dd3cb73c9a2a290e5a073eb6ee33fa826db19b55034163a4f86f9ab361/dedupe-2.0.22-pp39-pypy39_pp73-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": "1dcc3970deb496f564ce84cb7140f00763570d6faf541503f0b92d93fafacf04",
                "md5": "9adde3c246d69529b33dca7f4c44dc81",
                "sha256": "a1fde0d94fb56707c9db110df4bdd8a7f56df6de5c555efb7eaa4b7f620290e3"
            },
            "downloads": -1,
            "filename": "dedupe-2.0.22-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "9adde3c246d69529b33dca7f4c44dc81",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 93404,
            "upload_time": "2023-01-18T18:08:56",
            "upload_time_iso_8601": "2023-01-18T18:08:56.676540Z",
            "url": "https://files.pythonhosted.org/packages/1d/cc/3970deb496f564ce84cb7140f00763570d6faf541503f0b92d93fafacf04/dedupe-2.0.22-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f7ecdd0461a9892761a794dadba449476d5309e5be825d3abf3a65fe0b4d98d3",
                "md5": "9d2f4c65d75544f9f2906011140509fe",
                "sha256": "31f1d91e1da51a52bac12341d979297a38d38223349ba6fd6f7d17509d871700"
            },
            "downloads": -1,
            "filename": "dedupe-2.0.22.tar.gz",
            "has_sig": false,
            "md5_digest": "9d2f4c65d75544f9f2906011140509fe",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 75719,
            "upload_time": "2023-01-18T18:01:41",
            "upload_time_iso_8601": "2023-01-18T18:01:41.104606Z",
            "url": "https://files.pythonhosted.org/packages/f7/ec/dd0461a9892761a794dadba449476d5309e5be825d3abf3a65fe0b4d98d3/dedupe-2.0.22.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-01-18 18:01:41",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "lcname": "dedupe"
}
        
Elapsed time: 0.03030s