{
"info": {
"author": "",
"author_email": "",
"bugtrack_url": null,
"classifiers": [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing :: Filters"
],
"description": "# ftfy: fixes text for you\n\n[](https://travis-ci.org/LuminosoInsight/python-ftfy)\n[](https://badge.fury.io/py/ftfy)\n[](https://ftfy.readthedocs.org/en/latest/)\n\n```python\n>>> print(fix_encoding(\"(\u00e0\u00b8\u2021'\u00e2\u0152\u00a3')\u00e0\u00b8\u2021\"))\n(\u0e07'\u2323')\u0e07\n```\n\nFull documentation: **https://ftfy.readthedocs.org**\n\n## Testimonials\n\n- \u201cMy life is livable again!\u201d\n \u2014 [@planarrowspace](https://twitter.com/planarrowspace)\n- \u201cA handy piece of magic\u201d\n \u2014 [@simonw](https://twitter.com/simonw)\n- \u201cSaved me a large amount of frustrating dev work\u201d\n \u2014 [@iancal](https://twitter.com/iancal)\n- \u201cftfy did the right thing right away, with no faffing about. Excellent work, solving a very tricky real-world (whole-world!) problem.\u201d\n \u2014 Brennan Young\n- \u201cHat mir die Tage geholfen. Im \u00dcbrigen bin ich der Meinung, dass wir keine komplexen Maschinen mit Computern bauen sollten solange wir nicht einmal Umlaute sicher verarbeiten k\u00f6nnen. :D\u201d\n \u2014 [Bruno Ranieri](https://yrrsinn.de/2012/09/17/gelesen-kw37/)\n- \u201cI have no idea when I\u2019m gonna need this, but I\u2019m definitely bookmarking it.\u201d\n \u2014 [/u/ocrow](https://reddit.com/u/ocrow)\n- \u201c9.2/10\u201d\n \u2014 [pylint](https://bitbucket.org/logilab/pylint/)\n\n## Developed at Luminoso\n\n[Luminoso](https://www.luminoso.com) makes groundbreaking software for text\nanalytics that really understands what words mean, in many languages. Our\nsoftware is used by enterprise customers such as Sony, Intel, Mars, and Scotts,\nand it's built on Python and open-source technologies.\n\nWe use ftfy every day at Luminoso, because the first step in understanding text\nis making sure it has the correct characters in it!\n\nLuminoso is growing fast and hiring. If you're interested in joining us, take a\nlook at [our careers page](https://luminoso.com/about/work-here).\n\n## What it does\n\n`ftfy` fixes Unicode that's broken in various ways.\n\nThe goal of `ftfy` is to **take in bad Unicode and output good Unicode**, for use\nin your Unicode-aware code. This is different from taking in non-Unicode and\noutputting Unicode, which is not a goal of ftfy. It also isn't designed to\nprotect you from having to write Unicode-aware code. ftfy helps those who help\nthemselves.\n\nOf course you're better off if your input is decoded properly and has no\nglitches. But you often don't have any control over your input; it's someone\nelse's mistake, but it's your problem now.\n\n`ftfy` will do everything it can to fix the problem.\n\n## Mojibake\n\nThe most interesting kind of brokenness that ftfy will fix is when someone has\nencoded Unicode with one standard and decoded it with a different one. This\noften shows up as characters that turn into nonsense sequences (called\n\"mojibake\"):\n\n- The word ``sch\u00f6n`` might appear as ``sch\u00c3\u00b6n``.\n- An em dash (``\u2014``) might appear as ``\u00e2\u20ac\u201d``.\n- Text that was meant to be enclosed in quotation marks might end up\n instead enclosed in ``\u00e2\u20ac\u0153`` and ``\u00e2\u20ac<9d>``, where ``<9d>`` represents an\n unprintable character.\n\nftfy uses heuristics to detect and undo this kind of mojibake, with a very\nlow rate of false positives.\n\nThis part of ftfy now has an unofficial Web implementation by simonw:\nhttps://ftfy.now.sh/\n\n\n## Examples\n\n`fix_text` is the main function of ftfy. This section is meant to give you a\ntaste of the things it can do. `fix_encoding` is the more specific function\nthat only fixes mojibake.\n\nPlease read [the documentation](https://ftfy.readthedocs.org) for more\ninformation on what ftfy does, and how to configure it for your needs.\n\n\n```python\n\n>>> print(fix_text('This text should be in \u00e2\u20ac\u0153quotes\u00e2\u20ac\\x9d.'))\nThis text should be in \"quotes\".\n\n>>> print(fix_text('u\u00cc\u02c6nicode'))\n\u00fcnicode\n\n>>> print(fix_text('Broken text… it’s \ufb02ubberi\ufb01c!',\n... normalization='NFKC'))\nBroken text... it's flubberific!\n\n>>> print(fix_text('HTML entities <3'))\nHTML entities <3\n\n>>> print(fix_text('HTML entities in HTML <3'))\nHTML entities in HTML <3\n\n>>> print(fix_text('\\001\\033[36;44mIm blue, da ba dee da ba '\n... 'doo
\\033[0m', normalization='NFKC'))\nI'm blue, da ba dee da ba doo...\n\n>>> print(fix_text('\uff2c\uff2f\uff35\uff24\u3000\uff2e\uff2f\uff29\uff33\uff25\uff33'))\nLOUD NOISES\n\n>>> print(fix_text('\uff2c\uff2f\uff35\uff24\u3000\uff2e\uff2f\uff29\uff33\uff25\uff33', fix_character_width=False))\n\uff2c\uff2f\uff35\uff24\u3000\uff2e\uff2f\uff29\uff33\uff25\uff33\n```\n\n\n## Installing\n\nftfy is a Python 3 package that can be installed using `pip`:\n\n pip install ftfy\n\n(Or use `pip3 install ftfy` on systems where Python 2 and 3 are both globally\ninstalled and `pip` refers to Python 2.)\n\nIf you're on Python 2.7, you can install an older version:\n\n pip install 'ftfy<5'\n\nYou can also clone this Git repository and install it with\n`python setup.py install`.\n\n\n## Who maintains ftfy?\n\nI'm Robyn Speer (rspeer@luminoso.com). I develop this tool as part of my\ntext-understanding company, [Luminoso](https://luminoso.com), where it has\nproven essential.\n\nLuminoso provides ftfy as free, open source software under the extremely\npermissive MIT license.\n\nYou can report bugs regarding ftfy on GitHub and we'll handle them.\n\n\n## Citing ftfy\n\nftfy has been used as a crucial data processing step in major NLP research.\n\nIt's important to give credit appropriately to everyone whose work you build on\nin research. This includes software, not just high-status contributions such as\nmathematical models. All I ask when you use ftfy for research is that you cite\nit.\n\nftfy has a citable record [on Zenodo](https://zenodo.org/record/2591652).\nA citation of ftfy may look like this:\n\n Robyn Speer. (2019). ftfy (Version 5.5). Zenodo.\n http://doi.org/10.5281/zenodo.2591652\n\nIn BibTeX format, the citation is::\n\n @misc{speer-2019-ftfy,\n author = {Robyn Speer},\n title = {ftfy},\n note = {Version 5.5},\n year = 2019,\n howpublished = {Zenodo},\n doi = {10.5281/zenodo.2591652},\n url = {https://doi.org/10.5281/zenodo.2591652}\n }",
"description_content_type": "text/markdown",
"docs_url": null,
"download_url": "",
"downloads": {
"last_day": -1,
"last_month": -1,
"last_week": -1
},
"home_page": "http://github.com/LuminosoInsight/python-ftfy",
"keywords": "",
"license": "MIT",
"maintainer": "Luminoso Technologies, Inc.",
"maintainer_email": "info@luminoso.com",
"name": "ftfy",
"package_url": "https://pypi.org/project/ftfy/",
"platform": "any",
"project_url": "https://pypi.org/project/ftfy/",
"project_urls": {
"Documentation": "http://ftfy.readthedocs.io",
"Homepage": "http://github.com/LuminosoInsight/python-ftfy"
},
"release_url": "https://pypi.org/project/ftfy/5.6/",
"requires_dist": null,
"requires_python": ">=3.4",
"summary": "Fixes some problems with Unicode text after the fact",
"version": "5.6"
},
"last_serial": 5647033,
"releases": {
"1.0": [
{
"comment_text": "",
"digests": {
"md5": "0b71f5bd3ba03ef54e972c671d2dc9c8",
"sha256": "7e7f61b51220eb675cac761eff83cd3efac02538f9ad7e0270519901d9f68f6a"
},
"downloads": -1,
"filename": "ftfy-1.0.tar.gz",
"has_sig": false,
"md5_digest": "0b71f5bd3ba03ef54e972c671d2dc9c8",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 6894,
"upload_time": "2012-08-24T19:24:04",
"url": "https://files.pythonhosted.org/packages/cf/33/98c65cec66f882ebf77deec57619906246beadc9b0e43db1feebb2214116/ftfy-1.0.tar.gz"
}
],
"2.0": [
{
"comment_text": "",
"digests": {
"md5": "64edf1ed7c7dcc8c03e56e0364b7d17f",
"sha256": "8939144ceb84e592e5f4b6ba5aa4d75bc6c254ac3c4d06b72eb4ce8133ed56ef"
},
"downloads": -1,
"filename": "ftfy-2.0.tar.gz",
"has_sig": false,
"md5_digest": "64edf1ed7c7dcc8c03e56e0364b7d17f",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 9791,
"upload_time": "2013-01-30T23:46:46",
"url": "https://files.pythonhosted.org/packages/6c/56/c1818b82ff6ee980653e1015847c5c260d8bc29793d046347c73e725ebc6/ftfy-2.0.tar.gz"
}
],
"2.0.1": [
{
"comment_text": "",
"digests": {
"md5": "819998add31c4435c2787ccae7ebb764",
"sha256": "d118947772765175e5af6818bc00f6c4f62364f444413ffc8d16384f9cd38636"
},
"downloads": -1,
"filename": "ftfy-2.0.1.tar.gz",
"has_sig": false,
"md5_digest": "819998add31c4435c2787ccae7ebb764",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 9527,
"upload_time": "2013-03-19T21:09:58",
"url": "https://files.pythonhosted.org/packages/b4/44/3f10a749b9f79b72a65dd173b18239647e11e054bb26b621c325a75d9581/ftfy-2.0.1.tar.gz"
}
],
"2.0.2": [
{
"comment_text": "",
"digests": {
"md5": "93ad31551318a6d0c03b0a71b4e99127",
"sha256": "28d2d3315fa9f00d7520eb77478365fb1b55d24c7963ccc9f638b4f4a831b378"
},
"downloads": -1,
"filename": "ftfy-2.0.2.tar.gz",
"has_sig": false,
"md5_digest": "93ad31551318a6d0c03b0a71b4e99127",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 10438,
"upload_time": "2013-06-20T19:40:53",
"url": "https://files.pythonhosted.org/packages/ca/21/950ca93497336afdebb5d668124c44baf426ffbff1a16b0acec61d569dc6/ftfy-2.0.2.tar.gz"
}
],
"3.0": [
{
"comment_text": "",
"digests": {
"md5": "438303f855820fbd80b265576484f16b",
"sha256": "03482351afefa082c8170f6255e1bd2446f4b583b3ef0ce173876331438473a3"
},
"downloads": -1,
"filename": "ftfy-3.0.tar.gz",
"has_sig": false,
"md5_digest": "438303f855820fbd80b265576484f16b",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 16244,
"upload_time": "2013-08-26T21:20:21",
"url": "https://files.pythonhosted.org/packages/73/93/015ea56ed626980e3b44dbb57c9c8a31b5e0cca0ea48bade41c84f19bc6c/ftfy-3.0.tar.gz"
}
],
"3.0.1": [
{
"comment_text": "",
"digests": {
"md5": "73dc0fd29ffa3d2d420aebec40ee4750",
"sha256": "a38426bc817e011b53abd046ac68cf9e1214ae5fac7bc83d7206d3a50056f444"
},
"downloads": -1,
"filename": "ftfy-3.0.1.tar.gz",
"has_sig": false,
"md5_digest": "73dc0fd29ffa3d2d420aebec40ee4750",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 17437,
"upload_time": "2013-08-30T15:38:18",
"url": "https://files.pythonhosted.org/packages/e8/1e/e829961ee87fada20adec121d75c91f7308a2c5beafb8691856ca4722be8/ftfy-3.0.1.tar.gz"
}
],
"3.0.2": [
{
"comment_text": "",
"digests": {
"md5": "e48775b21d6eaa1bec5e37ea7a41455d",
"sha256": "330d6b1e5a2104056ce9c215c49549808a1684c2d9bf02c05c4bc19720007cdb"
},
"downloads": -1,
"filename": "ftfy-3.0.2.tar.gz",
"has_sig": false,
"md5_digest": "e48775b21d6eaa1bec5e37ea7a41455d",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 17524,
"upload_time": "2013-09-04T06:48:18",
"url": "https://files.pythonhosted.org/packages/b0/54/80f1ee7b9e1503c10673259fd003281eba81e049bfd2ccc273cd9cf0a304/ftfy-3.0.2.tar.gz"
}
],
"3.0.3": [
{
"comment_text": "",
"digests": {
"md5": "2439d20dde7f74c7f2c8635bd4008b39",
"sha256": "6b54d950684172a3f22d50e49c7d4caeb5d1af5a5672016f5a7be658bad39cf1"
},
"downloads": -1,
"filename": "ftfy-3.0.3.tar.gz",
"has_sig": false,
"md5_digest": "2439d20dde7f74c7f2c8635bd4008b39",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 17869,
"upload_time": "2013-09-09T21:46:16",
"url": "https://files.pythonhosted.org/packages/72/6e/9c1544f3f369b339e80bd4708e832da1f562e369afa5cc435b1a8619afd6/ftfy-3.0.3.tar.gz"
}
],
"3.0.4": [
{
"comment_text": "",
"digests": {
"md5": "8e618f57902eed3bba2d15cf4b56f26f",
"sha256": "b604d0d4cd0d8780b6fcead033d5b89ba2913507961659e99b0c07f1fe3310c6"
},
"downloads": -1,
"filename": "ftfy-3.0.4.tar.gz",
"has_sig": false,
"md5_digest": "8e618f57902eed3bba2d15cf4b56f26f",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 17917,
"upload_time": "2013-10-01T15:45:37",
"url": "https://files.pythonhosted.org/packages/8e/1b/0f2b8307815d160b09f0ab7892d50810ad0a9e6c70171d330824636b6688/ftfy-3.0.4.tar.gz"
}
],
"3.0.5": [
{
"comment_text": "",
"digests": {
"md5": "c3fb23cdec4b46a0ded737507099d378",
"sha256": "de92530e9315018bcb96a3393c557f1184276d35768dd6a256c09a9f660afd12"
},
"downloads": -1,
"filename": "ftfy-3.0.5.tar.gz",
"has_sig": false,
"md5_digest": "c3fb23cdec4b46a0ded737507099d378",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 17976,
"upload_time": "2013-11-01T21:16:32",
"url": "https://files.pythonhosted.org/packages/f2/0a/e49e76d8219d72c6ed915918ea5f592c34a5b4f87fd9cb8181b63a359f55/ftfy-3.0.5.tar.gz"
}
],
"3.1.0": [
{
"comment_text": "",
"digests": {
"md5": "e08e4fc638928cb09a1f3487a10d46d7",
"sha256": "a2255784588ebb0316d2b2e56227842da85d74ea699441fc61d3914d228d73c9"
},
"downloads": -1,
"filename": "ftfy-3.1.0.tar.gz",
"has_sig": false,
"md5_digest": "e08e4fc638928cb09a1f3487a10d46d7",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 17154,
"upload_time": "2014-01-29T16:45:13",
"url": "https://files.pythonhosted.org/packages/84/92/52a850eb3dc9af68cb723588b94a6f4d5b5674075492125ab1b935de7817/ftfy-3.1.0.tar.gz"
}
],
"3.1.1": [
{
"comment_text": "",
"digests": {
"md5": "ef0ea42d31fca20208e1b8972a7521e6",
"sha256": "88fcfa795c9ba8a57c85a43e0b9753ea4489243d625ae4d6542d9473d013908f"
},
"downloads": -1,
"filename": "ftfy-3.1.1.tar.gz",
"has_sig": false,
"md5_digest": "ef0ea42d31fca20208e1b8972a7521e6",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 23544,
"upload_time": "2014-01-29T18:00:40",
"url": "https://files.pythonhosted.org/packages/99/64/c278f8504968762b4360e7a1c99b11c04967695454b5890a0ca2c9289dc6/ftfy-3.1.1.tar.gz"
}
],
"3.1.2": [
{
"comment_text": "",
"digests": {
"md5": "cdf885b9a9e5ecdd3568ba196484f948",
"sha256": "56225be125669d107fde62b5f390bb45a8046cbe8e6f2912f6f44cf993b6dfc6"
},
"downloads": -1,
"filename": "ftfy-3.1.2.tar.gz",
"has_sig": false,
"md5_digest": "cdf885b9a9e5ecdd3568ba196484f948",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 23562,
"upload_time": "2014-01-29T20:40:20",
"url": "https://files.pythonhosted.org/packages/ff/f4/3546a0b383dde95edc17387e5acab6e66784309a86bce0bec46c9c5eff4f/ftfy-3.1.2.tar.gz"
}
],
"3.1.3": [
{
"comment_text": "",
"digests": {
"md5": "96c469c00daaaa657fc7a23888450a16",
"sha256": "a27085f0fdfefd4b3bfef6cd3b1a772d5bbaf141de0f3c40668b56d9b6bedeea"
},
"downloads": -1,
"filename": "ftfy-3.1.3.tar.gz",
"has_sig": false,
"md5_digest": "96c469c00daaaa657fc7a23888450a16",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 24032,
"upload_time": "2014-05-15T19:52:50",
"url": "https://files.pythonhosted.org/packages/9a/42/8ba0c96c76235c94c10ccb7e5be0fcdf8fd9055bdf60610127528cad4ed1/ftfy-3.1.3.tar.gz"
}
],
"3.2.0": [
{
"comment_text": "",
"digests": {
"md5": "7f0fc023ab0c1d1503b74d075287f714",
"sha256": "36fac5ffa8d54727ee58c8fb41f1a7222b39b154e7d56c322fce7c8b3aeeb130"
},
"downloads": -1,
"filename": "ftfy-3.2.0.tar.gz",
"has_sig": false,
"md5_digest": "7f0fc023ab0c1d1503b74d075287f714",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 24584,
"upload_time": "2014-06-27T20:46:53",
"url": "https://files.pythonhosted.org/packages/20/5c/f2e6abc998571c39ee9a423194bc90e14cf6bdee97b6113dfc1486775332/ftfy-3.2.0.tar.gz"
}
],
"3.3.0": [
{
"comment_text": "",
"digests": {
"md5": "c888da7465b59caf419b94941a6de931",
"sha256": "f644f419c0182f48db5730bb2f8004191afeccc06587fa35e814310816131457"
},
"downloads": -1,
"filename": "ftfy-3.3.0.tar.gz",
"has_sig": false,
"md5_digest": "c888da7465b59caf419b94941a6de931",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 26286,
"upload_time": "2014-08-16T19:56:27",
"url": "https://files.pythonhosted.org/packages/5d/da/db15841169cb9f87163b794db28ab4b7cd1e37e2d9770e68e793af68dd96/ftfy-3.3.0.tar.gz"
}
],
"3.4.0": [
{
"comment_text": "",
"digests": {
"md5": "198567c3d01fe273db281a75e5545e35",
"sha256": "ce03d70c3c4e985e7ff978a41fd802f58fb25f474d12db3f38ec5e00addd749e"
},
"downloads": -1,
"filename": "ftfy-3.4.0.tar.gz",
"has_sig": false,
"md5_digest": "198567c3d01fe273db281a75e5545e35",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 26845,
"upload_time": "2015-01-15T23:09:45",
"url": "https://files.pythonhosted.org/packages/24/34/ec5dfdc06f0eaab5a77162884e59f781644ba5cad014e4c16e14d35eb5d9/ftfy-3.4.0.tar.gz"
}
],
"4.0.0": [
{
"comment_text": "",
"digests": {
"md5": "c55e774fbb2fd74213ee5c0b9e3a63a0",
"sha256": "a5fb890d000f5f16f6b228b553fd2839a8509931e620a3105b958c44556a7239"
},
"downloads": -1,
"filename": "ftfy-4.0.0.tar.gz",
"has_sig": false,
"md5_digest": "c55e774fbb2fd74213ee5c0b9e3a63a0",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 30819,
"upload_time": "2015-05-11T18:55:47",
"url": "https://files.pythonhosted.org/packages/a4/f6/31fd346f460a22df619d701281d294199734ab7db3c08fafdf575d3722c9/ftfy-4.0.0.tar.gz"
}
],
"4.1.0": [
{
"comment_text": "",
"digests": {
"md5": "852a6dff2ac1132de88dc40921c074c6",
"sha256": "d189db8d3dbed593a0fe944977218fc28ef8ab3e6f59b20e814f9c7e37267b62"
},
"downloads": -1,
"filename": "ftfy-4.1.0.tar.gz",
"has_sig": false,
"md5_digest": "852a6dff2ac1132de88dc40921c074c6",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 34045,
"upload_time": "2016-02-25T21:15:05",
"url": "https://files.pythonhosted.org/packages/24/2f/3b7ca00da51dfa1942dd829086c5c8b0deb76967c233b6a8d165faa73153/ftfy-4.1.0.tar.gz"
}
],
"4.1.1": [
{
"comment_text": "",
"digests": {
"md5": "3fd431ac9666d0b83073d58cc2c2de15",
"sha256": "71377a67946b9e77237272f3efb8c444acea3a68d0cba1b508e33a2aef1ec072"
},
"downloads": -1,
"filename": "ftfy-4.1.1.tar.gz",
"has_sig": false,
"md5_digest": "3fd431ac9666d0b83073d58cc2c2de15",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 34136,
"upload_time": "2016-04-13T21:53:56",
"url": "https://files.pythonhosted.org/packages/45/80/59777cde46f09dbe2a74f05c740c029801bc82e1f2d48d32395876e4b515/ftfy-4.1.1.tar.gz"
}
],
"4.2.0": [
{
"comment_text": "",
"digests": {
"md5": "56d65c414c4d98dbe0ddf5fb6deb8395",
"sha256": "6de5d3f8c2e467e46f5938bf1cc0a54056928354b2c3e058fc3624632a23875e"
},
"downloads": -1,
"filename": "ftfy-4.2.0.tar.gz",
"has_sig": false,
"md5_digest": "56d65c414c4d98dbe0ddf5fb6deb8395",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 35139,
"upload_time": "2016-09-28T15:44:48",
"url": "https://files.pythonhosted.org/packages/ba/6f/f82c1b6fdd0e06ef6c456409aa87064cf9253c0159761500cc97e11b89c7/ftfy-4.2.0.tar.gz"
}
],
"4.3.1": [
{
"comment_text": "",
"digests": {
"md5": "6ce24da5358a2225e36727c13d162313",
"sha256": "60af7f4566a966fcb9681f3c93814017e981f5bbfffc2f5f33aadf8238101f4b"
},
"downloads": -1,
"filename": "ftfy-4.3.1.tar.gz",
"has_sig": false,
"md5_digest": "6ce24da5358a2225e36727c13d162313",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 35484,
"upload_time": "2017-01-17T20:15:49",
"url": "https://files.pythonhosted.org/packages/cd/0f/0157f7ebf46c315b4f2b50e44253f340c2520205dc3c9468bfa9796dc808/ftfy-4.3.1.tar.gz"
}
],
"4.4": [
{
"comment_text": "",
"digests": {
"md5": "7db79bb55211f1628f5b99b750e81e86",
"sha256": "d05565e699fe8cb6cfbd804ff89ccbc97fcf2e1bd3aa057ebf6a63e002aaf2a2"
},
"downloads": -1,
"filename": "ftfy-4.4.tar.gz",
"has_sig": false,
"md5_digest": "7db79bb55211f1628f5b99b750e81e86",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 35522,
"upload_time": "2017-03-09T22:38:11",
"url": "https://files.pythonhosted.org/packages/28/a4/e259eb2761fc575fdb7248cea8aca54a1a394eb29e3140797dbb3e184317/ftfy-4.4.tar.gz"
}
],
"4.4.1": [
{
"comment_text": "",
"digests": {
"md5": "d71822c587ea57243818122c220679c0",
"sha256": "fc92bb88c6fc248dadd3a88898f3db8f5c893b28f666aed3191cb3d85f0f6a81"
},
"downloads": -1,
"filename": "ftfy-4.4.1.tar.gz",
"has_sig": false,
"md5_digest": "d71822c587ea57243818122c220679c0",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 35584,
"upload_time": "2017-03-10T18:52:27",
"url": "https://files.pythonhosted.org/packages/ec/4c/a95a0acee0b9ed1bfbb684e3d9de40048fc000f9a8d7b939ba45cec6804e/ftfy-4.4.1.tar.gz"
}
],
"4.4.2": [
{
"comment_text": "",
"digests": {
"md5": "6d7c6ed9b0b183016f7783de0e381aa6",
"sha256": "0d82c3c7550d030c0b0e833f9b4d2a3c54873f7a934eec9913694977e3fb165f"
},
"downloads": -1,
"filename": "ftfy-4.4.2.tar.gz",
"has_sig": false,
"md5_digest": "6d7c6ed9b0b183016f7783de0e381aa6",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 50509,
"upload_time": "2017-03-24T15:39:08",
"url": "https://files.pythonhosted.org/packages/ab/09/b963ebd15c7e6171d4a41b27b54b555fd74721750b4ac146677ae865d7d2/ftfy-4.4.2.tar.gz"
}
],
"4.4.3": [
{
"comment_text": "",
"digests": {
"md5": "9b5cf81002f0a385526f209bd5e39005",
"sha256": "3c0066db64a98436e751e56414f03f1cdea54f29364c0632c141c36cca6a5d94"
},
"downloads": -1,
"filename": "ftfy-4.4.3.tar.gz",
"has_sig": false,
"md5_digest": "9b5cf81002f0a385526f209bd5e39005",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 50530,
"upload_time": "2017-05-15T15:52:37",
"url": "https://files.pythonhosted.org/packages/21/5d/9385540977b00df1f3a0c0f07b7e6c15b5e7a3109d7f6ae78a0a764dab22/ftfy-4.4.3.tar.gz"
}
],
"5.0": [
{
"comment_text": "",
"digests": {
"md5": "12e1be58ee116d9ac48ce999ae9f4773",
"sha256": "a2b6d29dd322f354e9d2fb8d6cfde6eb750602e209e1c06fb1d6bc6282549b64"
},
"downloads": -1,
"filename": "ftfy-5.0.tar.gz",
"has_sig": false,
"md5_digest": "12e1be58ee116d9ac48ce999ae9f4773",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 34463,
"upload_time": "2017-03-09T22:38:24",
"url": "https://files.pythonhosted.org/packages/36/7e/de02806f399ca538d850d9b6d8a4074b99c8c885edd04353d2bee549762b/ftfy-5.0.tar.gz"
}
],
"5.0.1": [
{
"comment_text": "",
"digests": {
"md5": "3d57ed04e853697ad88aa06ebdc95285",
"sha256": "6abc87370610738f409e643f699f635442d832c09d7d7dee8b03ba31690f6fa4"
},
"downloads": -1,
"filename": "ftfy-5.0.1.tar.gz",
"has_sig": false,
"md5_digest": "3d57ed04e853697ad88aa06ebdc95285",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 34562,
"upload_time": "2017-03-10T18:52:19",
"url": "https://files.pythonhosted.org/packages/1d/46/ba24cd869edf96d7f7e1340526eee1a47febea10683d892738206bd73f7d/ftfy-5.0.1.tar.gz"
}
],
"5.0.2": [
{
"comment_text": "",
"digests": {
"md5": "487c178e950cc67ae28f72cfa4250075",
"sha256": "73ad602547889fae936b3c51e5ee29ce3b374fcaac23e448ba905d8ff67ab4d8"
},
"downloads": -1,
"filename": "ftfy-5.0.2.tar.gz",
"has_sig": false,
"md5_digest": "487c178e950cc67ae28f72cfa4250075",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 50165,
"upload_time": "2017-03-24T15:39:14",
"url": "https://files.pythonhosted.org/packages/76/fa/63434c5168de84f4d5e8ce99769de320b86e293ba83764ed22d3d094361d/ftfy-5.0.2.tar.gz"
}
],
"5.1": [
{
"comment_text": "",
"digests": {
"md5": "e6a91b1c7ae77a7134403007f8bc3196",
"sha256": "2db945e2b46ef975cb9edbb897504df3bfd8f48f2be94297a3d4b7e906741ddf"
},
"downloads": -1,
"filename": "ftfy-5.1.tar.gz",
"has_sig": false,
"md5_digest": "e6a91b1c7ae77a7134403007f8bc3196",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 51638,
"upload_time": "2017-04-11T23:01:20",
"url": "https://files.pythonhosted.org/packages/df/5b/384a6776148bb8855e14423b27799df86269d31d8a3bd3bb3bc0dda7f397/ftfy-5.1.tar.gz"
}
],
"5.1.1": [
{
"comment_text": "",
"digests": {
"md5": "ae9d58b2b2cb2aeda006bbec9acccec9",
"sha256": "67a29a2fad5f72aec2d8a0a7084e4f499ed040455133ee96b1c458609fc29e78"
},
"downloads": -1,
"filename": "ftfy-5.1.1.tar.gz",
"has_sig": false,
"md5_digest": "ae9d58b2b2cb2aeda006bbec9acccec9",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 51776,
"upload_time": "2017-05-15T21:14:25",
"url": "https://files.pythonhosted.org/packages/42/92/a97ccf05fec83a973f28a2d1f5fb79d49fcf02932392afc31f16f25082e0/ftfy-5.1.1.tar.gz"
}
],
"5.2.0": [
{
"comment_text": "",
"digests": {
"md5": "28229c931d5352f3c38df55b0636e98f",
"sha256": "b9f84a1437f68ad0bb964fd9da9f6b88d090113ec9e78f290f6d6d0221468e38"
},
"downloads": -1,
"filename": "ftfy-5.2.0.tar.gz",
"has_sig": false,
"md5_digest": "28229c931d5352f3c38df55b0636e98f",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 52508,
"upload_time": "2017-11-27T22:13:39",
"url": "https://files.pythonhosted.org/packages/6f/23/552632744f77037a8a79c51ec9e4e24136f16e7b6b6aaf9bf0b1ee0e42be/ftfy-5.2.0.tar.gz"
}
],
"5.3.0": [
{
"comment_text": "",
"digests": {
"md5": "4ba91ee8ed43aebfab28facf9f0938e3",
"sha256": "0ba702d5138f9b35df32b55920c9466208608108f1f3d5de1a68c17e3d68cb7f"
},
"downloads": -1,
"filename": "ftfy-5.3.0.tar.gz",
"has_sig": false,
"md5_digest": "4ba91ee8ed43aebfab28facf9f0938e3",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 53827,
"upload_time": "2018-01-26T21:13:35",
"url": "https://files.pythonhosted.org/packages/a3/cb/ecc732d8c2dba0db8ba594b8c9a8a7bae5076f4f1faefed6186e5fd73f9a/ftfy-5.3.0.tar.gz"
}
],
"5.4.0": [
{
"comment_text": "",
"digests": {
"md5": "d30b69ee3f2dd4bea104c3331dd86f5b",
"sha256": "8540ae26397cba8914b4aa2bb8520e03580de8dba284d277d0b59b3c45047ff6"
},
"downloads": -1,
"filename": "ftfy-5.4.0.tar.gz",
"has_sig": false,
"md5_digest": "d30b69ee3f2dd4bea104c3331dd86f5b",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.3",
"size": 57465,
"upload_time": "2018-06-07T18:07:12",
"url": "https://files.pythonhosted.org/packages/07/43/759413ed05a49160d76ccb4ab26b82f7d0f0a9c8bc1e3af683c1ebab5adb/ftfy-5.4.0.tar.gz"
}
],
"5.4.1": [
{
"comment_text": "",
"digests": {
"md5": "999190e41575c9cd72520d79a99743b2",
"sha256": "619e68f9844cadd03e0d835e9b6790b2399357100c57fddae14d93a8de81e114"
},
"downloads": -1,
"filename": "ftfy-5.4.1.tar.gz",
"has_sig": false,
"md5_digest": "999190e41575c9cd72520d79a99743b2",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.3",
"size": 57651,
"upload_time": "2018-06-15T18:14:43",
"url": "https://files.pythonhosted.org/packages/d5/60/7b2d5d41ad6c6ebf48316b1c55ccf7c60d126e07f6306be9f254a139bfd1/ftfy-5.4.1.tar.gz"
}
],
"5.5.0": [
{
"comment_text": "",
"digests": {
"md5": "9e0e9d7dae837fc58243800b0b695c6c",
"sha256": "525ea45a871f52ddb170e66b01f35f1b3022995016c81efa305e628937b85443"
},
"downloads": -1,
"filename": "ftfy-5.5.0.tar.gz",
"has_sig": false,
"md5_digest": "9e0e9d7dae837fc58243800b0b695c6c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.3",
"size": 56899,
"upload_time": "2018-09-06T20:28:18",
"url": "https://files.pythonhosted.org/packages/87/d1/b25441b6b8f22dfd9547711268562fe651b74cf66288cce632884025e085/ftfy-5.5.0.tar.gz"
}
],
"5.5.1": [
{
"comment_text": "",
"digests": {
"md5": "9b9716f707a0984f97f61569831da556",
"sha256": "84a1614190173bb447ac9d581e50185c6aa35b538754b6bedaba0cc0f83d8e80"
},
"downloads": -1,
"filename": "ftfy-5.5.1-py3-none-any.whl",
"has_sig": false,
"md5_digest": "9b9716f707a0984f97f61569831da556",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.3",
"size": 43963,
"upload_time": "2019-01-22T17:47:07",
"url": "https://files.pythonhosted.org/packages/8f/86/df789c5834f15ae1ca53a8d4c1fc4788676c2e32112f6a786f2625d9c6e6/ftfy-5.5.1-py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "f5a90424cc46db027dfe5e05be24d3ac",
"sha256": "fa74757fb7cb444366fa6a79c2feabd40281a44dfbf6eaed492a804764ee26b2"
},
"downloads": -1,
"filename": "ftfy-5.5.1.tar.gz",
"has_sig": false,
"md5_digest": "f5a90424cc46db027dfe5e05be24d3ac",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.3",
"size": 57358,
"upload_time": "2019-01-22T17:47:09",
"url": "https://files.pythonhosted.org/packages/59/34/0468638c5bf5c1df65d10725f44999a3220a9a5ff5cbc15304677b3096bc/ftfy-5.5.1.tar.gz"
}
],
"5.6": [
{
"comment_text": "",
"digests": {
"md5": "3a045f4ee8c190c0adfc20c22a21f94a",
"sha256": "6d7509c45e602dec890f0f6ee0623a8b5f50ec1188ac7ab9535e18e572c99bcc"
},
"downloads": -1,
"filename": "ftfy-5.6.tar.gz",
"has_sig": false,
"md5_digest": "3a045f4ee8c190c0adfc20c22a21f94a",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.4",
"size": 58808,
"upload_time": "2019-08-07T21:13:53",
"url": "https://files.pythonhosted.org/packages/75/ca/2d9a5030eaf1bcd925dab392762b9709a7ad4bd486a90599d93cd79cb188/ftfy-5.6.tar.gz"
}
]
},
"urls": [
{
"comment_text": "",
"digests": {
"md5": "3a045f4ee8c190c0adfc20c22a21f94a",
"sha256": "6d7509c45e602dec890f0f6ee0623a8b5f50ec1188ac7ab9535e18e572c99bcc"
},
"downloads": -1,
"filename": "ftfy-5.6.tar.gz",
"has_sig": false,
"md5_digest": "3a045f4ee8c190c0adfc20c22a21f94a",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.4",
"size": 58808,
"upload_time": "2019-08-07T21:13:53",
"url": "https://files.pythonhosted.org/packages/75/ca/2d9a5030eaf1bcd925dab392762b9709a7ad4bd486a90599d93cd79cb188/ftfy-5.6.tar.gz"
}
]
}