{
"info": {
"author": "4teamwork AG",
"author_email": "mailto:info@4teamwork.ch",
"bugtrack_url": null,
"classifiers": [
"Framework :: Plone",
"Framework :: Plone :: 4.2",
"Framework :: Plone :: 4.3",
"Framework :: Plone :: 5.1",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Programming Language :: Python",
"Topic :: Software Development"
],
"description": "ftw.tika\n========\n\nThis product integrates `Apache Tika `_ for full text\nindexing with **Plone** by providing portal transforms to ``text/plain`` for the\nvarious document formats supported by Tika.\n\nCompatibility\n-------------\n\n``ftw.tika`` is compatible with Plone 4.x and the Tika versions listed below\n(Plone and Tika versions can be mixed and matched).\n\n+------------+------------+\n| Tika 1.6 | Plone 4.2 |\n+------------+------------+\n| Tika 1.7 | Plone 4.3 |\n+------------+------------+\n| Tika 1.8 | Plone 5.1 |\n+------------+------------+\n| Tika 1.9 | |\n+------------+------------+\n| Tika 1.10 | |\n+------------+------------+\n| Tika 1.11 | |\n+------------+------------+\n\n\nSupported Formats\n=================\n\nInput Formats\n-------------\n\n* Microsoft Office formats (Office Open XML)\n\n - ``*.docx`` Word Documents\n - ``*.dotx`` Word Templates\n - ``*.xlsx`` Excel Sheets\n - ``*.xltx`` Excel Templates\n - ``*.pptx`` Powerpoint Presentations\n - ``*.potx`` Powerpoint Templates\n - ``*.ppsx`` Powerpoint Slideshows\n\n* Legacy Microsoft Office (97) formats\n* Rich Text Format\n* OpenOffice ODF formats\n* OpenOffice 1.x formats\n* Common Adobe formats (InDesign, Illustrator, Photoshop)\n* PDF documents\n* WordPerfect documents\n* E-Mail messages\n\n\nSee the `mimetypes `_\nmodule for details on the MIME types corresponding to these formats.\n\n\nFormats supported by Tika, but not wired up (yet)\n-------------------------------------------------\n\n* Electronic Publication Format\n* Compression and packaging formats\n* Audio formats\n* Image formats\n* Video formats\n* Java class files and archives\n* The mbox format\n\nSee the `Supported Document Formats `_\npage on the Apache Tika Wiki for details.\n\n\nOutput Formats\n--------------\n\n* ``text/plain``\n\n\nInstallation\n============\n\nThe preferred method to run the Tika JAX-RS server as a daemon. Although it is\npossible to run Tika without a daemon (by booting it up for each time a file\nis converted), the daemon is a lot faster.\n\nBoth methods require ``tika-app.jar`` to be downloaded and some ZCML\nconfiguration for ``ftw.tika``. The daemon method also requires the JAX-RS\n``tika-server.app`` to be downloaded.\n\nBelow are some configuration examples.\n\nDaemon buildout example\n-----------------------\n\nSee the included `tika.cfg`_ for a deamon example that you can adjust as\nnecessary, copy into your buildout and extend from:\n\n.. code:: ini\n\n [buildout]\n parts +=\n tika-app-download\n tika-server-download\n tika-server\n\n [tika]\n server-port = 9998\n zcml =\n \n \n \n\n [tika-app-download]\n recipe = hexagonit.recipe.download\n url = http://repo1.maven.org/maven2/org/apache/tika/tika-app/1.11/tika-app-1.11.jar\n md5sum = c292fbb0b28fbe44f915229afb839db8\n download-only = true\n filename = tika-app.jar\n\n [tika-server-download]\n recipe = hexagonit.recipe.download\n url = http://repo1.maven.org/maven2/org/apache/tika/tika-server/1.11/tika-server-1.11.jar\n md5sum = 3c8fb21140213a2f3fbac770358034ab\n download-only = true\n filename = tika-server.jar\n\n [tika-server]\n recipe = collective.recipe.scriptgen\n cmd = java\n arguments = -jar ${tika-server-download:destination}/${tika-server-download:filename} --port ${tika:server-port} -includeStack\n\n [instance]\n zcml-additional = ${tika:zcml}\n eggs += ftw.tika\n\n\n.. note:: The ``-includeStack`` command line option for the Tika JAXRS server\n is only available for Tika >= 1.8. If you're using an older version of Tika,\n omit it from the arguments.\n The option will make the Tika JAXRS server return Java stack traces in the\n response body in case of conversion failures, and therefore allow\n ``ftw.tika`` to provide more detailed error logging.\n\n\nIf your deployment buildout is based on the deployment buildouts included\nin the `ftw-buildouts`_ repository on github, you can simply extend the\n``tika-jaxrs-server.cfg`` and you have everything configured:\n\n.. code:: ini\n\n [buildout]\n extends =\n https://raw.github.com/4teamwork/ftw-buildouts/master/production.cfg\n https://raw.github.com/4teamwork/ftw-buildouts/master/zeoclients/4.cfg\n https://raw.github.com/4teamwork/ftw-buildouts/master/tika-jaxrs-server.cfg\n\n deployment-number = 05\n\n filestorage-parts =\n www.mywebsite.com\n\n instance-eggs =\n mywebsite\n\n\nNon-daemon buildout example\n---------------------------\n\nNote that running Tika in non-daemon mode is very, very slow!\n\nWhen you don't want to use Tika as daemon, you can simply just configure\nthe path to the ``tika-app.jar`` in the ``ftw.tika`` ZCML configuration and it\nwill fire up ``tika-app.jar`` (in a new JVM) every time something needs to be\nconverted.\n\nHere is a short example of how to download the ``tika-app.jar`` and\nconfiguring ``ftw.tika`` with buildout:\n\n.. code:: ini\n\n [buildout]\n parts +=\n tika-app\n\n [tika-app]\n recipe = hexagonit.recipe.download\n url = http://repo1.maven.org/maven2/org/apache/tika/tika-app/1.11/tika-app-1.11.jar\n md5sum = c292fbb0b28fbe44f915229afb839db8\n download-only = true\n filename = tika-app.jar\n\n [instance]\n eggs += ftw.tika\n zcml-additional =\n \n \n \n\n\nDifferent Host buildout example\n-------------------------------\n\nIf you already have a tika server (f.e. docker) you can connect to it without\nhaving to install it into the plone instance. Unfortunately if the system run\ninto a timeout it will still try to use the local one as backup. (And produce\nan error in the log file)\n\n.. code:: ini\n\n [buildout]\n\n [tika]\n server-port = 9998\n server-host = myhost\n server-timeout = 10\n zcml =\n \n \n \n\n [instance]\n zcml-additional = ${tika:zcml}\n eggs += ftw.tika\n\n\nYou have the following configuration Options:\n\n* ``host``: the host where tika is running\n* ``port``: the port of the tika server\n* ``timeout``: you can define the connection timeout of the server in seconds\n\n``timeout`` defaults to 10 seconds and is configurable for your needs.\n0 means no timeout at all.\n\n\nInstalling ftw.tika in Plone\n----------------------------\n\n- Install ``ftw.tika`` by adding it to the list of eggs in your buildout.\n (The buildout examples above include adding ``ftw.tika`` to the eggs).\n\n.. code:: ini\n\n [instance]\n eggs +=\n ftw.tika\n\n- Run buildout and start your instance\n\n- Go to Site Setup of your Plone site and activate the ``ftw.tika`` add-on,\n or depend on the ``ftw.tika:default`` profile from your package's\n ``metadata.xml``.\n\n\nUninstalling ftw.tika\n---------------------\n\n``ftw.tika`` has an uninstall profile. To uninstall ``ftw.tika``, import the\n``ftw.tika:uninstall`` profile using the ``portal_setup`` tool.\n\n\nConfiguration\n=============\n\n``ftw.tika`` expects to be provided with a path to an installed\n``tika-app.jar``. This can be done through ZCML, and therefore also\nthrough buildout.\n\n\nConfiguration in ZCML\n---------------------\n\nThe path to the ``tika-app.jar`` file must be configured in ZCML.\n\nIf you used the supplied\n`tika.cfg `_\nas described above, you can reference the download location directly from\nbuildout by using ``${tika:destination}/${tika:filename}``:\n\n.. code:: ini\n\n [instance]\n zcml-additional =\n \n \n \n\nIf you installed Tika yourself, just set ``path=\"/path/to/tika\"`` accordingly.\n\n\nUsage\n=====\n\nTo use ``ftw.tika``, simply ask the ``portal_transforms`` tool for a\ntransformation to ``text/plain`` from one of the input formats supported by\n``ftw.tika``:\n\n.. code:: python\n\n namedfile = self.context.file\n transform_tool = getToolByName(self.context, 'portal_transforms')\n\n stream = transform_tool.convertTo(\n 'text/plain',\n namedfile.data,\n mimetype=namedfile.contentType)\n plain_text = stream and stream.getData() or ''\n\n\nCaching\n-------\n\nIf you want the result of the transform to be cached, you'll need to pass a\npersistent ZODB object to `transform_tool.convertTo()` to store the cached\nresult on.\n\nFor example, for a ``NamedBlobFile`` versioned with CMFEditions you'd\nuse ``namedfile.data`` to access the data of the current working copy, and\npass ``namedfile._blob`` as the object for the cache to be stored on (the\n``namedfile`` is always the same instance for any version, only the ``_blob``\nchanges):\n\n.. code:: python\n\n stream = transform_tool.convertTo(\n 'text/plain',\n namedfile.data,\n mimetype=namedfile.contentType,\n object=namedfile._blob)\n\n\nStand-alone converter\n---------------------\n\nThe code calling Tika is encapsulated in its own class, so if for some reason\nyou don't want to use the ``portal_transforms`` tool, you can also use the\nconverter directly by just instanciating it:\n\n.. code:: python\n\n from ftw.tika.converter import TikaConverter\n\n data = StringIO('foo')\n converter = TikaConverter(path=\"/path/to/tika-app.jar\")\n plain_text = converter.convert(data)\n\nThe ``convert()`` method accepts either a data string or a file-like stream\nobject. If no ``path`` keyword argument is supplied, the converter tries to\nget the path to the ``tika-app.jar`` from the ZCML configuration.\n\n\nError logging\n-------------\n\nIn order to get more detailed error logging when using the Tika JAXRS server,\nyou can launch it with the ``-includeStack`` command line option and set the\nenvironment variable ``FTW_TIKA_VERBOSE_LOGGING`` to something truthy.\n\n``ftw.tika`` will then additionally log the output from Tika (which should\ncontain the Java stack trace) in case of a conversion failure, giving you more\ninformation as to why the conversion failed.\n\n\nLinks\n=====\n\n- Github: https://github.com/4teamwork/ftw.tika\n- Issues: https://github.com/4teamwork/ftw.tika/issues\n- Pypi: http://pypi.python.org/pypi/ftw.tika\n- Continuous integration: https://jenkins.4teamwork.ch/search?q=ftw.tika\n- Apache Tika: http://tika.apache.org\n\n\nCopyright\n=========\n\nThis package is copyright by `4teamwork `_.\n\n``ftw.tika`` is licensed under GNU General Public License, version 2.\n\n\n.. _ftw-buildouts: https://github.com/4teamwork/ftw-buildouts#production\n.. _tika.cfg: https://github.com/4teamwork/ftw.tika/blob/master/tika.cfg\n\nChangelog\n=========\n\n\n2.10.0 (2019-09-04)\n-------------------\n\n- Port to Plone 5.1\n\n\n2.9.0 (2017-12-19)\n------------------\n\n- Remove local fallback when server fails. [jone]\n\n2.8.0 (2017-12-18)\n------------------\n\n- Drop Plone 4.1 support. [jone]\n\n\n2.7.0 (2016-03-15)\n------------------\n\n- Use requests session. [jone]\n\n- Make connection timeout configurable. [dready]\n\n\n2.6.0 (2015-10-27)\n------------------\n\n- Add support for Tika 1.11\n [lgraf]\n\n\n2.5.0 (2015-10-27)\n------------------\n\n- Add support for Tika 1.10\n [lgraf]\n\n\n2.4.0 (2015-10-27)\n------------------\n\n- Add support for Tika 1.9\n [lgraf]\n\n\n2.3.0 (2015-10-27)\n------------------\n\n- Fall back to local Tika on any RequestException, not just Timeout.\n [lgraf]\n\n- Make use of the fact that Tika JAXRS server now can return the Java stack\n traces in the response body, allowing ftw.tika to provide better error\n logging in the case of conversion failures (for example, detecting that\n conversion failed because a document is password protected).\n [lgraf]\n\n- Add support for Tika 1.8\n [lgraf]\n\n\n2.2.0 (2015-10-25)\n------------------\n\n- Add support for Tika 1.7\n [lgraf]\n\n\n2.1.0 (2015-10-25)\n------------------\n\n- Add support for Tika 1.6\n [lgraf]\n\n\n2.0.1 (2014-12-08)\n------------------\n\n- Set a default connection timeout of 10s for requests to Tika JAXRS server.\n [lgraf]\n\n\n2.0 (2014-11-24)\n----------------\n\n- Switch to Tika JAXRS server component (tika-server).\n [lgraf]\n\n\n1.1.2 (2014-09-01)\n------------------\n\n- Changed tika source to archive.apache.org.\n [lknoepfel]\n\n- Extend integration tests to test conversion of all common\n formats we claim to support.\n [lgraf]\n\n- Updated tika to version 1.5.\n Updated detection of protected office files.\n [lknoepfel]\n\n\n1.1.1 (2014-04-01)\n------------------\n\n- Only log a warning on protected PDFs / MS Office documents.\n [jone]\n\n\n1.1.0 (2014-03-14)\n------------------\n\n- Add support for running tika as a deamon.\n The deamon speeds up the conversion from approximately\n 1.1 seconds per document to 0.06 seconds.\n [jone]\n\n\n1.0 (2013-11-29)\n----------------\n\n- First implementation.\n [lgraf]",
"description_content_type": "",
"docs_url": null,
"download_url": "",
"downloads": {
"last_day": -1,
"last_month": -1,
"last_week": -1
},
"home_page": "https://github.com/4teamwork/ftw.tika",
"keywords": "plone ftw tika full text indexing apache",
"license": "GPL2",
"maintainer": "",
"maintainer_email": "",
"name": "ftw.tika",
"package_url": "https://pypi.org/project/ftw.tika/",
"platform": "",
"project_url": "https://pypi.org/project/ftw.tika/",
"project_urls": {
"Homepage": "https://github.com/4teamwork/ftw.tika"
},
"release_url": "https://pypi.org/project/ftw.tika/2.10.0/",
"requires_dist": null,
"requires_python": "",
"summary": "Apache Tika integration for Plone using portal transforms.",
"version": "2.10.0"
},
"last_serial": 5823351,
"releases": {
"1.0": [
{
"comment_text": "",
"digests": {
"md5": "37ac856c216cb9be02d2ef8def6c1567",
"sha256": "f08b36d573ddcd7ef49747c681a43025c9ba2458799f0e6590c04e5a861a9599"
},
"downloads": -1,
"filename": "ftw.tika-1.0.zip",
"has_sig": false,
"md5_digest": "37ac856c216cb9be02d2ef8def6c1567",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 32866,
"upload_time": "2013-11-29T15:40:59",
"url": "https://files.pythonhosted.org/packages/dd/39/6f5df550b73fb8e609fb4ddd65347c187b63a005da322dc788b4c649d61e/ftw.tika-1.0.zip"
}
],
"1.1.0": [
{
"comment_text": "",
"digests": {
"md5": "ee0a1333cffc5d5c00b4ba5f18d62e9e",
"sha256": "671a470b122948bd001aee1c72796240b394b95ebedfb04b088f5e42349802f5"
},
"downloads": -1,
"filename": "ftw.tika-1.1.0.zip",
"has_sig": false,
"md5_digest": "ee0a1333cffc5d5c00b4ba5f18d62e9e",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 53257,
"upload_time": "2014-03-14T11:10:21",
"url": "https://files.pythonhosted.org/packages/a7/8c/755065627b7ec99c26b4d1f27993ec39ae7c69c0e4aa5c27a868129727cd/ftw.tika-1.1.0.zip"
}
],
"1.1.1": [
{
"comment_text": "",
"digests": {
"md5": "beba3aa34f7dd994bee21dfb262877c9",
"sha256": "09a995e6dee2c556326669d0fc11e58859cfb814749e0cf653b5e58539997f09"
},
"downloads": -1,
"filename": "ftw.tika-1.1.1.zip",
"has_sig": false,
"md5_digest": "beba3aa34f7dd994bee21dfb262877c9",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 82932,
"upload_time": "2014-04-01T07:24:40",
"url": "https://files.pythonhosted.org/packages/af/37/0bc2a09b8972abf7e56babeb7b2ce0ccadaaf1963cbd6caf77f3c9eb6dd9/ftw.tika-1.1.1.zip"
}
],
"1.1.2": [
{
"comment_text": "",
"digests": {
"md5": "18ecf328ee6d9dab493466ade9d3c361",
"sha256": "8050cb904e436341d598fb5798e28fe0496a1250131ada248b3b10e94a332551"
},
"downloads": -1,
"filename": "ftw.tika-1.1.2.zip",
"has_sig": false,
"md5_digest": "18ecf328ee6d9dab493466ade9d3c361",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 188365,
"upload_time": "2014-09-01T12:14:28",
"url": "https://files.pythonhosted.org/packages/1e/55/ab2ed5599305acd3019fb36fe440e28f2228edb66f836bf94b552ddc330e/ftw.tika-1.1.2.zip"
}
],
"2.0": [
{
"comment_text": "",
"digests": {
"md5": "c1f6c94c57c39629ef52509b47d5fe8f",
"sha256": "a7c7a92ae148dc385549c35bc6abf2d6aab6100472ae718c143334ed089c817b"
},
"downloads": -1,
"filename": "ftw.tika-2.0.zip",
"has_sig": false,
"md5_digest": "c1f6c94c57c39629ef52509b47d5fe8f",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 188021,
"upload_time": "2014-11-24T10:17:55",
"url": "https://files.pythonhosted.org/packages/73/51/c4a65077a921bd775cee6d0cce23e8aa1f37634f013bb87b1e73ab30ac6d/ftw.tika-2.0.zip"
}
],
"2.0.1": [
{
"comment_text": "",
"digests": {
"md5": "779607e7b155900b9ded883b03a98dba",
"sha256": "15507d4324784f9ebbcb94c150deca0decd9c2924a16b21a0501f9f2c07c2347"
},
"downloads": -1,
"filename": "ftw.tika-2.0.1.zip",
"has_sig": false,
"md5_digest": "779607e7b155900b9ded883b03a98dba",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 188439,
"upload_time": "2014-12-08T13:42:59",
"url": "https://files.pythonhosted.org/packages/80/31/7e2860ad892425768ac969a985e4127eb7a86c68506e99530bcb0b6d173a/ftw.tika-2.0.1.zip"
}
],
"2.1.0": [
{
"comment_text": "",
"digests": {
"md5": "2b352af08d53425b86911fe8689109f1",
"sha256": "ec2f5cac2841d5a447dbdf6c90506e7bc2d48cb6aa57dd1961b42fceb0427ce8"
},
"downloads": -1,
"filename": "ftw.tika-2.1.0.zip",
"has_sig": false,
"md5_digest": "2b352af08d53425b86911fe8689109f1",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 188717,
"upload_time": "2015-10-25T17:16:34",
"url": "https://files.pythonhosted.org/packages/ba/f1/21266724725f2563e4ac8c047c1782ec5e30eb5f3a627dfe6ef83983f7ad/ftw.tika-2.1.0.zip"
}
],
"2.10.0": [
{
"comment_text": "",
"digests": {
"md5": "4fb2b3681d3aa36de06518f3158e7af3",
"sha256": "8bf267dfe4c4e11be22afd312610f42992f8fff0936f0ce2746e4b0f7c8f6056"
},
"downloads": -1,
"filename": "ftw.tika-2.10.0.tar.gz",
"has_sig": false,
"md5_digest": "4fb2b3681d3aa36de06518f3158e7af3",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 175282,
"upload_time": "2019-09-04T08:48:05",
"url": "https://files.pythonhosted.org/packages/9b/43/f7a64a15e105794bf366ab456835ef68fa319e06036f1572d426cd3412ba/ftw.tika-2.10.0.tar.gz"
}
],
"2.2.0": [
{
"comment_text": "",
"digests": {
"md5": "74e205cd541c7a5c2fba2713dfabd989",
"sha256": "f6d2aef010c9feb3b65e1531f1cba6716a00b62fce30abed280759ac5c267930"
},
"downloads": -1,
"filename": "ftw.tika-2.2.0.zip",
"has_sig": false,
"md5_digest": "74e205cd541c7a5c2fba2713dfabd989",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 189213,
"upload_time": "2015-10-25T17:49:13",
"url": "https://files.pythonhosted.org/packages/41/cb/4bb1d14a979c29c78bf8ecd48f0a5d4fc05165c2b2e92cd31400dd3fd3f8/ftw.tika-2.2.0.zip"
}
],
"2.3.0": [
{
"comment_text": "",
"digests": {
"md5": "4d83808e08258cbf97bbb271fc7ff298",
"sha256": "d81fd8df161ea51438a7618d68e2cd68572c2b8e2d05b43221b79da9c14bf321"
},
"downloads": -1,
"filename": "ftw.tika-2.3.0.zip",
"has_sig": false,
"md5_digest": "4d83808e08258cbf97bbb271fc7ff298",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 192163,
"upload_time": "2015-10-27T16:34:54",
"url": "https://files.pythonhosted.org/packages/ad/96/83974c7c0dff1f99ebf557736efe3d90484d9d095c8721898ce595e0a3d9/ftw.tika-2.3.0.zip"
}
],
"2.4.0": [
{
"comment_text": "",
"digests": {
"md5": "3508411e54b8a4a2b508255fbbe993d3",
"sha256": "02639ab8c58521b39143607e3ea602e78a0df02391ca63a90f23c629e374ff07"
},
"downloads": -1,
"filename": "ftw.tika-2.4.0.zip",
"has_sig": false,
"md5_digest": "3508411e54b8a4a2b508255fbbe993d3",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 192257,
"upload_time": "2015-10-27T17:01:02",
"url": "https://files.pythonhosted.org/packages/4c/2c/a9b0c9c79bdd7514947fbbc3aa6f31921fd57f4f4fe63c682a26a89f375c/ftw.tika-2.4.0.zip"
}
],
"2.5.0": [
{
"comment_text": "",
"digests": {
"md5": "b54b91a39331a10eb668c487a22e1070",
"sha256": "5f5f5dcb5df96ce44db68d3abe547a11beb7e9e24ec99f986f34932cbf4353d7"
},
"downloads": -1,
"filename": "ftw.tika-2.5.0.zip",
"has_sig": false,
"md5_digest": "b54b91a39331a10eb668c487a22e1070",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 192373,
"upload_time": "2015-10-27T17:34:20",
"url": "https://files.pythonhosted.org/packages/2a/9d/38a52c1ca24cc6bebf061037816fec5c40ab4ef899c9cdc8c084af295d05/ftw.tika-2.5.0.zip"
}
],
"2.6.0": [
{
"comment_text": "",
"digests": {
"md5": "cc46a9b53785b60942ab48960267d6f9",
"sha256": "95aa7e3d95e964d29afecfa10e88bcc5fd54b0d24ddb88892dd76467a7e30ab2"
},
"downloads": -1,
"filename": "ftw.tika-2.6.0.zip",
"has_sig": false,
"md5_digest": "cc46a9b53785b60942ab48960267d6f9",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 192465,
"upload_time": "2015-10-27T17:47:55",
"url": "https://files.pythonhosted.org/packages/e3/1c/ade21a53ff8e8d05ff24ec690ed7ac4cbfe6e8defc6e74b6a354430f9edf/ftw.tika-2.6.0.zip"
}
],
"2.7.0": [
{
"comment_text": "",
"digests": {
"md5": "82f13e37863f33ec062ae3761bfa6776",
"sha256": "c17332fa4e12ae9b23da2665f8bd42e5e7087aa28ea54b9196f0995210e5f8f4"
},
"downloads": -1,
"filename": "ftw.tika-2.7.0.tar.gz",
"has_sig": false,
"md5_digest": "82f13e37863f33ec062ae3761bfa6776",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 171511,
"upload_time": "2016-03-15T13:03:00",
"url": "https://files.pythonhosted.org/packages/ae/c2/2f12915b0acd95350e0a103f7262c1e5f03cd9abcde7fe28f4a05cf0571b/ftw.tika-2.7.0.tar.gz"
}
],
"2.8.0": [
{
"comment_text": "",
"digests": {
"md5": "944f65cc229beafa7048b5a4f06167a2",
"sha256": "fd1732817d119f6fe54b81bb630936ef69f01c7390d374b43ea951eee64b2bcf"
},
"downloads": -1,
"filename": "ftw.tika-2.8.0.tar.gz",
"has_sig": false,
"md5_digest": "944f65cc229beafa7048b5a4f06167a2",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 171130,
"upload_time": "2017-12-18T16:42:16",
"url": "https://files.pythonhosted.org/packages/c7/61/819ad86c4c7f76a4fb02558dce4c3be92e9efaa977f980428f4061d5bdde/ftw.tika-2.8.0.tar.gz"
}
],
"2.9.0": [
{
"comment_text": "",
"digests": {
"md5": "b88f4acff3a88c420010914d9db90653",
"sha256": "947161ad545eb4eb6ee1478f6609f6f22203a3c793f34adf1441a5d5dbecd6c9"
},
"downloads": -1,
"filename": "ftw.tika-2.9.0.tar.gz",
"has_sig": false,
"md5_digest": "b88f4acff3a88c420010914d9db90653",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 171255,
"upload_time": "2017-12-19T08:25:58",
"url": "https://files.pythonhosted.org/packages/19/db/3d62e3a57344f80472764397daf88523c01f51c7d60778705a4835b4ab27/ftw.tika-2.9.0.tar.gz"
}
]
},
"urls": [
{
"comment_text": "",
"digests": {
"md5": "4fb2b3681d3aa36de06518f3158e7af3",
"sha256": "8bf267dfe4c4e11be22afd312610f42992f8fff0936f0ce2746e4b0f7c8f6056"
},
"downloads": -1,
"filename": "ftw.tika-2.10.0.tar.gz",
"has_sig": false,
"md5_digest": "4fb2b3681d3aa36de06518f3158e7af3",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 175282,
"upload_time": "2019-09-04T08:48:05",
"url": "https://files.pythonhosted.org/packages/9b/43/f7a64a15e105794bf366ab456835ef68fa319e06036f1572d426cd3412ba/ftw.tika-2.10.0.tar.gz"
}
]
}