{ "info": { "author": "Markus Killer", "author_email": "m.killer@langui.ch", "bugtrack_url": null, "classifiers": [ "Development Status :: 3 - Alpha", "Intended Audience :: Developers", "Intended Audience :: Education", "Intended Audience :: Information Technology", "Intended Audience :: Science/Research", "License :: OSI Approved :: MIT License", "Natural Language :: German", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", "Topic :: Scientific/Engineering", "Topic :: Scientific/Engineering :: Information Analysis", "Topic :: Text Processing", "Topic :: Text Processing :: Linguistic" ], "description": "\n==================\ntextblob-de README\n==================\n\n\n.. image:: https://img.shields.io/pypi/v/textblob-de.svg\n :target: https://pypi.python.org/pypi/textblob-de/\n :alt: textblob_de - latest PyPI version\n\n.. image:: https://travis-ci.org/markuskiller/textblob-de.png?branch=dev\n :target: https://travis-ci.org/markuskiller/textblob-de\n :alt: Travis-CI\n\n.. image:: https://readthedocs.org/projects/textblob-de/badge/?version=latest\n :target: http://textblob-de.readthedocs.org/en/latest/\n :alt: Documentation Status\n\n.. image:: https://img.shields.io/pypi/dm/textblob-de.svg\n :target: https://pypi.python.org/pypi/textblob-de/\n :alt: Number of PyPI downloads\n\n.. image:: https://img.shields.io/github/license/markuskiller/textblob-de.svg\n :target: http://choosealicense.com/licenses/mit/\n :alt: LICENSE info\n\nGerman language support for `TextBlob `_ by Steven Loria.\n\nThis python package is being developed as a ``TextBlob`` **Language Extension**.\nSee `Extension Guidelines `_ for details.\n\n\nFeatures\n--------\n\n* **NEW:** Works with Python3.7\n* All directly accessible ``textblob_de`` classes (e.g. ``Sentence()`` or ``Word()``) are initialized with default models for German\n* Properties or methods that do not yet work for German raise a ``NotImplementedError``\n* German sentence boundary detection and tokenization (``NLTKPunktTokenizer``)\n* Consistent use of specified tokenizer for all tools (``NLTKPunktTokenizer`` or ``PatternTokenizer``)\n* Part-of-speech tagging (``PatternTagger``) with keyword ``include_punc=True`` (defaults to ``False``)\n* Tagset conversion in ``PatternTagger`` with keyword ``tagset='penn'|'universal'|'stts'`` (defaults to ``penn``)\n* Parsing (``PatternParser``) with all ``pattern`` keywords, plus ``pprint=True`` (defaults to ``False``)\n* Noun Phrase Extraction (``PatternParserNPExtractor``)\n* Lemmatization (``PatternParserLemmatizer``)\n* Polarity detection (``PatternAnalyzer``) - Still **EXPERIMENTAL**, does not yet have information on subjectivity\n* Full ``pattern.text.de`` API support on Python3\n* Supports Python 2 and 3\n* See `working features overview `_ for details\n\n\nInstalling/Upgrading\n--------------------\n::\n\n $ pip install -U textblob-de\n $ python -m textblob.download_corpora\n\n\nOr the latest development release (apparently this does not always work on Windows see \n`issues #1744/5 `_ for details)::\n\n $ pip install -U git+https://github.com/markuskiller/textblob-de.git@dev\n $ python -m textblob.download_corpora\n\n\n.. note::\n\n ``TextBlob`` will be installed/upgraded automatically when running \n ``pip install``. The second line (``python -m textblob.download_corpora``) \n downloads/updates nltk corpora and language models used in ``TextBlob``.\n\n\nUsage\n-----\n\n.. code-block:: python\n\n >>> from textblob_de import TextBlobDE as TextBlob\n >>> text = '''Heute ist der 3. Mai 2014 und Dr. Meier feiert seinen 43. Geburtstag. \n Ich muss unbedingt daran denken, Mehl, usw. f\u00fcr einen Kuchen einzukaufen. Aber leider \n habe ich nur noch EUR 3.50 in meiner Brieftasche.'''\n >>> blob = TextBlob(text)\n >>> blob.sentences\n [Sentence(\"Heute ist der 3. Mai 2014 und Dr. Meier feiert seinen 43. Geburtstag.\"),\n Sentence(\"Ich muss unbedingt daran denken, Mehl, usw. f\u00fcr einen Kuchen einzukaufen.\"),\n Sentence(\"Aber leider habe ich nur noch EUR 3.50 in meiner Brieftasche.\")]\n >>> blob.tokens\n WordList(['Heute', 'ist', 'der', '3.', 'Mai', ...]\n >>> blob.tags\n [('Heute', 'RB'), ('ist', 'VB'), ('der', 'DT'), ('3.', 'LS'), ('Mai', 'NN'), \n ('2014', 'CD'), ...]\n # Default: Only noun_phrases that consist of two or more meaningful parts are displayed.\n # Not perfect, but a start (relies heavily on parser accuracy)\n >>> blob.noun_phrases\n WordList(['Mai 2014', 'Dr. Meier', 'seinen 43. Geburtstag', 'Kuchen einzukaufen', \n 'meiner Brieftasche'])\n\n\n.. code-block:: python\n\n >>> blob = TextBlob(\"Das Auto ist sehr sch\u00f6n.\")\n >>> blob.parse()\n 'Das/DT/B-NP/O Auto/NN/I-NP/O ist/VB/B-VP/O sehr/RB/B-ADJP/O sch\u00f6n/JJ/I-ADJP/O'\n >>> from textblob_de import PatternParser\n >>> blob = TextBlobDE(\"Das ist ein sch\u00f6nes Auto.\", parser=PatternParser(pprint=True, lemmata=True))\n >>> blob.parse()\n WORD TAG CHUNK ROLE ID PNP LEMMA \n\n Das DT - - - - das \n ist VB VP - - - sein \n ein DT NP - - - ein \n sch\u00f6nes JJ NP ^ - - - sch\u00f6n \n Auto NN NP ^ - - - auto \n . . - - - - . \n >>> from textblob_de import PatternTagger\n >>> blob = TextBlob(text, pos_tagger=PatternTagger(include_punc=True))\n [('Das', 'DT'), ('Auto', 'NN'), ('ist', 'VB'), ('sehr', 'RB'), ('sch\u00f6n', 'JJ'), ('.', '.')]\n\n\n.. code-block:: python\n\n >>> blob = TextBlob(\"Das Auto ist sehr sch\u00f6n.\")\n >>> blob.sentiment\n Sentiment(polarity=1.0, subjectivity=0.0)\n >>> blob = TextBlob(\"Das ist ein h\u00e4ssliches Auto.\") \n >>> blob.sentiment\n Sentiment(polarity=-1.0, subjectivity=0.0)\n\n\n.. warning::\n\n **WORK IN PROGRESS:** The German polarity lexicon contains only uninflected\n forms and there are no subjectivity scores yet. As of version 0.2.3, lemmatized\n word forms are submitted to the ``PatternAnalyzer``, increasing the accuracy\n of polarity values. New in version 0.2.7: return type of ``.sentiment`` is now\n adapted to the main `TextBlob `_ library (``:rtype: namedtuple``).\n\n\n.. code-block:: python\n\n >>> blob.words.lemmatize()\n WordList(['das', 'sein', 'ein', 'h\u00e4sslich', 'Auto'])\n >>> from textblob_de.lemmatizers import PatternParserLemmatizer\n >>> _lemmatizer = PatternParserLemmatizer()\n >>> _lemmatizer.lemmatize(\"Das ist ein h\u00e4ssliches Auto.\")\n [('das', 'DT'), ('sein', 'VB'), ('ein', 'DT'), ('h\u00e4sslich', 'JJ'), ('Auto', 'NN')]\n\n\n.. note::\n\n Make sure that you use unicode strings on Python2 if your input contains\n non-ascii characters (e.g. ``word = u\"sch\u00f6n\"``).\n\n\nAccess to ``pattern`` API in Python3\n------------------------------------\n\n.. code-block:: python\n\n >>> from textblob_de.packages import pattern_de as pd\n >>> print(pd.attributive(\"neugierig\", gender=pd.FEMALE, role=pd.INDIRECT, article=\"die\"))\n neugierigen\n\n.. note::\n\n Alternatively, the path to ``textblob_de/ext`` can be added to the ``PYTHONPATH``, which allows\n the use of ``pattern.de`` in almost the same way as described in its \n `Documentation `_.\n The only difference is that you will have to prepend an underscore: \n ``from _pattern.de import ...``. This is a precautionary measure in case the ``pattern``\n library gets native Python3 support in the future.\n\n\nDocumentation and API Reference\n-------------------------------\n\n- http://textblob-de.readthedocs.org/en/latest\n\n\nRequirements\n------------\n\n- Python >= 2.6 or >= 3.3\n\nTODO\n----\n\n- `Planned Extensions `_\n- Additional PoS tagging options, e.g. NLTK tagging (``NLTKTagger``)\n- Improve noun phrase extraction (e.g. based on ``RFTagger`` output)\n- Improve sentiment analysis (find suitable subjectivity scores)\n- Improve functionality of ``Sentence()`` and ``Word()`` objects\n- Adapt more tests from the main `TextBlob `_ library (esp. for ``TextBlobDE()`` in ``test_blob.py``)\n\n\nLicense\n-------\n\nMIT licensed. See the bundled `LICENSE `_ file for more details.\n\n\nThanks\n------\n\nCoded with Wing IDE (free open source developer license)\n\n.. image:: https://wingware.com/images/wingware-logo-180x58.png\n :target: https://wingware.com/store/free\n :alt: Python IDE for Python - wingware.com\n\n\n\nChangelog\n---------\n\n0.4.3 (03/01/2019)\n++++++++++++++++++\n\n* Added support for Python3.7 (``StopIteration --> return``) `Pull Request #18 `_ (thanks @andrewmfiorillo)\n* Fixed tests for Google translation examples\n* Updated tox/Travis-CI config files to include latest Python & pypy versions\n* Updated sphinx_rtd_theme to version 0.4.2 to fix rendering problems on `RTD `_\n* Updated ``setup.py publish`` commands, ``Makefile`` & ``Manifest.in`` to new PiPy (using ``twine``)\n\n0.4.2 (02/05/2015)\n++++++++++++++++++\n\n* Removed dependency on `NLTK, `_ as it already is a `TextBlob `_ dependency\n* Temporary workaround for `NLTK Issue #824 `_ for tox/Travis-CI\n* (update 13/01/2015) `NLTK Issue #824 `_ fixed, workaround removed\n* Enabled ``pattern`` tagset conversion (``'penn'|'universal'|'stts'``) for ``PatternTagger``\n* Added tests for tagset conversion\n* Fixed test for Arabic translation example (Google translation has changed)\n* Added tests for lemmatizer\n* Bugfix: ``PatternAnalyzer`` no longer breaks on subsequent ocurrences of the same ``(word, tag)`` pairs on Python3 see comments to `Pull Request #11 `_\n* Bugfix/performance enhancement: Sentiment dictionary in ``PatternAnalyzer`` no longer reloaded for every sentence `Pull Request #11 `_ (thanks @Arttii)\n\n0.4.1 (03/10/2014)\n++++++++++++++++++\n\n* Docs hosted on `RTD `_\n* Removed dependency on nltk's depricated ``PunktWordTokenizer`` and replaced it with ``TreebankWordTokenizer`` see `nltk/nltk#746 (comment) `_ for details\n\n0.4.0 (17/09/2014)\n++++++++++++++++++\n\n* Fixed `Issue #7 `_ (restore ``textblob>=0.9.0`` compatibility)\n* Depend on ``nltk3``. Vendorized ``nltk`` was removed in ``textblob>=0.9.0``\n* Fixed ``ImportError`` on Python2 (``unicodecsv``)\n\n\n0.3.1 (29/08/2014)\n++++++++++++++++++\n\n* Improved ``PatternParserNPExtractor`` (less false positives in verb filter)\n* Made sure that all keyword arguments with default ``None`` are checked with ``is not None``\n* Fixed shortcut to ``_pattern.de`` in vendorized library\n* Added ``Makefile`` to facilitate development process\n* Added docs and API reference\n\n0.3.0 (14/08/2014)\n++++++++++++++++++\n\n* Fixed `Issue #5 `_ (text + space + period)\n\n0.2.9 (14/08/2014)\n++++++++++++++++++\n\n* Fixed tokenization in ``PatternParser`` (if initialized manually, punctuation was not always separated from words)\n* Improved handling of empty strings (Issue #3) and of strings containing single punctuation marks (Issue #4) in ``PatternTagger`` and ``PatternParser``\n* Added tests for empty strings and for strings containing single punctuation marks\n\n0.2.8 (14/08/2014)\n++++++++++++++++++\n\n* Fixed `Issue #3 `_ (empty string)\n* Fixed `Issue #4 `_ (space + punctuation)\n\n0.2.7 (13/08/2014)\n++++++++++++++++++\n\n* Fixed `Issue #1 `_ lemmatization of strings containing a forward slash (``/``)\n* Enhancement `Issue #2 `_ use the same rtype as ``textblob`` for sentiment detection.\n* Fixed tokenization in ``PatternParserLemmatizer``\n\n0.2.6 (04/08/2014)\n++++++++++++++++++\n\n* Fixed ``MANIFEST.in`` for package data in ``sdist``\n\n0.2.5 (04/08/2014)\n++++++++++++++++++\n\n* ``sdist`` is non-functional as important files are missing due to a misconfiguration in ``MANIFEST.in`` - does not affect ``wheels``\n* Major internal refactoring (but no backwards-incompatible API changes) with the aim of restoring complete compatibility to original ``pattern>=2.6`` library on Python2\n* Separation of ``textblob`` and ``pattern`` code\n* On Python2 the vendorized version of ``pattern.text.de`` is only used if original is not installed (same as ``nltk``)\n* Made ``pattern.de.pprint`` function and all parser keywords accessible to customise parser output\n* Access to complete ``pattern.text.de`` API on Python2 and Python3 ``from textblob_de.packages import pattern_de as pd``\n* ``tox`` passed on all major platforms (Win/Linux/OSX)\n\n0.2.3 (26/07/2014)\n++++++++++++++++++\n\n* Lemmatizer: ``PatternParserLemmatizer()`` extracts lemmata from Parser output\n* Improved polarity analysis through look-up of lemmatised word forms\n\n0.2.2 (22/07/2014)\n++++++++++++++++++\n\n* Option: Include punctuation in ``tags``/``pos_tags`` properties (``b = TextBlobDE(text, tagger=PatternTagger(include_punc=True))``)\n* Added ``BlobberDE()`` class initialized with German models\n* ``TextBlobDE()``, ``Sentence()``, ``WordList()`` and ``Word()`` classes are now all initialized with German models\n* Restored complete API compatibility with ``textblob.tokenizers`` module of the main `TextBlob `_ library\n\n0.2.1 (20/07/2014)\n++++++++++++++++++\n\n* Noun Phrase Extraction: ``PatternParserNPExtractor()`` extracts NPs from Parser output\n* Refactored the way ``TextBlobDE()`` passes on arguments and keyword arguments to individual tools\n* *Backwards-incompatible*: Deprecate ``parser_show_lemmata=True`` keyword in ``TextBlob()``. Use ``parser=PatternParser(lemmata=True)`` instead.\n\n0.2.0 (18/07/2014)\n++++++++++++++++++\n\n* vastly improved tokenization (``NLTKPunktTokenizer`` and ``PatternTokenizer`` with tests)\n* consistent use of specified tokenizer for all tools\n* ``TextBlobDE`` with initialized default models for German\n* Parsing (``PatternParser``) plus ``test_parsers.py``\n* **EXPERIMENTAL** implementation of Polarity detection (``PatternAnalyzer``)\n* first attempt at extracting German Polarity clues into ``de-sentiment.xml``\n* tox tests passing for py26, py27, py33 and py34\n\n0.1.3 (09/07/2014)\n++++++++++++++++++\n\n* First release on PyPI\n\n0.1.0 - 0.1.2 (09/07/2014)\n++++++++++++++++++++++++++\n\n* First release on github\n* A number of experimental releases for testing purposes\n* Adapted version badges, tests & travis-ci config\n* Code adapted from sample extension `textblob-fr `_\n* Language specific linguistic resources copied from `pattern-de `_\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/markuskiller/textblob-de", "keywords": "textblob,textblob_de,nlp,linguistics,nltk,pattern", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "textblob-de", "package_url": "https://pypi.org/project/textblob-de/", "platform": "", "project_url": "https://pypi.org/project/textblob-de/", "project_urls": { "Homepage": "https://github.com/markuskiller/textblob-de" }, "release_url": "https://pypi.org/project/textblob-de/0.4.3/", "requires_dist": [ "textblob (>=0.9.0)" ], "requires_python": "", "summary": "German language support for TextBlob.", "version": "0.4.3" }, "last_serial": 4654581, "releases": { "0.1.3": [ { "comment_text": "", "digests": { "md5": "940586667891b17ed6e960c065060443", "sha256": "ca811c232cd7c29041fd81965f0d92b662b8c4db0e24fb05eaf3400aee54a2b4" }, "downloads": -1, "filename": "textblob_de-0.1.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "940586667891b17ed6e960c065060443", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 409439, "upload_time": "2014-07-09T17:42:20", "url": "https://files.pythonhosted.org/packages/91/eb/45f3ecbb7ba30ac0910ee1611e015d93996c7d81d56a0bafc93932cb1b3a/textblob_de-0.1.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a8d4e23ddf2836f240d000f2539662f7", "sha256": "03f6c30f44e635f879b97ac5b2055c0fb747e9ebb69162ac1917fb2a7ee80f40" }, "downloads": -1, "filename": "textblob-de-0.1.3.tar.gz", "has_sig": false, "md5_digest": "a8d4e23ddf2836f240d000f2539662f7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 408198, "upload_time": "2014-07-09T17:42:12", "url": "https://files.pythonhosted.org/packages/1d/50/937dc70ddfa58a36c20ca462baa6c6ebaa7357f0c34e99162ebbf242b4ef/textblob-de-0.1.3.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "76699d08853d9a58c7e14cd3e6f4fb31", "sha256": "7aecb5d1f28fcccb33f5a76b7107c9543252aa7103000233e76731c06dc54f9c" }, "downloads": -1, "filename": "textblob_de-0.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "76699d08853d9a58c7e14cd3e6f4fb31", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 467890, "upload_time": "2014-07-18T21:46:23", "url": "https://files.pythonhosted.org/packages/3b/28/806160aa14b1663068c424a5874d5e8c44c0da82ee329ab38ed5d78b2426/textblob_de-0.2.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d8ba5fc1f8b9d7c25afd80ab62470dc6", "sha256": "654aed810009f68806a13730285897adca6b7363d3a0752515febd745a87fb2b" }, "downloads": -1, "filename": "textblob-de-0.2.0.tar.gz", "has_sig": false, "md5_digest": "d8ba5fc1f8b9d7c25afd80ab62470dc6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 464827, "upload_time": "2014-07-18T21:46:11", "url": "https://files.pythonhosted.org/packages/9d/16/f930de7734fcbe77f91140e666b3cd7712e74725323004d0343fb081000f/textblob-de-0.2.0.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "fbd91e84f2f5503f67021fc26b8a19f5", "sha256": "a0130d1736564556e396e9e5ce0a254612a25b599a6c64c31ad6fd8a56068bb3" }, "downloads": -1, "filename": "textblob_de-0.2.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "fbd91e84f2f5503f67021fc26b8a19f5", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 470500, "upload_time": "2014-07-20T14:49:32", "url": "https://files.pythonhosted.org/packages/2a/66/1b83ea7594e58d21aea42954eeaa1b6203a33cf3431355e64f46d7a15156/textblob_de-0.2.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7a1fc521cb1c19b1a2c26e0d5b167d24", "sha256": "a83177828a370e0feef4370310de47d0551798046aa161371a1a4ea26b10f315" }, "downloads": -1, "filename": "textblob-de-0.2.1.tar.gz", "has_sig": false, "md5_digest": "7a1fc521cb1c19b1a2c26e0d5b167d24", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 466970, "upload_time": "2014-07-20T14:49:25", "url": "https://files.pythonhosted.org/packages/89/40/94527019f0a7d470438e4f9de29f02083340a098bab3c4b151df9db12b81/textblob-de-0.2.1.tar.gz" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "197546cce7764756e9de87cd5a8ad563", "sha256": "911da455ffbbd4f928571e319c6c43a8665452a368cab704f8d1f84fa4634850" }, "downloads": -1, "filename": "textblob_de-0.2.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "197546cce7764756e9de87cd5a8ad563", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 480710, "upload_time": "2014-07-22T15:24:28", "url": "https://files.pythonhosted.org/packages/7b/18/01237bd0ffc4d0393fed5756a5f2c2be470cff6863fd59f77dd609c25cd7/textblob_de-0.2.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c5b0be4e0e2885e600fdb7884776a082", "sha256": "76c2ff29ebbe1337a3fd42a8e73d93ed32eeaa8d8ebb9d53d60c9ee2c42d8f01" }, "downloads": -1, "filename": "textblob-de-0.2.2.tar.gz", "has_sig": false, "md5_digest": "c5b0be4e0e2885e600fdb7884776a082", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 476100, "upload_time": "2014-07-22T15:24:21", "url": "https://files.pythonhosted.org/packages/47/1c/54d53466bfe6e11a4948d6f77d6e7b22bcf46f6f6cc9dea9e4edfe62b91c/textblob-de-0.2.2.tar.gz" } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "3b8534a49c6eb47884fd72c6ff9d1913", "sha256": "ee42d9fd71e78cb122ac89a4c2c1d35795c9920b6bf3a61b65d39211f66fa372" }, "downloads": -1, "filename": "textblob_de-0.2.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3b8534a49c6eb47884fd72c6ff9d1913", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 484269, "upload_time": "2014-07-26T20:13:31", "url": "https://files.pythonhosted.org/packages/cc/a4/ff8d76501b25ba0c5754a681148625f22ecd9de841547191accee13d6a56/textblob_de-0.2.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ff88f07553c6218aaf6af14ebd09ab5c", "sha256": "d1c54cc2dcfee460dbb76898c809922bc9176b5299442243517ed60cbad89614" }, "downloads": -1, "filename": "textblob-de-0.2.3.tar.gz", "has_sig": false, "md5_digest": "ff88f07553c6218aaf6af14ebd09ab5c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 478709, "upload_time": "2014-07-26T20:13:23", "url": "https://files.pythonhosted.org/packages/3e/b5/892a84d2a80bdb8abaae05d7ce580d9384069c3fd4dd69ff8b8010a1db34/textblob-de-0.2.3.tar.gz" } ], "0.2.4": [ { "comment_text": "", "digests": { "md5": "52e4b2506e9bd592e813b5dc6f2e1bd0", "sha256": "c9dd30ee80ae7ef6dc6ebc6ba3a2167474df2404713deaeca72b313df1cab0ce" }, "downloads": -1, "filename": "textblob_de-0.2.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "52e4b2506e9bd592e813b5dc6f2e1bd0", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 1010845, "upload_time": "2014-08-04T18:18:19", "url": "https://files.pythonhosted.org/packages/b3/13/d769ff3e2b1c2a57f6591e58165af8612e8ca6d6128041a3107e1987865c/textblob_de-0.2.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ad7d1df341a070176a874695d31bd1da", "sha256": "0df1b904e5ba10473ca8334791b1355ff60e0873b6a5c24b133d735a12140029" }, "downloads": -1, "filename": "textblob-de-0.2.4.tar.gz", "has_sig": false, "md5_digest": "ad7d1df341a070176a874695d31bd1da", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27104, "upload_time": "2014-08-04T18:18:06", "url": "https://files.pythonhosted.org/packages/b9/e1/40621cd4cc32253371d6e85b4c2b9089e185dfd985b3bc74ad2a30b8456a/textblob-de-0.2.4.tar.gz" } ], "0.2.5": [ { "comment_text": "", "digests": { "md5": "b2c6930626e2f0c4c759f6936424094f", "sha256": "6eb5f000c6b282ffbe9029744824c4cf962fdb7959adfa31b3518ae2134d0a7d" }, "downloads": -1, "filename": "textblob_de-0.2.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b2c6930626e2f0c4c759f6936424094f", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 1010916, "upload_time": "2014-08-04T18:35:46", "url": "https://files.pythonhosted.org/packages/3d/35/00710dacf341940975c0eca2b3b143b6106bb5fe61829785b21ee6ee05b2/textblob_de-0.2.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "36d5dafe5c3140dfa7c831cf76c43f58", "sha256": "c6fdc88d565fc1e114c3b89492bb24ba9c32c96b63e9d5822f81bf2ce319ef66" }, "downloads": -1, "filename": "textblob-de-0.2.5.tar.gz", "has_sig": false, "md5_digest": "36d5dafe5c3140dfa7c831cf76c43f58", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27098, "upload_time": "2014-08-04T18:35:34", "url": "https://files.pythonhosted.org/packages/88/ed/77f5863d0aba34353e6fc8f660f1f3723ca62ae0e7405853c2990e5e7eb7/textblob-de-0.2.5.tar.gz" } ], "0.2.6": [ { "comment_text": "", "digests": { "md5": "457fbd5054118c6be8fb27422b1fb87f", "sha256": "a732bf4d37f4be08d5b5257f2dc306acddf655e056e8abad6d08362e7807e6af" }, "downloads": -1, "filename": "textblob_de-0.2.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "457fbd5054118c6be8fb27422b1fb87f", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 1011114, "upload_time": "2014-08-04T20:00:53", "url": "https://files.pythonhosted.org/packages/52/f8/dbdcfdad08b7a9c9381e605cbf1e94d9c914861890e13e816ae593ec5212/textblob_de-0.2.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c4e41b933ec5e54ad454754aa0d75bfe", "sha256": "0e7d8214ad91d0b08181417715f636d82ac8fb920f995e7d3ce06943ed54b7cc" }, "downloads": -1, "filename": "textblob-de-0.2.6.tar.gz", "has_sig": false, "md5_digest": "c4e41b933ec5e54ad454754aa0d75bfe", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 457050, "upload_time": "2014-08-04T20:00:39", "url": "https://files.pythonhosted.org/packages/c2/57/f94921b7e1d33a228fb821dd9f69e3e0b145920933ff3e8329ffc31aa18a/textblob-de-0.2.6.tar.gz" } ], "0.2.7": [ { "comment_text": "", "digests": { "md5": "91b240aa4818dd4da5f4752c4adbeee2", "sha256": "3ca9a1435cb9a8886639b061b45d2fe6a5369e49e2456939fd3415e0863fde84" }, "downloads": -1, "filename": "textblob_de-0.2.7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "91b240aa4818dd4da5f4752c4adbeee2", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 1011748, "upload_time": "2014-08-13T16:24:07", "url": "https://files.pythonhosted.org/packages/ec/56/f5c2b39a1a9b4a13be8e47957e9ae151d0007f58cb39765232d1b00604b5/textblob_de-0.2.7-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "14aed42bd90230e39bd101f303d74f4c", "sha256": "b3336dabf611777796a7ac67cb2da948581690d08dbb18b89a8117ffefb4c789" }, "downloads": -1, "filename": "textblob-de-0.2.7.tar.gz", "has_sig": false, "md5_digest": "14aed42bd90230e39bd101f303d74f4c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 457538, "upload_time": "2014-08-13T16:23:53", "url": "https://files.pythonhosted.org/packages/44/b5/00bfd5f4edcb3d14f973969af52ac0947987bc5736165afd1e494e20fad9/textblob-de-0.2.7.tar.gz" } ], "0.2.8": [ { "comment_text": "", "digests": { "md5": "0a7ba5009bcb321841c16ac31c3432cc", "sha256": "5b0807257a66bfaa57bf0225a20b840b1c8b214479eb5a455abaaa952968fa5c" }, "downloads": -1, "filename": "textblob_de-0.2.8-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0a7ba5009bcb321841c16ac31c3432cc", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 559062, "upload_time": "2014-08-14T09:33:31", "url": "https://files.pythonhosted.org/packages/25/2c/1bd2ce4063c03a99e0bdc46e597340fe4a36c928e5c06e1cd801cfac2a52/textblob_de-0.2.8-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d117ec624555421be09a1880752ac710", "sha256": "c0642a53a83121665933edf3130dafe017eb8d4aa358e27e6ab12661e11745c0" }, "downloads": -1, "filename": "textblob-de-0.2.8.tar.gz", "has_sig": false, "md5_digest": "d117ec624555421be09a1880752ac710", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 453839, "upload_time": "2014-08-14T09:33:21", "url": "https://files.pythonhosted.org/packages/20/94/8629afd35220e87ac92ba29b52e139b879113d8bb283f95cea87d6b984b6/textblob-de-0.2.8.tar.gz" } ], "0.2.9": [ { "comment_text": "", "digests": { "md5": "700816f88a49c75a1294fe5fe047a2d9", "sha256": "960d6e7b7294510ef9c643f53e5032267f2f303246b551267d3156ebb3080c57" }, "downloads": -1, "filename": "textblob_de-0.2.9-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "700816f88a49c75a1294fe5fe047a2d9", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 559512, "upload_time": "2014-08-14T13:05:31", "url": "https://files.pythonhosted.org/packages/fc/9f/88cf1f64b718c7f85fb1b96408266909faa1cd289477868f7a308aedad10/textblob_de-0.2.9-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d285a3fd193149731a58881d54cc8110", "sha256": "7f8e17c9e2b78adc4c3e7096f36655d14423d35a6c137000d0e76d4c96e82c06" }, "downloads": -1, "filename": "textblob-de-0.2.9.tar.gz", "has_sig": false, "md5_digest": "d285a3fd193149731a58881d54cc8110", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 454361, "upload_time": "2014-08-14T13:05:21", "url": "https://files.pythonhosted.org/packages/1b/31/c1e363841d940c190a06c557182dcf1f6f3adb57b8f6e2d6526a7127008b/textblob-de-0.2.9.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "727120c85b6ceeac28c02c9e64a6a3d4", "sha256": "43be093ce3795183cf02b985dd89eb7baeacb8df07d38df6414f4e51b638d090" }, "downloads": -1, "filename": "textblob_de-0.3.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "727120c85b6ceeac28c02c9e64a6a3d4", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 559720, "upload_time": "2014-08-14T14:11:24", "url": "https://files.pythonhosted.org/packages/02/9f/a95c1a356186604e2416bdcf4e6c0841b7007464e9288afd88f1cf5b71b0/textblob_de-0.3.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "404a43593e017409313c10514ad97db8", "sha256": "60b1399be2f342ae5870edfd515526c171c9a449d26a559e56f9b9c13c8692c4" }, "downloads": -1, "filename": "textblob-de-0.3.0.tar.gz", "has_sig": false, "md5_digest": "404a43593e017409313c10514ad97db8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 454522, "upload_time": "2014-08-14T14:11:15", "url": "https://files.pythonhosted.org/packages/b2/16/12614865618dd73d72973300b27df221ca43724b3da8118fb3e51182b733/textblob-de-0.3.0.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "f28fe60938fdec2bad7f6806390e35e0", "sha256": "b0025e7ba133980d4be029d4107aadcf81cc8b6c20f541d9573aa0c541c8c534" }, "downloads": -1, "filename": "textblob_de-0.3.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f28fe60938fdec2bad7f6806390e35e0", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 475136, "upload_time": "2014-08-29T19:58:21", "url": "https://files.pythonhosted.org/packages/5f/64/2a37ffe881ec82249111bbf91d2ca3eb88dc149ee4e71abebb90a81f9172/textblob_de-0.3.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "dc406f8e2f1947175e8777a5cbec7ccd", "sha256": "491c589e14d04f6730cccabdb090b7add06bef05455e6136d6c878de8f00b5dd" }, "downloads": -1, "filename": "textblob-de-0.3.1.zip", "has_sig": false, "md5_digest": "dc406f8e2f1947175e8777a5cbec7ccd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2002050, "upload_time": "2014-08-29T19:58:13", "url": "https://files.pythonhosted.org/packages/35/84/095a4d297b924ac0b67ef5ddc493ce88c0ffd7efe4820cf3b400f0640bd3/textblob-de-0.3.1.zip" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "1b78ab8e547f5d089141634dc0ae4072", "sha256": "4012084c10fffc7867ae7692697adb1a53b2cefef6a18756e7cc2abbf8d0c6c9" }, "downloads": -1, "filename": "textblob_de-0.4.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "1b78ab8e547f5d089141634dc0ae4072", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 472286, "upload_time": "2014-09-17T20:27:29", "url": "https://files.pythonhosted.org/packages/79/0b/e44a12811ef3a9803d6446d81b230f722649240732c5f2fbccc7aecae311/textblob_de-0.4.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "17c4370ac46f8d266bd4d2dbe4c062d1", "sha256": "788b17242f2cb8ba02558e4b2eae9ebc3125153e600186648c42ef259bce32cf" }, "downloads": -1, "filename": "textblob-de-0.4.0.tar.gz", "has_sig": false, "md5_digest": "17c4370ac46f8d266bd4d2dbe4c062d1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2097646, "upload_time": "2014-09-17T20:27:19", "url": "https://files.pythonhosted.org/packages/d1/20/7c8ba3e7107e3612fd7188a7d5ec757399c3af2f2ed99cfb95f287e95aec/textblob-de-0.4.0.tar.gz" } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "2731cafcb9bad5eb4d499593ec07988f", "sha256": "39e7d659c19d1106cb9c7c398b1cf3477fc59da6e56aec6a7b6d5080d76aff63" }, "downloads": -1, "filename": "textblob_de-0.4.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2731cafcb9bad5eb4d499593ec07988f", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 566258, "upload_time": "2014-10-03T16:11:42", "url": "https://files.pythonhosted.org/packages/8d/aa/52a9641a476d38c4bbd207770862ad290fedd80d65f4a5009ae0d6bb3a86/textblob_de-0.4.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7367f3e40546612da6360899b3a73f3b", "sha256": "46786f9c9ff91418d0662aab228ecef842b86dd3b70bb6618c96b8050ae794a0" }, "downloads": -1, "filename": "textblob-de-0.4.1.zip", "has_sig": false, "md5_digest": "7367f3e40546612da6360899b3a73f3b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2224763, "upload_time": "2014-10-03T16:11:32", "url": "https://files.pythonhosted.org/packages/ab/37/1bd0944db19c1358c9a18f7d684e2a0b08c2ed76e6e2b878baf6dbd4a23e/textblob-de-0.4.1.zip" } ], "0.4.2": [ { "comment_text": "", "digests": { "md5": "3ce5a0bdb4597b11a7aafb8cfb986c9e", "sha256": "d001fe2b431f1040787067f19c949466edcfe13f8a61c55222129f4de29928c8" }, "downloads": -1, "filename": "textblob_de-0.4.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3ce5a0bdb4597b11a7aafb8cfb986c9e", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 473709, "upload_time": "2015-05-02T14:47:57", "url": "https://files.pythonhosted.org/packages/d5/b4/b65e2067ff1388ef7f6dd0e474b041695ba06ee9ec009a39f7f1faa13bb0/textblob_de-0.4.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5a72f494b7962ce15b6d609eb52ec678", "sha256": "b99096b06bf2145fff3f8f52eb43ac66320d62405833c114ef5b3fff39e3caee" }, "downloads": -1, "filename": "textblob-de-0.4.2.tar.gz", "has_sig": false, "md5_digest": "5a72f494b7962ce15b6d609eb52ec678", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2085264, "upload_time": "2015-05-02T14:47:48", "url": "https://files.pythonhosted.org/packages/3f/5d/785a5cdb0e0f86da18144dc1e3636f44f6ea04424872bea7c16856b9362a/textblob-de-0.4.2.tar.gz" } ], "0.4.3": [ { "comment_text": "", "digests": { "md5": "4bfb9d2a77c8deeba39f377543327eba", "sha256": "1d7751957d3e42b80209f451984166868891781f5af4c358ae64e81f16bb8eec" }, "downloads": -1, "filename": "textblob_de-0.4.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4bfb9d2a77c8deeba39f377543327eba", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 468918, "upload_time": "2019-01-03T00:13:57", "url": "https://files.pythonhosted.org/packages/47/61/7a5759c3ac60bf9330a50ce81ebe7f0aac1bc6c674d45e00f7b3e190f5af/textblob_de-0.4.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "da9bc6f40d23c9cb9de6c51dba9e27d5", "sha256": "ea6b4ad8f2c3003874b6b42a4fc093b8cc4e73dd4aedb00264b4529bd2285d8a" }, "downloads": -1, "filename": "textblob-de-0.4.3.tar.gz", "has_sig": false, "md5_digest": "da9bc6f40d23c9cb9de6c51dba9e27d5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1146485, "upload_time": "2019-01-03T00:14:11", "url": "https://files.pythonhosted.org/packages/e8/6c/58583d790fe7f5da433d140e9a698cf3561d403936d015a8628b2fa3952d/textblob-de-0.4.3.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "4bfb9d2a77c8deeba39f377543327eba", "sha256": "1d7751957d3e42b80209f451984166868891781f5af4c358ae64e81f16bb8eec" }, "downloads": -1, "filename": "textblob_de-0.4.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4bfb9d2a77c8deeba39f377543327eba", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 468918, "upload_time": "2019-01-03T00:13:57", "url": "https://files.pythonhosted.org/packages/47/61/7a5759c3ac60bf9330a50ce81ebe7f0aac1bc6c674d45e00f7b3e190f5af/textblob_de-0.4.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "da9bc6f40d23c9cb9de6c51dba9e27d5", "sha256": "ea6b4ad8f2c3003874b6b42a4fc093b8cc4e73dd4aedb00264b4529bd2285d8a" }, "downloads": -1, "filename": "textblob-de-0.4.3.tar.gz", "has_sig": false, "md5_digest": "da9bc6f40d23c9cb9de6c51dba9e27d5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1146485, "upload_time": "2019-01-03T00:14:11", "url": "https://files.pythonhosted.org/packages/e8/6c/58583d790fe7f5da433d140e9a698cf3561d403936d015a8628b2fa3952d/textblob-de-0.4.3.tar.gz" } ] }