{ "info": { "author": "Wichert Akkerman", "author_email": "wichert@wiggy.net", "bugtrack_url": null, "classifiers": [ "Intended Audience :: Developers", "License :: DFSG approved", "License :: OSI Approved :: BSD License", "Operating System :: OS Independent", "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", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": "What is lingua?\n===============\n\nLingua is a package with tools to extract translatable texts from\nyour code, and to check existing translations. It replaces the use\nof the ``xgettext`` command from gettext, or ``pybabel`` from Babel.\n\n\nMessage extraction\n==================\n\nThe simplest way to extract all translatable messages is to point the\n``pot-create`` tool at the root of your source tree.\n\n::\n\n $ pot-create src\n\nThis will create a ``messages.pot`` file containing all found messages.\n\n\nSpecifying input files\n----------------------\n\nThere are three ways to tell lingua which files you want it to scan:\n\n1. Specify filenames directly on the command line. For example::\n\n $ pot-create main.py utils.py\n\n2. Specify a directory on the command line. Lingua will recursively scan that\n directory for all files it knows how to handle.\n\n ::\n\n $ pot-create src\n\n3. Use the ``--files-from`` parameter to point to a file with a list of\n files to scan. Lines starting with ``#`` and empty lines will be ignored.\n\n ::\n\n $ pot-create --files-from=POTFILES.in\n\nYou can also use the ``--directory=PATH`` parameter to add the given path to the\nlist of directories to check for files. This may sound confusing, but can be\nuseful. For example this command will look for ``main.py`` and ``utils.py`` in\nthe current directory, and if they are not found there in the ``../src``\ndirectory::\n\n\n $ pot-create --directory=../src main.py utils.py\n\n\nConfiguration\n-------------\n\nIn its default configuration lingua will use its python extractor for ``.py``\nfiles, its XML extractor for ``.pt`` and ``.zpt`` files and its ZCML extractor\nfor ``.zcml`` files. If you use different extensions you setup a configuration\nfile which tells lingua how to process files. This file uses a simple ini-style\nformat.\n\nThere are two types of configuration that can be set in the configuration file:\nwhich extractor to use for a file extension, and the configuration for a single\nextractor.\n\nFile extensions are configured in the ``extensions`` section. Each entry in\nthis section maps a file extension to an extractor name. For example to\ntell lingua to use its XML extractor for files with a ``.html`` extension\nyou can use this configuration::\n\n [extensions]\n .html = xml\n\nTo find out which extractors are available use the ``-list-extractors`` option.\n\n::\n\n $ bin/pot-create --list-extractors\n chameleon Chameleon templates (defaults to Python expressions)\n python Python sources\n xml Chameleon templates (defaults to Python expressions)\n zcml Zope Configuration Markup Language (ZCML)\n zope Zope templates (defaults to TALES expressions)\n\nA section named `extractor:` can be used to configure a specific\nextractor. For example to tell the XML extractor that the default language\nused for expressions is TALES instead of Python::\n\n [extractor:xml]\n default-engine = tales\n\nEither place a global configuration file named ``.config/lingua`` to your\nhome folder or use the ``--config`` option to point lingua to your\nconfiguration file.\n\n::\n\n $ pot-create -c lingua.cfg src\n\n\nDomain filtering\n----------------\n\nWhen working with large systems you may use multiple translation domains\nin a single source tree. Lingua can support that by filtering messages by\ndomain when scanning sources. To enable domain filtering use the ``-d`` option:\n\n::\n\n $ pot-create -d mydomain src\n\nLingua will always include messages for which it can not determine the domain.\nFor example, take this Python code:\n\n::\n\n print(gettext(u'Hello, World'))\n print(dgettext('mydomain', u'Bye bye'))\n\nThe first hello-message does not specify its domain and will always be\nincluded. The second line uses `dgettext\n`_ to explicitly\nspecify the domain. Lingua will use this information when filtering domains.\n\n\nIncluding comments\n------------------\n\nYou can add comments to messages to help translators, for example to explain\nhow a text is used, or provide hints on how it should be translated. For\nchameleon templates this can be done using the ``i18n:comment`` attribute:\n\n::\n\n \n\nComments are inherited, so you can put them on a parent element as well.\n\n::\n\n
\n \n \n
\n\n\nFor Python code you can tell lingua to include comments by using the\n``--add-comments`` option. This will make Linua include all comments on the\nline(s) *immediately preceeding* (there may be no empty line in between) a\ntranslation call.\n\n::\n\n # This text should address the user directly.\n return _('Thank you for using our service.')\n\nAlternatively you can also put a comment at the end of the line starting your\ntranslation function call.\n\n::\n\n return _('Thank you for using our service.') # Address the user directly\n\nIf you do not want all comments to be included but only specific ones you can\nadd a keyword to the ``--add-comments`` option, for example ``--add-comments=I18N``.\n\n::\n\n # I18N This text should address the user directly, and use formal addressing.\n return _('Thank you for using our service')\n\n\nSetting message flags in comments\n---------------------------------\n\nMessages can have *flags*. These are to indicate what format a message has, and\nare typically used by validation tools to check if a translation does not break\nvariable references or template syntax. Lingua does a reasonable job to detect\nstrings using C and Python formatting, but sometimes you may need to set flags\nyourself. This can be done with a ``[flag, flag]`` marker in a comment.\n\n::\n\n # I18N [markdown,c-format]\n header = _(u'# Hello *%s*')\n\n\n\nSpecifying keywords\n-------------------\n\nWhen looking for messages a lingua parser uses a default list of keywords\nto identify translation calls. You can add extra keywords via the ``--keyword``\noption. If you have your own ``mygettext`` function which takes a string\nto translate as its first parameter you can use this:\n\n::\n\n $ pot-create --keyword=mygettext\n\nIf your function takes more parameters you will need to tell lingua about them.\nThis can be done in several ways:\n\n* If the translatable text is not the first parameter you can specify the\n parameter number with ``:``. For example if\n you use ``i18n_log(level, msg)`` the keyword specifier would be ``i18n_log:2``\n* If you support plurals you can specify the parameter used for the plural message\n by specifying the parameter number for both the singular and plural text. For\n example if your function signature is ``show_result(single, plural)`` the\n keyword specifier is ``show_result:1,2``\n* If you use message contexts you can specify the parameter used for the context\n by adding a ``c`` to the parameter number. For example the keyword specifier for\n ``pgettext`` is ``pgettext:1c,2``.\n* If your function takes the domain as a parameter you can specify which parameter\n is used for the domain by adding a ``d`` to the parameter number. For example\n the keyword specifier for ``dgettext`` is ``dgettext:1d,2``. This is a\n lingua-specified extension.\n* You can specify the exact number of parameters a function call must have\n using the ``t`` postfix. For example if a function *must* have four parameters\n to be a valid call, the specifier could be ``myfunc:1,4t``.\n\n\nExtractors\n==========\n\nLingua includes a number of extractors:\n\n* `python`: handles Python source code.\n* `chameleon`: handles `Chameleon `_ files,\n using the `Zope i18n syntax\n `_\n* `zcml`: handles Zope Configuration Markup Language (ZCML) files.\n* `zope`: a variant of the chameleon extractor, which assumes the default\n expression language is `TALES\n `_\n instead of Python.\n* `xml`: old name for the `chameleon` extractor. This name should not be used\n anymore and is only supported for backwards compatibility.\n\nBabel extractors\n----------------\n\nThere are several packages with plugins for `Babel\n`_'s message extraction tool. Lingua can use those\nplugins as well. The plugin names will be prefixed with ``babel-`` to\ndistinguish them from lingua extractors.\n\nFor example, if you have the `PyBabel-json\n`_ package installed you can\ninstruct lingua to use it for .json files by adding this to your configuration\nfile::\n\n [extensions]\n .json = babel-json\n\nSome Babel plugins require you to specify comment tags. This can be set with\nthe ``comment-tags`` option.\n\n::\n\n [extractor:babel-mako]\n comment-tags = TRANSLATOR:\n\n\nComparison to other tools\n=========================\n\nDifferences compared to `GNU gettext `_:\n\n* Support for file formats such as Zope Page Templates (popular in\n `Pyramid `_,\n `Chameleon`_,\n `Plone `_ and `Zope `_).\n* Better support for detecting format strings used in Python.\n* No direct support for C, C++, Perl, and many other languages. Lingua focuses\n on languages commonly used in Python projects, although support for other\n languages can be added via plugins.\n\n\nDifferences compared to `Babel`_:\n\n* More reliable detection of Python format strings.\n* Lingua includes plural support.\n* Support for only extracting texts for a given translation domain. This is\n often useful for extensible software where you use multiple translation\n domains in a single application.\n\n\nValidating translations\n=======================\n\nLingua includes a simple ``polint`` tool which performs a few basic checks on\nPO files. Currently implemented tests are:\n\n* duplicated message ids (can also be checked with GNU gettext's ``msgfmt``).\n These should never happen and are usually a result of a bug in the message\n extraction logic.\n\n* identical translations used for multiple canonical texts. This can happen\n for valid reasons, for example when the original text is not spelled\n consistently.\n\nTo check a po file simply run ``polint`` with the po file as argument::\n\n $ polint nl.po\n\n Translation:\n ${val} ist keine Zeichenkette\n Used for 2 canonical texts:\n 1 ${val} is not a string\n 2 \"${val}\" is not a string\n\n\nWriting custom extractors\n=========================\n\nFirst we need to create the custom extractor::\n\n from lingua.extractors import Extractor\n from lingua.extractors import Message\n\n class MyExtractor(Extractor):\n '''One-line description for --list-extractors'''\n extensions = ['.txt']\n\n def __call__(self, filename, options):\n return [Message(None, 'msgid', None, [], u'', u'', (filename, 1))]\n\nHooking up extractors to lingua is done by ``lingua.extractors`` entry points\nin ``setup.py``::\n\n setup(name='mypackage',\n ...\n install_requires=[\n 'lingua',\n ],\n ...\n entry_points='''\n [lingua.extractors]\n my_extractor = mypackage.extractor:MyExtractor\n '''\n ...)\n\nNote - the registered extractor must be a class derived from the ``Extractor``\nbase class.\n\nAfter installing ``mypackage`` lingua will automatically detect the new custom\nextractor.\n\n\nHelper Script\n=============\n\nThere exists a helper shell script for managing translations of packages in\n``docs/examples`` named ``i18n.sh``. Copy it to package root where you want to\nwork on translations, edit the configuration params inside the script and use::\n\n ./i18n.sh lang\n\nfor initial catalog creation and::\n\n ./i18n.sh\n\nfor updating translation and compiling the catalog.\n\nChangelog\n=========\n\n4.13 - January 24, 2016\n------------------------\n\n- Fix ``--sort-by-file`` to use a numeric ordering for line numbers.\n\n\n4.12 - December 28, 2016\n------------------------\n\n- Improve handling of Chameleon parse errors.\n\n- Correctly set the context for ``i18n:attributes`` in TAL templates.\n\n\n4.11 - October 11, 2016\n-----------------------\n\n- Correct a Python 3 compatibility error. This fixes `issue 82\n `_.\n\n\n4.10 - October 10, 2016\n-----------------------\n\n- Fix error saving POT files on Windows. This fixes `issue 81\n `_.\n\n- Fix incorrect handling of stripped line numbers.\n `Patch #79 `_ from sinoroc.\n\n- Improve handling of expressions (``${..}``) in HTML/PT files:\n - decode HTML entities before trying to parse Python code\n - gracefully handle syntax errors.\n\n\n4.9 - April 5, 2016\n-------------------\n\n- Handle calls to the Python extractor with bytes input. This fixes problems with\n Lingua plugins build for Lingua < 4.\n\n- Atomically replace the POT file to guarantee no broken POT file will be created.\n\n- Do not replace a POT file if there are no changes (ignoring metadata\n changes). This fixes `issue 67\n `_\n\n\n4.8.1 - February 18, 2016\n-------------------------\n\n- Fix breaking error introduced in 4.8 release.\n\n\n4.8 - February 18, 2016\n-----------------------\n\n- The XML extractor correctly handle i18n comments for attributes now.\n\n\n4.7 - January 23, 2016\n----------------------\n\n- Make i18n comments in HTML file inheritable. This was already documented, but\n did not work.\n\n\n4.6 - January 9, 2016\n---------------------\n\n- Use unittest.mock on Python 3.3 and later.\n\n- The Python extractor correctly handles the ``--keyword`` parameter now.\n `Patch #75 `_ from\n Omar Kohl, fixing `issue 74 `_\n\n\n4.5.1 - November 11, 2015\n-------------------------\n\n- Fix Python 3 compatibility.\n\n\n4.5 - November 11, 2015\n-----------------------\n\n- Allow setting message flags in Python comments.\n\n\n4.4 - November 10, 2015\n-----------------------\n\n- Add `pgettext()` to the default keyword list.\n\n- Do full keyword processing for results from Babel extraction plugins.\n This fixes `issue 71 `_\n\n- Fix Python 3 errors when processing Python files. This fixes `issue 74\n `_.\n\n\n4.3.1 - November 5, 2015\n------------------------\n\n- Re-uplad with different version number to work around an earlir release error.\n\n4.3 - November 5, 2015\n----------------------\n\n- Fix parsing of Python code using the dot operator in a keyword argument.\n `Patch #70 `_ from\n Patrick Valsecchi.\n\n\n4.2 - November 5, 2015\n----------------------\n\n- Allow message comments on the same line as gettext calls in Python.\n\n\n4.1 - November 4, 2015\n----------------------\n\n- Correctly handle messages that have both a translation comment, and use Zope-style\n message ids.\n\n- Catch and properly report errors during tokenisation of Python code.\n\n\n4.0 - November 4, 2015\n----------------------\n\n- Rewrite the Python extractor again. Lingua will now parse Python code itself\n instead of using the Python ``ast`` module.\n\n- Support message comments in Python code. These can be put in lines immediately\n before a line containing a message, and must be prefixed with a special marker.\n\n- Use domain filtering for Python expressions where possible (i.e. when using\n translaction functions that take a domain parameter, such as ``dgettext``.\n\n- Fix --no-location option to actually work.\n\n- Add --no-linenumbers option.\n\n\n3.12 - October 10, 2015\n-----------------------\n\n- Fix HTML extractor to apply domain filter when processing attributes and\n ``${..}`` expressions. This fixes `issue 66\n `_\n\n- Fix line number reporting when processing instructions are used.\n `Patch #64 `_ from\n Florian Schulze.\n\n- Fix handling of extractor configuration.\n `Patch #63 `_ from\n St\u00e9phane Brunner.\n\n\n3.11 - August 6, 2015\n---------------------\n\n- Correctly handle Python expressions using braces in template text. This fixes\n `issue 62 `_.\n\n\n3.10 - May 1, 2015\n------------------\n\n- Update ``i18n.sh`` example to show statistics when compiling catalogs. This\n reveals catalogs with fuzzy messages. This fixes `issue 59\n `_.\n\n- Fix handling of line number parameter in the Python extractor. This fixes\n invalid line numbers generated for Python code embedded in other files,\n for example in Mako templates. This fixes `issue 58\n `_ based on a fix from\n Laurent Daverio.\n\n- Warn when using a function call instead of a string as parameter in a\n gettext keyword in Python code. This fixes `issue 57\n `_.\n\n\n3.9 - February 19, 2015\n-----------------------\n\n- Fix line number reporting for XML/zope/Chameleon extractors.\n `Pull request 53 `_\n from Florian Schulze.\n\n\n3.8 - January 20, 2015\n----------------------\n\n- Add options to sort messages by either location or message id when creating a\n POT file. Based on `pull request 51 `_\n from Emanuele Gaifas.\n\n\n3.7 - December 17, 2014\n-----------------------\n\n- Include used lingua version in POT metadata.\n\n- Add support for message contexts in translationstring instances.\n\n- Add support for i18n:comment attributes in ZPT templates.\n\n\n3.6.1 - November 11, 2014\n-------------------------\n\n- Restore Python 2.6 compatibility.\n\n\n3.6 - November 11, 2014\n-----------------------\n\n- Extend automatic context-comments for ZPT templates to also show the\n canonical text for sub-elements. For example this markup::\n\n

This is just\n wonderful!

\n\n The resulting PO entry for the outer element will look like this::\n\n #. Canonical text for ${wonderful} is: \"wonderful\"\n msgid \"This is just ${wonderful}!\"\n msgstr \"\"\n\n This is only do for sub-elements that have a name (i.e. the have an\n ``i18n:name`` attribute).\n\n\n3.5.1 - November 11, 2014\n-------------------------\n\n- Fix a bug in the generated context-comment for substrings which\n caused part of the outer sentence text to be skipped.\n\n3.5 - November 11, 2014\n-----------------------\n\n- When encountering nested translations in ZPT templates automatically add a\n comment to the sub-message with the full text for the outer sentence. For\n example this markup::\n\n

This is just\n wonderful!

\n\n The resulting PO entry will look like this::\n\n #. Used in sentence: \"This is just ${wonderful}!\"\n msgid \"wonderful\"\n msgstr \"\"\n\n This extra context information can be very important for translators.\n\n\n3.4 - November 3, 2014\n----------------------\n\n- Add support for the ``i18n:context`` attribute in ZPT templates. This is\n supported by Chameleon 2.17 and later to set the translation context.\n\n\n3.3 - September 14, 2014\n------------------------\n\n- Modify the message format-checker to not consider a space ofter a percent-\n character as a format flag. Space is a valid flag but is almost never used,\n and this was creating a lot of false positives (for example a sentence like\n \"take a sample of 5% of all candidates\").\n\n- Do not try to extract a message from ``N_()`` calls: these are explicitly\n intended to be used for situations where you pass in a variable instead of\n a string.\n\n\n3.2 - August 26, 2014\n---------------------\n\n- Refactor the extractor API a little bit to make it easier for extractors\n to call each other. This is particularly useful when an extractor needs to\n call the Python extractor to handle local Python expressions.\n\n- Correctly extract messages from empty elements that used HTML notation. This\n fixes `issue 48 `_.\n\n\n3.1 - August 18, 2014\n---------------------\n\n- Make sure two message strings are added when a plural message is encountered.\n This fixes an error from `msginit` when it sees ``msgid_plural`` but only a\n single ``msgstr``\n\n\n3.0 - August 15, 2014\n---------------------\n\n*Zope users*: this release changes the extraction for `.pt` files. You will\nneed to configure lingua to use the new ``zope`` extractor for ``.pt`` files.\n\n- Make it possible to configure Babel plugins.\n\n- Include a brief description in ``--list-extractors`` output.\n\n- Rename the ``xml`` extractor to ``chameleon`` to better fit the syntax it\n handles.\n\n- Add a new ``zope`` extractor. This is identical to the chameleon extractor,\n but changes the default expression engine used to TALES. This engine is now\n the default for ``.cpt`` and ``.zpt`` files.\n\n- Allow per-extractor configuration.\n\n- Fix handling of comments returned by Babel extractor plugins. This fixes\n `issue 44 `_.\n\n\n2.5 - August 14, 2014\n---------------------\n\n- Correct handling of alternatives in TALES expressions when the pipe-symbol\n was surrounded by whitespace. This fixes\n `issue 43 `_.\n\n- Extractors can now be hooked up from outside via entry points.\n\n- Introduce ``lingua.extractors.Extractor`` object and use it as base for\n all extractors.\n\n- Check for global ``.config/lingua`` config file in user's home directory if\n no explicit config file defined.\n\n- Fix error message when detecting a syntax error in scanned Python code. Patch\n from tisdall (`pull request 42\n `_).\n\n- Use a single wheel distrbution for Python 2 and Python 3.\n\n\n2.4 - July 23, 2014\n-------------------\n\n- Correctly handle multiple alternatives in ZPT expressions. This fixes\n `issue 39 `_.\n\n- Do not add ``c-format`` flag for messages without an percent-character.\n\n- Fix timezone format at pot creation (remove colon).\n\n\n2.3 - June 13, 2014\n-------------------\n\n- Fix incorrect invocation of legacy Babel extraction plugins. This fixes\n `issue 28 `_.\n\n- TAL template handling fixes:\n\n - Correctly handle ``structure:`` prefixes in TAL expressions. Patch from\n Ingmar Steen\n (`pull request 32 `_).\n\n - Fix handling of multi-line ``tal:content``, ``tal:define`` and ``tal:replace``\n statements. Patch from Ingmar Steen\n (pull requests\n `35 `_ and\n `36 `_).\n\n - Fix handling of ``tal:repeat`` statements with multiple assignments. Patch\n from Ingmar Steen\n (`pull request 37 `_).\n\n\n2.2 - June 10, 2014\n-------------------\n\n- Remove seconds from POT timestamps. No other tool includes seconds, and this\n appearently breaks Babel.\n\n- Fix Python 2.6 compatibility. Patch from Hugo Branquinho\n (`pull request 25 `_).\n\n- Fix installation problems on Python 3. Patch from William Wu\n (`pull request 27 `_).\n\n- Handle TALES expression engine selection. This fixes\n `issue 30 `_.\n\n- Handle Python expressions using curly braces in HTML templates. This fixes\n `issue 29 `_.\n\n\n2.1 - April 8, 2014\n-------------------\n\n- Do not break when encountering HTML entities in Python expressions in XML\n templates.\n\n- Show the correct linenumber in error messages for syntax errors in Python\n expressions occurring in XML templates.\n\n- Fix bug in parsing of ``tal:repeat`` and ``tal:define`` attributes in the\n XML parser.\n\n- Tweak ReST-usage in changelog so the package documentation renders correctly\n on PyPI.\n\n\n2.0 - April 8, 2014\n-------------------\n\n- Lingua is now fully Python 3 compatible.\n\n- Add a new ``pot-create`` command to extract translateable texts. This is\n (almost) a drop-in replacement for GNU gettext's ``xgettext`` command and\n replaces the use of Babel's extraction tools. For backwards compatibility\n this tool can use existing Babel extraction plugins.\n\n- Define a new extraction plugin API which enables several improvements to\n be made:\n\n - You can now select which domain to extract from files. This is currently\n only supported by the XML and ZCML extractors.\n - Format strings checks are now handled by the extraction plugin instead of\n applied globally. This prevents false positives.\n - Message contexts are fully supported.\n\n- Format string detection has been improved: both C and Python format strings\n are now handled correctly.\n\n- The XML/HTML extractor has been rewritten to use HTML parser from Chameleon_.\n This allows lingua to handle HTML files that are not valid XML.\n\n- Whitespace handling in XML extractor has been improved..\n\n- The po-xls conversion tools have been moved to a new `po-xls\n `_ package.\n\n\n1.6 - December 9, 2013\n----------------------\n\n- Add support for ngettext and pluralize() for correctly generating plurals in\n pot files.\n\n\n1.5 - April 1, 2013\n-------------------\n\n- Do not silently ignore XML parsing errors. Instead print an error message\n and abort.\n\n\n1.4 - February 11, 2013\n-----------------------\n\n- Po->XLS convertor accidentily included obsolete messages.\n\n\n1.3 - January 28, 2012\n----------------------\n\n- XLS->Po conversion failed for the first language if no comment or\n reference columns were generated. Reported by Rocky Feng.\n\n- Properly support Windows in the xls-po convertors: Windows does not\n support atomic file renames, so revert to shutils.rename on that\n platform. Reported by Rocky Feng.\n\n\n1.2 - January 13, 2012\n----------------------\n\n- Extend XML extractor to check python expressions in templates. This\n fixes `issue 7 `_. Thanks to\n Nuno Teixeira for the patch.\n\n\n1.1 - November 16, 2011\n-----------------------\n\n- Set 'i18n' attribute as default prefix where there was no prefix found.\n This fixes issues `5 `_ and\n `6 `_. Thanks to\n Mathieu Le Marec - Pasquet for the patch.\n\n\n1.0 - September 8, 2011\n-----------------------\n\n- Update XML extractor to ignore elements which only contain a Chameleon\n expression (``${....}``). These can happen to give the template engine\n a hint that it should try to translate the result of an expression. This\n fixes `issue 2 `_.\n\n* Update XML extractor to not abort when encountering undeclared\n namespaces. This fixes `issue 3\n `_.\n\n* Fix Python extractor to handle strings split over multiple lines\n correctly.\n\n\n1.0b4 - July 20, 2011\n---------------------\n\n* Fix po-to-xls when including multiple languages in a single xls file.\n\n\n1.0b3 - July 18, 2011\n---------------------\n\n* Paper brown bag: remove debug leftover which broke po-to-xls.\n\n\n1.0b2 - July 18, 2011\n---------------------\n\n* Update PO-XLS convertors to allow selection of comments to include in\n the xls files.\n\n* Correct XML extractor to strip leading and trailing white. This fixes\n `issue 1 `_.\n\n* Add a very minimal polint tool to perform sanity checks in PO files.\n\n* Update trove data: Python 2.4 is not supported due to lack of absolute\n import ability.\n\n\n1.0b1 - May 13, 2011\n--------------------\n\n* First release.\n", "description_content_type": null, "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/wichert/lingua", "keywords": "translation po gettext Babel", "license": "BSD", "maintainer": "", "maintainer_email": "", "name": "lingua", "package_url": "https://pypi.org/project/lingua/", "platform": "", "project_url": "https://pypi.org/project/lingua/", "project_urls": { "Homepage": "https://github.com/wichert/lingua" }, "release_url": "https://pypi.org/project/lingua/4.13/", "requires_dist": null, "requires_python": "", "summary": "Translation toolset", "version": "4.13" }, "last_serial": 2594727, "releases": { "1.0": [ { "comment_text": "", "digests": { "md5": "f7b7c2e8b43576fb17a627604fdfa05a", "sha256": "a27e5c0c8f9d609f27c4c9aa04a36a23fb5441488d3ff3e46c077b2ed0624e21" }, "downloads": -1, "filename": "lingua-1.0.tar.gz", "has_sig": false, "md5_digest": "f7b7c2e8b43576fb17a627604fdfa05a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12005, "upload_time": "2011-09-08T18:32:46", "url": "https://files.pythonhosted.org/packages/0d/3e/f699dc54fa14a012ad6dd50faa888887c5183d02d9d3d81787aa347371ad/lingua-1.0.tar.gz" } ], "1.0b1": [ { "comment_text": "", "digests": { "md5": "6630df3dc815c35853669044c2ed6202", "sha256": "af2274152f2f83705793dd497fa00dcf3be0d82bda0ede132d23ae30983da336" }, "downloads": -1, "filename": "lingua-1.0b1.tar.gz", "has_sig": false, "md5_digest": "6630df3dc815c35853669044c2ed6202", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7449, "upload_time": "2011-05-14T01:48:05", "url": "https://files.pythonhosted.org/packages/0d/ba/14a57a92d7197dfd9818c4fc4c8ea9ca3654cd57a564ebc07837d04b0a11/lingua-1.0b1.tar.gz" } ], "1.0b2": [ { "comment_text": "", "digests": { "md5": "bbae737131cc47c4fd11a7d417869af6", "sha256": "00e5daf7da76854d372c5fef855e0d0c47363914bebdc74431b97f6019e47b3d" }, "downloads": -1, "filename": "lingua-1.0b2.tar.gz", "has_sig": false, "md5_digest": "bbae737131cc47c4fd11a7d417869af6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11046, "upload_time": "2011-07-18T10:54:47", "url": "https://files.pythonhosted.org/packages/ed/15/c703679b05f86dfd507db80f59a86021861c87de417bfa069e3eef719107/lingua-1.0b2.tar.gz" } ], "1.0b3": [ { "comment_text": "", "digests": { "md5": "1a034bd45f8bbcf232010ac23abe8a52", "sha256": "577ca5b77312678439947ddf3b9f0e84c0f2e782532b9fb5555516e2124e4369" }, "downloads": -1, "filename": "lingua-1.0b3.tar.gz", "has_sig": false, "md5_digest": "1a034bd45f8bbcf232010ac23abe8a52", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11130, "upload_time": "2011-07-18T11:00:31", "url": "https://files.pythonhosted.org/packages/d0/db/ec184548aa4f8f59b4db8fb0840861dab77112dca07bc7e8de306e36bb6c/lingua-1.0b3.tar.gz" } ], "1.0b4": [ { "comment_text": "", "digests": { "md5": "693fa0b1e565d9ee27269b705064a762", "sha256": "e74493f4174c4ff476149205c6656fa507c0489a057b547b16ed79b759079347" }, "downloads": -1, "filename": "lingua-1.0b4.tar.gz", "has_sig": false, "md5_digest": "693fa0b1e565d9ee27269b705064a762", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11215, "upload_time": "2011-07-20T09:54:42", "url": "https://files.pythonhosted.org/packages/34/63/562b9cf2fd586b53407ece72d08036b3a7627778e58a1490a0c228472255/lingua-1.0b4.tar.gz" } ], "1.1": [ { "comment_text": "", "digests": { "md5": "9616ff0dcc5c66094528a8fda5b3be43", "sha256": "0c43f68fd7fc8079fb342030c96112eafeaafbb5d2d87694663752ee806a0684" }, "downloads": -1, "filename": "lingua-1.1.tar.gz", "has_sig": false, "md5_digest": "9616ff0dcc5c66094528a8fda5b3be43", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12446, "upload_time": "2011-11-16T21:01:08", "url": "https://files.pythonhosted.org/packages/9d/ae/3cf657fdbbde24d0b63ef5026b69703c5d9e0818ceed36191192326b664b/lingua-1.1.tar.gz" } ], "1.2": [ { "comment_text": "", "digests": { "md5": "612fdbb63f356f4cf1da819416a4c163", "sha256": "433072d790142a26fbca1172407a4f5f9db4b6f1cec1eca968500b9df9d6bfb1" }, "downloads": -1, "filename": "lingua-1.2.tar.gz", "has_sig": false, "md5_digest": "612fdbb63f356f4cf1da819416a4c163", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12969, "upload_time": "2012-01-13T20:21:47", "url": "https://files.pythonhosted.org/packages/d1/d0/7e3bb81d43d297537c0f08b9fa4fe892656465b9675873f084bf2203a7d1/lingua-1.2.tar.gz" } ], "1.3": [ { "comment_text": "", "digests": { "md5": "08b60dcc10c5af6a00ca793baee589c4", "sha256": "4585533decf8629b6f9b50265442a837f38a8cdb727e020dbf1fcfc93637f2d5" }, "downloads": -1, "filename": "lingua-1.3.tar.gz", "has_sig": false, "md5_digest": "08b60dcc10c5af6a00ca793baee589c4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13279, "upload_time": "2012-01-28T13:43:04", "url": "https://files.pythonhosted.org/packages/f4/e2/6a7a7a9f10dc9cb974590ba04cd6e82a3be575971dd1ef55eb5249f420b2/lingua-1.3.tar.gz" } ], "1.4": [ { "comment_text": "", "digests": { "md5": "14436a399754aabe637b84f294f27b64", "sha256": "766fe5dba33657a633e60eaa6ed1f694025b6df38c49de2794c8d4b04227fe4f" }, "downloads": -1, "filename": "lingua-1.4.tar.gz", "has_sig": false, "md5_digest": "14436a399754aabe637b84f294f27b64", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13363, "upload_time": "2013-02-11T15:04:02", "url": "https://files.pythonhosted.org/packages/2b/36/19fbe77f2b44141d55f3290178be17000a8061ebc2f333535b71471c5929/lingua-1.4.tar.gz" } ], "1.5": [ { "comment_text": "", "digests": { "md5": "e2918a93862af695ff721ecd7a09e2d0", "sha256": "e778fa62d90f5381b3951a038145a4152dcd427b898f5276c540072be3c79b1b" }, "downloads": -1, "filename": "lingua-1.5.tar.gz", "has_sig": false, "md5_digest": "e2918a93862af695ff721ecd7a09e2d0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13638, "upload_time": "2013-04-01T12:46:01", "url": "https://files.pythonhosted.org/packages/bd/69/1e0693d9e0871eb463a49c1cd0ef3d7870826e640b0716ee10db190dc4fa/lingua-1.5.tar.gz" } ], "1.6": [ { "comment_text": "", "digests": { "md5": "bf13d25dd583a529d18ad5e98145e998", "sha256": "61c51dc1fb7909bcf66d59b3caeaadcea2500dd5c876650f1287b7c469552b8b" }, "downloads": -1, "filename": "lingua-1.6.tar.gz", "has_sig": false, "md5_digest": "bf13d25dd583a529d18ad5e98145e998", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14036, "upload_time": "2013-12-09T08:44:44", "url": "https://files.pythonhosted.org/packages/84/f6/a185c2de8f799c19a8a9984e78fef6c42c3e4aeb3d49a4061946a90827c0/lingua-1.6.tar.gz" } ], "2.0": [ { "comment_text": "", "digests": { "md5": "95b43b4122cc79970d7d73270b691457", "sha256": "417c569ad4f69e8b02d0b9eedaebd98c49293ef6446827f1c687b15fc5a1f170" }, "downloads": -1, "filename": "lingua-2.0.tar.gz", "has_sig": false, "md5_digest": "95b43b4122cc79970d7d73270b691457", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20518, "upload_time": "2014-04-08T15:36:08", "url": "https://files.pythonhosted.org/packages/05/f7/72a3962ecb564d0e349c0a460840edcb1476a61a3fa0dd07a44872c57550/lingua-2.0.tar.gz" } ], "2.1": [ { "comment_text": "", "digests": { "md5": "518fec3e338d75bb7742803ea94a0aa3", "sha256": "ae1f250ea520ec2e0ffa161ec2ab4f4b9c0b33baa33d2dfe5d21724f41237d01" }, "downloads": -1, "filename": "lingua-2.1.tar.gz", "has_sig": false, "md5_digest": "518fec3e338d75bb7742803ea94a0aa3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21185, "upload_time": "2014-04-08T18:12:50", "url": "https://files.pythonhosted.org/packages/51/56/6e292c624de5cf2447db607acd191c23b0c9fee415049fa1c4d686408119/lingua-2.1.tar.gz" } ], "2.2": [ { "comment_text": "", "digests": { "md5": "4f45a2fabc1ad404fb156ce25b4fc383", "sha256": "492d85be93b3721db730bc246555c5b9ffa6f1a149e2f6f1431cf6333f483ed6" }, "downloads": -1, "filename": "lingua-2.2-py2-none-any.whl", "has_sig": false, "md5_digest": "4f45a2fabc1ad404fb156ce25b4fc383", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 22120, "upload_time": "2014-06-10T09:32:10", "url": "https://files.pythonhosted.org/packages/34/fe/77854524c8f0b75850ac0ac2f610200b5cf75597479261ee748c98da0dd0/lingua-2.2-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "380719c7eb33a3d60a8bc0ed57789423", "sha256": "d0fa44dc1b41f47d0117b623f9ae3da7f9353dc7db5b151493e676df9f00e827" }, "downloads": -1, "filename": "lingua-2.2-py3-none-any.whl", "has_sig": false, "md5_digest": "380719c7eb33a3d60a8bc0ed57789423", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 22125, "upload_time": "2014-06-10T09:32:29", "url": "https://files.pythonhosted.org/packages/1e/ac/a95f123ae6ab227234082aad5c9458a3e8a1319d3eae92fb89370a7d8d68/lingua-2.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "75c6ac31821377035df7e88d72431c67", "sha256": "9f69c95ff2a3a4cd128d74c57940a43047e832c6d907a6b83f4778cc09ae2cd0" }, "downloads": -1, "filename": "lingua-2.2.tar.gz", "has_sig": false, "md5_digest": "75c6ac31821377035df7e88d72431c67", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22347, "upload_time": "2014-06-10T09:32:07", "url": "https://files.pythonhosted.org/packages/aa/66/b65c926df440623b468e6be008f315f5b528d97fddb8c0391c4ace8debae/lingua-2.2.tar.gz" } ], "2.3": [ { "comment_text": "", "digests": { "md5": "fbe774734fed4a2b96b83c46c8882314", "sha256": "dc03241510a69c407a9f2a719ba1e87a86ea509af0d6eb9fbbfe4e9dd424cffe" }, "downloads": -1, "filename": "lingua-2.3-py2-none-any.whl", "has_sig": false, "md5_digest": "fbe774734fed4a2b96b83c46c8882314", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 22603, "upload_time": "2014-06-13T15:29:33", "url": "https://files.pythonhosted.org/packages/d4/e8/fef27a35da6c3d85bf099e6ecd66ba30f56d8c5a6bca6099ba711a7cd958/lingua-2.3-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f1123c1b5d0b1c09c7989c6b065c967f", "sha256": "77f264059cefc93cf1dc106fe2f9ae6cb58ca9a60e851668def2e8961745f136" }, "downloads": -1, "filename": "lingua-2.3-py3-none-any.whl", "has_sig": false, "md5_digest": "f1123c1b5d0b1c09c7989c6b065c967f", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 22603, "upload_time": "2014-06-13T15:29:20", "url": "https://files.pythonhosted.org/packages/e9/9f/a894ea975aab1fe594334d28de5884eb9a9f0e8ab3533b1fb6a17eb1be82/lingua-2.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "82f3d93db03431650f954a28594e7b8c", "sha256": "466a6fe736373ad48633be7bf5902f0f1629c2b0b09a457e928ef7a0b7e4ed44" }, "downloads": -1, "filename": "lingua-2.3.tar.gz", "has_sig": false, "md5_digest": "82f3d93db03431650f954a28594e7b8c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23143, "upload_time": "2014-06-13T15:29:31", "url": "https://files.pythonhosted.org/packages/28/2a/8fb1e9de4989efc43f4b00a5c19614e59ccea2dbe5f5f6c17eef320deb8e/lingua-2.3.tar.gz" } ], "2.4": [ { "comment_text": "", "digests": { "md5": "d8467bda33cde948b303720458ad2196", "sha256": "70df4748f0dbf052e19e50c0f856127ae6a9add05330f8f64827a71f5e7355db" }, "downloads": -1, "filename": "lingua-2.4-py2-none-any.whl", "has_sig": false, "md5_digest": "d8467bda33cde948b303720458ad2196", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 22899, "upload_time": "2014-07-23T09:27:56", "url": "https://files.pythonhosted.org/packages/e6/c6/d5726f9af2c84216cc2a863ffd52ffc5d9873d2fc7133267b29b0de0964f/lingua-2.4-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5bf27db106f56dfa9e4c9e23cbfe1b56", "sha256": "67ac3bf6af68670a374e5a23fc8826173f529f2cbf1b3aaef93005a235b4bd09" }, "downloads": -1, "filename": "lingua-2.4-py3-none-any.whl", "has_sig": false, "md5_digest": "5bf27db106f56dfa9e4c9e23cbfe1b56", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 22899, "upload_time": "2014-07-23T09:28:05", "url": "https://files.pythonhosted.org/packages/98/b1/6e1c8ce9e787ba76f0441e6036b34cf37f3fd1ef2e0e61d380e12eee11b7/lingua-2.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7d4c86f4ba9a3fd187f5d404366e59aa", "sha256": "1ee709c28a2b861f4b22a43cd12952a626585ae21f3972185189d02e84c42455" }, "downloads": -1, "filename": "lingua-2.4.tar.gz", "has_sig": false, "md5_digest": "7d4c86f4ba9a3fd187f5d404366e59aa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23543, "upload_time": "2014-07-23T09:26:56", "url": "https://files.pythonhosted.org/packages/95/15/eb74a700a3bfe0e2cc96a8d093d87147d8be1859d02b959a908ae2de507d/lingua-2.4.tar.gz" } ], "2.5": [ { "comment_text": "", "digests": { "md5": "7a0876d338b6ab586a267e76380aabcf", "sha256": "9b831d92b19098ea2251563fa0f47789936acf9e367a2b0cd1163f82a96180b6" }, "downloads": -1, "filename": "lingua-2.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7a0876d338b6ab586a267e76380aabcf", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 25212, "upload_time": "2014-08-14T20:00:02", "url": "https://files.pythonhosted.org/packages/17/26/e9c97d5370f2971a4d071068ba2b1f88ff43920af8271ef35cd0f7287a65/lingua-2.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "bdd99a40aa80fdc1835b6adf8f6099b3", "sha256": "99dfd5df490d33a694a897af59c108a23a9d83c7d3d277f936e363d661156ff4" }, "downloads": -1, "filename": "lingua-2.5.tar.gz", "has_sig": false, "md5_digest": "bdd99a40aa80fdc1835b6adf8f6099b3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25712, "upload_time": "2014-08-14T19:59:26", "url": "https://files.pythonhosted.org/packages/65/42/36a23368a5c08934705970ae8265057e6bcae2136a0b03fb2d2cebddc443/lingua-2.5.tar.gz" } ], "3.0": [ { "comment_text": "", "digests": { "md5": "e826a4e8c828be629f3c76539a0ffc32", "sha256": "6db7351220cfaa252162447f2f812b5ccb87135079e3336dd12c3fad43c55c12" }, "downloads": -1, "filename": "lingua-3.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e826a4e8c828be629f3c76539a0ffc32", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 27332, "upload_time": "2014-08-15T19:26:43", "url": "https://files.pythonhosted.org/packages/95/29/0686799d42e8a8888d4ad97164181d28a78bc0213776dbae585069145464/lingua-3.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2b4cd13d2b6275347380245149482706", "sha256": "907992aff18ce5e03605b64ce319a069a6d7366709884f5704874edd977ff203" }, "downloads": -1, "filename": "lingua-3.0.tar.gz", "has_sig": false, "md5_digest": "2b4cd13d2b6275347380245149482706", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27949, "upload_time": "2014-08-15T19:26:39", "url": "https://files.pythonhosted.org/packages/13/7d/7c67c3fabacd7ba5b1d332535d6ac0f0e7c0de9c5396ac6421386cd6a329/lingua-3.0.tar.gz" } ], "3.1": [ { "comment_text": "", "digests": { "md5": "3781cb808a26bfaf4aefe2f170bb66cb", "sha256": "a858d5409f638b4a035d80b1b365572b0dd579bd50776baa7279468d62f6dcad" }, "downloads": -1, "filename": "lingua-3.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3781cb808a26bfaf4aefe2f170bb66cb", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 27527, "upload_time": "2014-08-18T21:21:35", "url": "https://files.pythonhosted.org/packages/32/82/9a5756b8cbe4f79a520097b67acaab92d45be8aa7ce825100c217e4919bd/lingua-3.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1c9c421513fd35191ac18d844de0f01e", "sha256": "c46ed2cf7d5a9101d44bbcc145709b234145fe2b4a8b1a3df5511aa3c6a34917" }, "downloads": -1, "filename": "lingua-3.1.tar.gz", "has_sig": false, "md5_digest": "1c9c421513fd35191ac18d844de0f01e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28154, "upload_time": "2014-08-18T21:21:32", "url": "https://files.pythonhosted.org/packages/b1/43/d9aa1ad53e88baa62b499bb4258b6f27c4275f8467515a12a162ae0fc5db/lingua-3.1.tar.gz" } ], "3.10": [ { "comment_text": "", "digests": { "md5": "c0a8bd2f8ceac42dd4d1be2a615fb61f", "sha256": "350820c57d689d87b18405defbabbaccef7fdc018990b32643cb8317b9f66dc2" }, "downloads": -1, "filename": "lingua-3.10-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c0a8bd2f8ceac42dd4d1be2a615fb61f", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 31269, "upload_time": "2015-05-01T07:20:21", "url": "https://files.pythonhosted.org/packages/df/cb/83dbd2338cae2ae2bba6217a995fbd62fedb5a309a85f53d18d1ed90a82a/lingua-3.10-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d8d2497b1c77efda36d784562dc35c20", "sha256": "56f5960ffb2b5ba39d89b19d554d52c9d51c8cf4df653f40d7b341ce31e824bb" }, "downloads": -1, "filename": "lingua-3.10.tar.gz", "has_sig": false, "md5_digest": "d8d2497b1c77efda36d784562dc35c20", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33033, "upload_time": "2015-05-01T07:20:17", "url": "https://files.pythonhosted.org/packages/b9/ac/866f050e7b7a6f6d831cbcca26d63a5c6862a18704d2962d3eed73c49c6a/lingua-3.10.tar.gz" } ], "3.11": [ { "comment_text": "", "digests": { "md5": "8c7fd4ae96947f3ea506860221521453", "sha256": "96ad6673a52b68641e91748c7371e36b0d8d027506b83daa380d75bdca52f8b8" }, "downloads": -1, "filename": "lingua-3.11-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8c7fd4ae96947f3ea506860221521453", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 31304, "upload_time": "2015-08-06T13:28:42", "url": "https://files.pythonhosted.org/packages/97/e3/6c57cf3432661b81461e2609f39489acebc35bcc401725206398d32a1801/lingua-3.11-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9aa483cbe2ee211c8f748dbb49cadc90", "sha256": "6dd9556e64082a3ce71754dc07a6eeb4849ecc6ee2055b46960b984c3260545c" }, "downloads": -1, "filename": "lingua-3.11.tar.gz", "has_sig": false, "md5_digest": "9aa483cbe2ee211c8f748dbb49cadc90", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33135, "upload_time": "2015-08-06T13:28:38", "url": "https://files.pythonhosted.org/packages/65/5b/8e102c7ed21bd999cc5bfa79a90d739a58198ef3c42309b99c98787b80a8/lingua-3.11.tar.gz" } ], "3.12": [ { "comment_text": "", "digests": { "md5": "c1772ca8ef852af859801bcf4843f851", "sha256": "04df8ae065bfc1e540e8f1a87334d7f165b4ee5d612b476573c88735b70efa85" }, "downloads": -1, "filename": "lingua-3.12-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c1772ca8ef852af859801bcf4843f851", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 31654, "upload_time": "2015-10-10T20:25:27", "url": "https://files.pythonhosted.org/packages/b7/e6/49768643e0aa57f66a5eb2586570c07ccbde7bbd29a8e6694cdafb68597f/lingua-3.12-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b1783c3ca33a844f586d1d7ca2c10a15", "sha256": "09f2b8a11c63ebe0e1ea7f197fca0edea453751a86a54f7d3ccea5802833aa88" }, "downloads": -1, "filename": "lingua-3.12.tar.gz", "has_sig": false, "md5_digest": "b1783c3ca33a844f586d1d7ca2c10a15", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33627, "upload_time": "2015-10-10T20:25:19", "url": "https://files.pythonhosted.org/packages/ca/ff/eeebddf5d6628587ff6987b4908edf6bb2d80b3a437af82d12d86796000f/lingua-3.12.tar.gz" } ], "3.2": [ { "comment_text": "", "digests": { "md5": "86159f09fb6b79976862bfae3e2a42fb", "sha256": "aab79ccbb2486f5e8a01514739fa75f3b03871d5a82a68a14c705999a066d6d7" }, "downloads": -1, "filename": "lingua-3.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "86159f09fb6b79976862bfae3e2a42fb", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 27905, "upload_time": "2014-08-26T11:36:13", "url": "https://files.pythonhosted.org/packages/52/ba/c872b66f5875e618b4bdbb2e634e28649ca678f2c5b6229ca8cc7b61dfca/lingua-3.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f02c1b312def1239bf7cb2a9b27785e5", "sha256": "ef4a8251d1af680c026737b1f646021063bbc5e3a481e1a9a8c858462799f2e0" }, "downloads": -1, "filename": "lingua-3.2.tar.gz", "has_sig": false, "md5_digest": "f02c1b312def1239bf7cb2a9b27785e5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28585, "upload_time": "2014-08-26T11:36:11", "url": "https://files.pythonhosted.org/packages/81/45/9fd1f9608e7741e074cc055e3da4ac91ee1eaf33da322630aff922cb51f3/lingua-3.2.tar.gz" } ], "3.3": [ { "comment_text": "", "digests": { "md5": "1ee721bbc745b074a79c5121d5791889", "sha256": "58fa2c085547b638e485b0c15438e73d9acc4f8006537a96ca51c22a3e720caf" }, "downloads": -1, "filename": "lingua-3.3.tar.gz", "has_sig": false, "md5_digest": "1ee721bbc745b074a79c5121d5791889", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29186, "upload_time": "2014-09-14T20:00:21", "url": "https://files.pythonhosted.org/packages/fe/45/0041d7843f20077d6c44936aeda969c5c7554e9eaad53693c7f4322f2fe0/lingua-3.3.tar.gz" } ], "3.4": [ { "comment_text": "", "digests": { "md5": "68e3378b55dc441ea7dcdf05a00fba3f", "sha256": "018d496cfc743af6f49f839c7d71a46c3d3444c696c964aa33d12a026574e377" }, "downloads": -1, "filename": "lingua-3.4.tar.gz", "has_sig": false, "md5_digest": "68e3378b55dc441ea7dcdf05a00fba3f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29437, "upload_time": "2014-11-03T15:36:55", "url": "https://files.pythonhosted.org/packages/9c/4b/e724b97741b8cc67f5e2315213c8ee25883d4bdd7429de4875ff7bbe37f1/lingua-3.4.tar.gz" } ], "3.5": [ { "comment_text": "", "digests": { "md5": "23ddb544e3d11e82c710f9c6e68cb291", "sha256": "37adf809f2aef9c42408eadf40d9a455d4987ee34a9e62fbba478190734c0457" }, "downloads": -1, "filename": "lingua-3.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "23ddb544e3d11e82c710f9c6e68cb291", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 29010, "upload_time": "2014-11-11T14:35:30", "url": "https://files.pythonhosted.org/packages/db/23/22d77819b4be8bc75d105bb80ef8eb5028da8e6af1ca620497ce3a97f935/lingua-3.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "10cb0e67afe7830aa6a84f6ab35f300b", "sha256": "9273a79e2b4ee229a9a800a155a9ca4b3989bf0c994bc039e39d3d238bde44fd" }, "downloads": -1, "filename": "lingua-3.5.tar.gz", "has_sig": false, "md5_digest": "10cb0e67afe7830aa6a84f6ab35f300b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30031, "upload_time": "2014-11-11T14:35:27", "url": "https://files.pythonhosted.org/packages/43/90/5069064e96766979045f3356ad9337706d4ca38100640dcf884327932c79/lingua-3.5.tar.gz" } ], "3.5.1": [ { "comment_text": "", "digests": { "md5": "0407aea926ced3ec9568f9d25779f6b3", "sha256": "5bff8022db21f9c1b04be8827bc356127d58cd1ee0f5476ea14a10df66730be1" }, "downloads": -1, "filename": "lingua-3.5.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0407aea926ced3ec9568f9d25779f6b3", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 29161, "upload_time": "2014-11-11T14:49:24", "url": "https://files.pythonhosted.org/packages/6b/8b/cc862400f63b1e833211ad495f68c87e07d76b8ca04ca80dd3e6d56badba/lingua-3.5.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f287f3e5881658aa9e3db51816489787", "sha256": "34d2df927312f752819062f59e3d5a87c57808cd6d7270ea5137f41887d5ec66" }, "downloads": -1, "filename": "lingua-3.5.1.tar.gz", "has_sig": false, "md5_digest": "f287f3e5881658aa9e3db51816489787", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30165, "upload_time": "2014-11-11T14:49:22", "url": "https://files.pythonhosted.org/packages/ff/3f/45b787feb89ec2e6b10ea32892ca0cbe19b525262ca28b11a8bcec6f0c69/lingua-3.5.1.tar.gz" } ], "3.6": [ { "comment_text": "", "digests": { "md5": "de168911fcb431710a4333d6cb3e26ae", "sha256": "2eee229a78becc88857b1c4a64f9426b469d2e4af70e06bb869102d6a9bc6df1" }, "downloads": -1, "filename": "lingua-3.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "de168911fcb431710a4333d6cb3e26ae", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 29428, "upload_time": "2014-11-11T15:18:58", "url": "https://files.pythonhosted.org/packages/c7/95/bc3ec4b94fb3a3c83f54857e5ddb7819592284b67b500e167cef39180a16/lingua-3.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "70e9db2ec28f65ad501ad3ba6dd75667", "sha256": "97a1b4643fe641f237f77bfeaa2c9d25b97cd99630b02240d373e3bb0d76b459" }, "downloads": -1, "filename": "lingua-3.6.tar.gz", "has_sig": false, "md5_digest": "70e9db2ec28f65ad501ad3ba6dd75667", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30525, "upload_time": "2014-11-11T15:18:55", "url": "https://files.pythonhosted.org/packages/47/7c/dfda450f224a9afa315c20c5e5bf6bc85226a9c597795c9c7a0aa09dacf5/lingua-3.6.tar.gz" } ], "3.6.1": [ { "comment_text": "", "digests": { "md5": "016d05b593402875c0975fe1422ea52b", "sha256": "2bbab1896a28c6800f831ba708536f538349118ad09782bfe51c77838d0bf937" }, "downloads": -1, "filename": "lingua-3.6.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "016d05b593402875c0975fe1422ea52b", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 29524, "upload_time": "2014-11-11T15:45:56", "url": "https://files.pythonhosted.org/packages/b9/57/95d47e59f152e2ea83af8e965f15d427273a775f843dd49157bd88055066/lingua-3.6.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a07e6da1e6e752a0ac95d31f6c66bfc6", "sha256": "db24f2143526869e1afe7b48a3746862fea0f65de4155135d11bd55673922167" }, "downloads": -1, "filename": "lingua-3.6.1.tar.gz", "has_sig": false, "md5_digest": "a07e6da1e6e752a0ac95d31f6c66bfc6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30574, "upload_time": "2014-11-11T15:45:53", "url": "https://files.pythonhosted.org/packages/9e/3e/2d30d064a9835bb968aba735c7249e62ca77a0848aa58a287e0275a50477/lingua-3.6.1.tar.gz" } ], "3.7": [ { "comment_text": "", "digests": { "md5": "5cc2b5d260be4f20c2bf6154032e538d", "sha256": "63eda4493a2ee9ec26f12595194a645038fc2f62f8f1b14d0fdb28b121e1db39" }, "downloads": -1, "filename": "lingua-3.7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5cc2b5d260be4f20c2bf6154032e538d", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 29759, "upload_time": "2014-12-17T12:45:16", "url": "https://files.pythonhosted.org/packages/c5/f6/a8566c878280b08f305a49c765d2347d737b320db03c0fd3d69a2a2b85c4/lingua-3.7-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e3a0fde65afc6de0d3c122acee9f47c4", "sha256": "9d4f1d048a32eb7690870b1742f54bf707284ca1e39b73e35d721851f46210e6" }, "downloads": -1, "filename": "lingua-3.7.tar.gz", "has_sig": false, "md5_digest": "e3a0fde65afc6de0d3c122acee9f47c4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30929, "upload_time": "2014-12-17T12:45:13", "url": "https://files.pythonhosted.org/packages/63/52/03f14c4aeee21250c989d3b4813ac55835746767f027f6407020c69facb1/lingua-3.7.tar.gz" } ], "3.8": [ { "comment_text": "", "digests": { "md5": "4d1b66da8a87ee59b559c6e85a7355e1", "sha256": "44a0415b20234e5cacc3981fe2c04a881759a14c6dac9967ed9f6144debed547" }, "downloads": -1, "filename": "lingua-3.8-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4d1b66da8a87ee59b559c6e85a7355e1", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 30017, "upload_time": "2015-01-20T12:06:37", "url": "https://files.pythonhosted.org/packages/37/ad/66a82c9e70f530eb6f13ddd8d2e13bf1bf83854b9503ab4b1e80c24c9223/lingua-3.8-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "082785bb902a5d2eef401ba326cc828e", "sha256": "a6f9304248e4c11d767a76fb4d380292ec15d0ccbf5723d55c1804c9e248098c" }, "downloads": -1, "filename": "lingua-3.8.tar.gz", "has_sig": false, "md5_digest": "082785bb902a5d2eef401ba326cc828e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 31182, "upload_time": "2015-01-20T12:06:40", "url": "https://files.pythonhosted.org/packages/0d/43/1057494f08f361646813a8aeaf71a81a4a31fbe41637264d89af4c454bbb/lingua-3.8.tar.gz" } ], "3.9": [ { "comment_text": "", "digests": { "md5": "c1d55e4dc8c73191a39eef504d04a59e", "sha256": "069fb996a37d1e72ac1945b5eb80e962722c93a065a29cd96cac66d9f4ddb6d2" }, "downloads": -1, "filename": "lingua-3.9-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c1d55e4dc8c73191a39eef504d04a59e", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 30724, "upload_time": "2015-02-19T14:36:46", "url": "https://files.pythonhosted.org/packages/da/0c/928d2db7fb0496144b289f3230c3d05a1013d88e22e5506fb7f2a9dd6ee4/lingua-3.9-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "001f9e27b2968a30b5a092fbc315d750", "sha256": "8332652a22c9cfa2de95101a8d604d43e4c3d265df3fc4ba029fca6dfb2bfa6f" }, "downloads": -1, "filename": "lingua-3.9.tar.gz", "has_sig": false, "md5_digest": "001f9e27b2968a30b5a092fbc315d750", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32346, "upload_time": "2015-02-19T14:36:43", "url": "https://files.pythonhosted.org/packages/32/0b/1cbf614aa0abc2deb257cede237d68c14243a42d7144e9b56433eb573e7d/lingua-3.9.tar.gz" } ], "4.0": [ { "comment_text": "", "digests": { "md5": "6622af6b2d1abe09e40d785120c185da", "sha256": "7a1d379c1d381f02de35f27d466307fd6f18f4f9e56636b71a6169bd7be6b263" }, "downloads": -1, "filename": "lingua-4.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6622af6b2d1abe09e40d785120c185da", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 34727, "upload_time": "2015-11-04T13:58:50", "url": "https://files.pythonhosted.org/packages/db/a9/18a10035068265f885e3bc19e4522610d12d67cf9b7c6f86745b1e658f9f/lingua-4.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "371e5c39ea860e0bed1374e7e3e5866f", "sha256": "638b9674d25ca33077cfc3abdd25d850ef2a07982c3ffddff4f12a9f7cf4f8f7" }, "downloads": -1, "filename": "lingua-4.0.tar.gz", "has_sig": false, "md5_digest": "371e5c39ea860e0bed1374e7e3e5866f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 37065, "upload_time": "2015-11-04T13:58:44", "url": "https://files.pythonhosted.org/packages/6b/e4/949bb251185159bc418ae661243096246a7879b497c65a236d6311e7a5ca/lingua-4.0.tar.gz" } ], "4.1": [ { "comment_text": "", "digests": { "md5": "aeb18b84a6c5b0c1be4c2d5bb5901a3b", "sha256": "0a55be446e6eb1da83a7bebb32b51b9bf629dc4616de86d9f907ff8758ce207b" }, "downloads": -1, "filename": "lingua-4.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "aeb18b84a6c5b0c1be4c2d5bb5901a3b", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 34885, "upload_time": "2015-11-04T20:13:28", "url": "https://files.pythonhosted.org/packages/5f/b9/ec4b703107be6e99d3eac1300497204dda8fabd0d20e8846625f7080b96e/lingua-4.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7d78db4bc92f1ff21fded2e6eba6c44c", "sha256": "7b11813bad6c2a6d44ce95c3e6837333f618623b7a2caedabb61a87a405b34ff" }, "downloads": -1, "filename": "lingua-4.1.tar.gz", "has_sig": false, "md5_digest": "7d78db4bc92f1ff21fded2e6eba6c44c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 37242, "upload_time": "2015-11-04T20:13:20", "url": "https://files.pythonhosted.org/packages/47/b7/61946b8248c8b63cb7b768eb0c62cd6afdbbadf1bbe1dea9b8e3df87b9ca/lingua-4.1.tar.gz" } ], "4.10": [ { "comment_text": "", "digests": { "md5": "e0f3e7d54c7ce54e582ed8667db2603c", "sha256": "5f6210d139c31c10dea356f10235dca9b356c8b696964c33fd522bbcff8d36ec" }, "downloads": -1, "filename": "lingua-4.10-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e0f3e7d54c7ce54e582ed8667db2603c", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 37791, "upload_time": "2016-10-10T07:37:58", "url": "https://files.pythonhosted.org/packages/c1/49/a892a6ec2a31ef70c8e86a39da45f2edcd1d11021c3d3c9e78929c99496b/lingua-4.10-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0bf771724c427b9eaef1795f92e50967", "sha256": "2759a88d4f46654902a47e100e15d07308c0f46eec032ef3d74d36d2ce6bc5dd" }, "downloads": -1, "filename": "lingua-4.10.tar.gz", "has_sig": false, "md5_digest": "0bf771724c427b9eaef1795f92e50967", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 47308, "upload_time": "2016-10-10T07:38:01", "url": "https://files.pythonhosted.org/packages/ce/e4/2ffdfbb1762fb18a52bea0b64352863bee2f66fde3a21f9ae17a412b1d10/lingua-4.10.tar.gz" } ], "4.11": [ { "comment_text": "", "digests": { "md5": "0f3d0336cef2c87a0f2b6749aacc27d6", "sha256": "56a213228bc8805670bcde18cf092650849e49f8731e796ce5f970a437b3d309" }, "downloads": -1, "filename": "lingua-4.11-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0f3d0336cef2c87a0f2b6749aacc27d6", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 37848, "upload_time": "2016-10-11T07:48:25", "url": "https://files.pythonhosted.org/packages/63/5c/2bc6199dada47a36e5eec37529367db71cde7cd0b7208402d98bdb7c742e/lingua-4.11-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "43807152849408a6a9f21433b8d4bc76", "sha256": "14f1f4aaa4ab518f129f82093cb2befabf0da659674086f71535654456282b22" }, "downloads": -1, "filename": "lingua-4.11.tar.gz", "has_sig": false, "md5_digest": "43807152849408a6a9f21433b8d4bc76", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 47424, "upload_time": "2016-10-11T07:48:21", "url": "https://files.pythonhosted.org/packages/2f/77/f30fb6d357beea72c85e4f7574ef69f615411383a7211decd1ef8e287b0f/lingua-4.11.tar.gz" } ], "4.12": [ { "comment_text": "", "digests": { "md5": "5a3291d5fb64a3be3caa3b18f955b473", "sha256": "c4f2fa67f126d5bc2689444d83b560a7569a669a72459486c951aae0d06f2677" }, "downloads": -1, "filename": "lingua-4.12-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5a3291d5fb64a3be3caa3b18f955b473", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 38001, "upload_time": "2016-12-28T11:11:53", "url": "https://files.pythonhosted.org/packages/59/c2/4768602b90aa8df4ab853510d39e00c6e18b70ac2dee8beefd5cb5e8c197/lingua-4.12-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c40c46ec1674758b2f728eb24fa9e33f", "sha256": "c6afc7d90c3ab0a4ec5617f4dfae870636a1bd7d5ec63748bb0e1935fbb02d5b" }, "downloads": -1, "filename": "lingua-4.12.tar.gz", "has_sig": false, "md5_digest": "c40c46ec1674758b2f728eb24fa9e33f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 47645, "upload_time": "2016-12-28T11:11:55", "url": "https://files.pythonhosted.org/packages/0e/15/0a60a469ded560deee61a90be0597fa40f02370625b13ab648a7e8d32e93/lingua-4.12.tar.gz" } ], "4.13": [ { "comment_text": "", "digests": { "md5": "7f5afab92a2fed67fc4ca036f8c2f90e", "sha256": "3f369bfa1e7ae31bfe3628ccccc5963d5f7302a5483ac55df93a32266def3f61" }, "downloads": -1, "filename": "lingua-4.13-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7f5afab92a2fed67fc4ca036f8c2f90e", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 38117, "upload_time": "2017-01-24T08:33:00", "url": "https://files.pythonhosted.org/packages/40/d4/a271228d426c488638b5c61dafdc10c740454903564196e5ae342f566853/lingua-4.13-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d374e61c389d67803d0d63efeafeb11f", "sha256": "a415ec379bad107b2f9d706f8804907ee2fc4fcdb2b1a4c2689676c3f53d91d8" }, "downloads": -1, "filename": "lingua-4.13.tar.gz", "has_sig": false, "md5_digest": "d374e61c389d67803d0d63efeafeb11f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 47653, "upload_time": "2017-01-24T08:32:56", "url": "https://files.pythonhosted.org/packages/8d/f8/61acf41321528ead82373464d59af85155293071ed4799b1e0c46c26a1fc/lingua-4.13.tar.gz" } ], "4.2": [ { "comment_text": "", "digests": { "md5": "d117c27a0a49b6066383c72d00a22703", "sha256": "83161fdf26d49d9d0bd73bd037b8df71540a162e69f2981d93675089bed58238" }, "downloads": -1, "filename": "lingua-4.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d117c27a0a49b6066383c72d00a22703", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 35168, "upload_time": "2015-11-05T09:12:24", "url": "https://files.pythonhosted.org/packages/36/0e/3376450e2c9ab1a6cf4e9916940eb4009e765b1026e8f06ac4ba705d4b07/lingua-4.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6e596e780ce48121e41808d678a36ae9", "sha256": "7682ba856c5e784709862ff076a83feec88a9c3a294af71c765e2b1dbab767d0" }, "downloads": -1, "filename": "lingua-4.2.tar.gz", "has_sig": false, "md5_digest": "6e596e780ce48121e41808d678a36ae9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 37984, "upload_time": "2015-11-05T09:12:17", "url": "https://files.pythonhosted.org/packages/89/41/2c9f4c9555de8144509dcf0347f04e962ad253aaf3304bf41300a5f88f0b/lingua-4.2.tar.gz" } ], "4.3": [], "4.3.1": [ { "comment_text": "", "digests": { "md5": "84f479515e18dd81a34b688d7085c089", "sha256": "263541ee67f0c90b1ca2f5d80243d70040ea4280ca41d82a60956bd9477aa616" }, "downloads": -1, "filename": "lingua-4.3.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "84f479515e18dd81a34b688d7085c089", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 35417, "upload_time": "2015-11-05T18:45:35", "url": "https://files.pythonhosted.org/packages/ac/c8/c6add62c0722a1b0dd4e205bf22fa90b11694e8cc137ab18d1d41280271a/lingua-4.3.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e2a27edda77d4c24b499120861a0c066", "sha256": "fdc43a61c07153aee31ed14aa771e85f4fd0fd04c51bb6a935b3192946a085a5" }, "downloads": -1, "filename": "lingua-4.3.1.tar.gz", "has_sig": false, "md5_digest": "e2a27edda77d4c24b499120861a0c066", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 38767, "upload_time": "2015-11-05T18:45:26", "url": "https://files.pythonhosted.org/packages/91/74/51084b389bdfcd25d7905de6684205fa202514b5132647ac59d1e3ae67fa/lingua-4.3.1.tar.gz" } ], "4.4": [ { "comment_text": "", "digests": { "md5": "20625830a1fdfa60aec5aa6d0f7a8053", "sha256": "a27af84b553264c8e51ed900e98641791e7c9479dd21dba62affd85e1c9e93bd" }, "downloads": -1, "filename": "lingua-4.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "20625830a1fdfa60aec5aa6d0f7a8053", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 35670, "upload_time": "2015-11-10T14:50:44", "url": "https://files.pythonhosted.org/packages/3f/1d/f72fe79acdb91feab24c4ebf0615b992f6c6d21864a253ae8e42d2e515a0/lingua-4.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6ca6c29b8a27eb1c13fb1070b0ee73a5", "sha256": "f3e032d14f99edc442c587a109afc9f9e94630adb685c008987af76c35cbe5b4" }, "downloads": -1, "filename": "lingua-4.4.tar.gz", "has_sig": false, "md5_digest": "6ca6c29b8a27eb1c13fb1070b0ee73a5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 39992, "upload_time": "2015-11-10T14:50:31", "url": "https://files.pythonhosted.org/packages/64/4f/cebbd3dfe4b1748f44a1ad990e951cd93be247875a311cd0be1a445cfff4/lingua-4.4.tar.gz" } ], "4.5": [ { "comment_text": "", "digests": { "md5": "a70ba83f6521330bda50bb0af4bac53d", "sha256": "4df6b88f52e81683508f200227cfbd2776525b29e198dd326fe8c0633bea986d" }, "downloads": -1, "filename": "lingua-4.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a70ba83f6521330bda50bb0af4bac53d", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 36278, "upload_time": "2015-11-11T14:35:23", "url": "https://files.pythonhosted.org/packages/7c/b2/091d588877adb4eff5c305bc1881c73ffedaf240cde812aa9e90fa48f8db/lingua-4.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "56073cbaece8640803460d53c2d1bd43", "sha256": "7fe31b30fbc35d90a863316358e2c864b7055e1442694d59200424fe8a526ad2" }, "downloads": -1, "filename": "lingua-4.5.tar.gz", "has_sig": false, "md5_digest": "56073cbaece8640803460d53c2d1bd43", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 42264, "upload_time": "2015-11-11T14:35:15", "url": "https://files.pythonhosted.org/packages/b6/eb/71a3638455726dcc358d6a4973c1bca58d5b1ac50c5ee8f71c7a7fb90bb4/lingua-4.5.tar.gz" } ], "4.5.1": [ { "comment_text": "", "digests": { "md5": "8ae5540642c0242ed429740d76c5f1d7", "sha256": "7ed0adec9a676438c7fec73e9ff5c5cee328b6a25520ad46f30770bf9971bc7c" }, "downloads": -1, "filename": "lingua-4.5.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8ae5540642c0242ed429740d76c5f1d7", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 36331, "upload_time": "2015-11-11T14:44:00", "url": "https://files.pythonhosted.org/packages/b0/00/491676fadcad92f2f73b091b3640b9e8bc504003874e404ee991045053bd/lingua-4.5.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f457f1d82061e3f6975efe09fc202e99", "sha256": "8986b5924c429d35a19ff891dbc996487a8251cdb39475327a267633472b9172" }, "downloads": -1, "filename": "lingua-4.5.1.tar.gz", "has_sig": false, "md5_digest": "f457f1d82061e3f6975efe09fc202e99", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 42332, "upload_time": "2015-11-11T14:43:55", "url": "https://files.pythonhosted.org/packages/c2/90/da1e882ab8380f0ccb4fcb06dc1fa8167d032a5d2482c84316e687d50027/lingua-4.5.1.tar.gz" } ], "4.6": [ { "comment_text": "", "digests": { "md5": "1f0923bd55c9f3361751a99213d70b0e", "sha256": "221ee19425f1cf5944c688c07dc1bbe835c5a2433bf60c146675b4cfdc0ab6f7" }, "downloads": -1, "filename": "lingua-4.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "1f0923bd55c9f3361751a99213d70b0e", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 36449, "upload_time": "2016-01-09T20:41:25", "url": "https://files.pythonhosted.org/packages/54/dc/0041fb4a3007f47422a383dd2effa0790f18c596c209d22e27b376d71464/lingua-4.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "337a7b3353943f5ffe5a99598b2cb3f2", "sha256": "8a2b6f899da8c9f63fc13c59e4ffe9f0097ec0babb0671d004119f1e638a6fb8" }, "downloads": -1, "filename": "lingua-4.6.tar.gz", "has_sig": false, "md5_digest": "337a7b3353943f5ffe5a99598b2cb3f2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 43576, "upload_time": "2016-01-09T20:41:19", "url": "https://files.pythonhosted.org/packages/74/4f/8c38048f73da78e87becde9d21857ac05a962d9c0859920b097836f92a7a/lingua-4.6.tar.gz" } ], "4.7": [ { "comment_text": "", "digests": { "md5": "1df55c405ec2ac04ef23a8ab8d67d0e4", "sha256": "4db4a3e5f4cde62ac157b5e0545add637038001a1a840f0dda21c1cbdbe70347" }, "downloads": -1, "filename": "lingua-4.7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "1df55c405ec2ac04ef23a8ab8d67d0e4", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 36574, "upload_time": "2016-01-23T09:15:17", "url": "https://files.pythonhosted.org/packages/87/b5/cbb4755e695fd800d6bd945ef4c5743a5ba5a985aa90f18a27eab34bdaf0/lingua-4.7-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "32eeadbdabc33cd0007ad78f51514226", "sha256": "a63f585eb029fe621cc82379abea6ecacdd92723215be687f0a134ba8fb01aec" }, "downloads": -1, "filename": "lingua-4.7.tar.gz", "has_sig": false, "md5_digest": "32eeadbdabc33cd0007ad78f51514226", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 43834, "upload_time": "2016-01-23T09:15:26", "url": "https://files.pythonhosted.org/packages/bd/ee/61aae2bb3ab4140588717a67251b2753540beb00fcb1df9fe3bac3e58012/lingua-4.7.tar.gz" } ], "4.8": [ { "comment_text": "", "digests": { "md5": "5f6ea4e94a5db7d665838f7dbd09fbd6", "sha256": "1c39a3e6b2c33988980fb83391e3968f103ed4dbe2b33ded196ade3c4aa49ba2" }, "downloads": -1, "filename": "lingua-4.8-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5f6ea4e94a5db7d665838f7dbd09fbd6", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 36600, "upload_time": "2016-02-18T10:44:16", "url": "https://files.pythonhosted.org/packages/1d/b0/2875933b0458acb7da3b4eea20eb069004d7aebee3ca177393db37f1d50a/lingua-4.8-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "40228ed3f5e3740d70ea5b8229f92381", "sha256": "4da1ddf911a7308bd5df421253f3dbb13c45f145bcbc0b96805b3bc13001b1e4" }, "downloads": -1, "filename": "lingua-4.8.tar.gz", "has_sig": false, "md5_digest": "40228ed3f5e3740d70ea5b8229f92381", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 44566, "upload_time": "2016-02-18T10:44:24", "url": "https://files.pythonhosted.org/packages/1d/90/2f6bafb8b514b8fcb18d0449169129ea919b2577b811d246540ebdfc6c1c/lingua-4.8.tar.gz" } ], "4.8.1": [ { "comment_text": "", "digests": { "md5": "3217cbcc084f09e437cf97246b916b0a", "sha256": "75104ced0bd54d92c0fbfbf763d18bae183610e71768435e92b70dbddb4789e5" }, "downloads": -1, "filename": "lingua-4.8.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3217cbcc084f09e437cf97246b916b0a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 36671, "upload_time": "2016-02-18T10:48:48", "url": "https://files.pythonhosted.org/packages/26/16/5dee3ce1f72a98218efbcbe1a34a88001c8093ff18938a19d896ceb55c30/lingua-4.8.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7ad085d68d013926693bc910abcac006", "sha256": "211fa01153fed9ac1a1ccc1fbfcc486bd51b96ee498b97934cba29ce0ac3451a" }, "downloads": -1, "filename": "lingua-4.8.1.tar.gz", "has_sig": false, "md5_digest": "7ad085d68d013926693bc910abcac006", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 44593, "upload_time": "2016-02-18T10:48:54", "url": "https://files.pythonhosted.org/packages/39/e3/bbbbd9cb7938a3e01b17d44df49e46874b05ac5694edca0e0b144cbc9218/lingua-4.8.1.tar.gz" } ], "4.9": [ { "comment_text": "", "digests": { "md5": "f9afbd1f86af474e1d1eeb9d041f159e", "sha256": "5d4d806648eac4c6d35f7a84b844f498bfff72a89c09832afe2cab34b03a8649" }, "downloads": -1, "filename": "lingua-4.9-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f9afbd1f86af474e1d1eeb9d041f159e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 37474, "upload_time": "2016-04-05T09:10:05", "url": "https://files.pythonhosted.org/packages/2f/b1/3209d81fc72f1bd88d63175b663bd252f559ba67a7121328a3e79d37b73e/lingua-4.9-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "736f5f4e5870dce1e0f020055344f62a", "sha256": "1d370ee7ebb354f4810efc85867abe0455220c3c8d06cb1a4a6f2aba071a5941" }, "downloads": -1, "filename": "lingua-4.9.tar.gz", "has_sig": false, "md5_digest": "736f5f4e5870dce1e0f020055344f62a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 46482, "upload_time": "2016-04-05T09:11:39", "url": "https://files.pythonhosted.org/packages/03/cc/5ba55b25cf10590db9e3f79493add05541a6c438dc933acd80bd9c03e95d/lingua-4.9.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "7f5afab92a2fed67fc4ca036f8c2f90e", "sha256": "3f369bfa1e7ae31bfe3628ccccc5963d5f7302a5483ac55df93a32266def3f61" }, "downloads": -1, "filename": "lingua-4.13-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7f5afab92a2fed67fc4ca036f8c2f90e", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 38117, "upload_time": "2017-01-24T08:33:00", "url": "https://files.pythonhosted.org/packages/40/d4/a271228d426c488638b5c61dafdc10c740454903564196e5ae342f566853/lingua-4.13-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d374e61c389d67803d0d63efeafeb11f", "sha256": "a415ec379bad107b2f9d706f8804907ee2fc4fcdb2b1a4c2689676c3f53d91d8" }, "downloads": -1, "filename": "lingua-4.13.tar.gz", "has_sig": false, "md5_digest": "d374e61c389d67803d0d63efeafeb11f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 47653, "upload_time": "2017-01-24T08:32:56", "url": "https://files.pythonhosted.org/packages/8d/f8/61acf41321528ead82373464d59af85155293071ed4799b1e0c46c26a1fc/lingua-4.13.tar.gz" } ] }