{ "info": { "author": "Daniel Nouri", "author_email": "plone-i18n@lists.sourceforge.net", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Console", "Framework :: Plone", "Framework :: Zope2", "Framework :: Zope3", "Framework :: Zope :: 4", "License :: OSI Approved :: GNU General Public License (GPL)", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: Implementation", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", "Topic :: Utilities" ], "description": "i18ndude\n========\n\n.. contents::\n\n\nIntroduction\n------------\n\ni18ndude performs various tasks related to ZPT's, Python Scripts and i18n.\n\n.. image:: https://secure.travis-ci.org/collective/i18ndude.png?branch=master\n :alt: Travis CI badge\n :target: http://travis-ci.org/collective/i18ndude\n\nCompatibility\n-------------\n\ni18ndude works with Python 2.7, 3.6, 3.7, pypy and pypy3.\nOlder versions are not supported anymore, use the i18ndude 4.x series\nif you need that.\n\nYou can install ``i18ndude`` with Buildout or ``pip``.\nWith ``pip`` you may want to look at our `requirements.txt `_.\n\n``UnicodeEncodeError``\n----------------------\n\nWhen running some ``i18ndude`` commands, you might get a ``UnicodeEncodeError``.\nThis can especially happen when ``i18ndude`` prints the result and you redirect the output or pipe it.\nThis is tricky, maybe impossible, to solve in ``i18ndude`` itself.\nSee this related `question on stackoverflow `_.\nThis question points to a solution that you yourself can do when you encounter this.\nIn the (Unix-like) shell, do this::\n\n export PYTHONIOENCODING=utf-8\n\nThis fixes UnicodeEncodeErrors when piping or redirecting output that contains non-ascii.\nI (Maurits) have this line in my bash profile now.\n\nNote: if you get a ``UnicodeDecodeError``, so 'decode' instead of 'encode', then it may be something that needs fixing in ``i18ndude``.\nPlease `report `_ it then.\n\nCommand line interface\n======================\n\nThese are the various command line options.\n\n.. ### AUTOGENERATED FROM HERE ###\n\ni18ndude\n--------\n\n::\n\n usage: i18ndude [-h]\n {find-untranslated,rebuild-pot,merge,sync,filter,admix,list,trmerge}\n ...\n\n i18ndude performs various tasks related to ZPT's, Python Scripts\n and i18n.\n\n Its main task is to extract translation strings (msgids) into a\n .pot file (with the 'rebuild-pot' command), and sync the .pot file\n with .po files (with the 'sync' command).\n\n Call i18ndude with one of the listed subcommands followed by\n --help to get help for that subcommand.\n\n optional arguments:\n -h, --help show this help message and exit\n\n subcommands:\n {find-untranslated,rebuild-pot,merge,sync,filter,admix,list,trmerge}\n\nfind-untranslated\n-----------------\n\n::\n\n usage: i18ndude find-untranslated [-h] [-s] [-n] [files [files ...]]\n\n Provide a list of ZPT filenames and I will output a report of places\n where I suspect untranslated messages, i.e. tags for which\n \"i18n:translate\" or \"i18n:attributes\" are missing.\n\n If you provide the -s option, the report will only contain a summary\n of errors and warnings for each file (or no output if there are no\n errors or warnings). If you provide the -n option, the report will\n contain only the errors for each file.\n\n You can mark tags to be ignored for this translation check by\n setting the \"i18n:ignore\" attribute on the tag. Same for\n attributes with \"i18n:ignore-attributes\". Note that i18ndude may\n be happy with this, but your template engine may fail when trying\n to render a template containing those ignore hints. You need\n Chameleon 2.23 or higher, or the to be released zope.tal 4.1.2.\n\n\n positional arguments:\n files list of ZPT filenames\n\n optional arguments:\n -h, --help show this help message and exit\n -s, --silent The report will only contain a summary of errors and\n warnings for each file (or no output if there are no errors\n or warnings).\n -n, --nosummary The report will contain only the errors for each file.\n\nrebuild-pot\n-----------\n\n::\n\n usage: i18ndude rebuild-pot [-h] [--wrap | --no-wrap] [--width NUMBER] -p\n filename [-c domain] [-m filename]\n [--merge2 filename]\n [--exclude \" ...\"]\n [path [path ...]]\n\n Given a pot-file via the --pot option you can specify one or more\n directories which including all sub-folders will be searched for\n PageTemplates (*.*pt) and Python scripts (*.*py).\n\n Make sure you have a backup copy of the original pot-file in case\n you need to fill back in ids by hand.\n\n If you specify a domain in --create I will create the pot file and\n look for messages for that domain. Otherwise I will take the\n domain from the Domain header in the given pot file and keep the\n headers from the file as base for a new pot file.\n\n If you give me an additional pot-file with the --merge \n option, I try to merge these msgids into the target-pot file\n afterwards. If a msgid already exists in the ones I found in the\n ZPTs, I'll warn you and ignore that msgid. I take the mime-header\n from this additional pot-file. If you provide a second pot-file via\n --merge2 I'll merge this into the first merge's result\n\n You can also provide a list of filenames (or regular expressions for\n filenames) which should not be included by using the --exclude argument,\n which takes a whitespace delimited list of files (or regular expressions\n for files).\n\n\n positional arguments:\n path\n\n optional arguments:\n -h, --help show this help message and exit\n --wrap Wrap long lines.\n --no-wrap Do not wrap long lines. This is the default.\n --width NUMBER Set output page width. Default is 79.\n -p filename, --pot filename\n -c domain, --create domain\n -m filename, --merge filename\n --merge2 filename\n --exclude \" ...\"\n\nmerge\n-----\n\n::\n\n usage: i18ndude merge [-h] [--wrap | --no-wrap] [--width NUMBER] -p filename\n -m filename [--merge2 filename]\n\n Given a pot-file via the --pot option and a second\n pot-file with the --merge option, I try to merge\n these msgids into the target-pot file. If a msgid already\n exists, I'll warn you and ignore that msgid.\n\n If you provide a --merge2 I'll first merge this one\n in addition to the first one.\n\n\n optional arguments:\n -h, --help show this help message and exit\n --wrap Wrap long lines.\n --no-wrap Do not wrap long lines. This is the default.\n --width NUMBER Set output page width. Default is 79.\n -p filename, --pot filename\n -m filename, --merge filename\n --merge2 filename\n\nsync\n----\n\n::\n\n usage: i18ndude sync [-h] [--wrap | --no-wrap] [--width NUMBER] -p potfilename\n pofilename [pofilename ...]\n\n Given a pot-file with the --pot option and a list of po-files I'll\n remove from the po files those message translations of which the\n msgids are not in the pot-file and add messages that the pot-file has\n but the po-file doesn't.\n\n\n positional arguments:\n pofilename\n\n optional arguments:\n -h, --help show this help message and exit\n --wrap Wrap long lines.\n --no-wrap Do not wrap long lines. This is the default.\n --width NUMBER Set output page width. Default is 79.\n -p potfilename, --pot potfilename\n\nfilter\n------\n\n::\n\n usage: i18ndude filter [-h] [--wrap | --no-wrap] [--width NUMBER] file1 file2\n\n Given two pot-files I will write a copy of file1 to stdout with all\n messages removed that are also in file2, i.e. where msgids match.\n\n\n positional arguments:\n file1\n file2\n\n optional arguments:\n -h, --help show this help message and exit\n --wrap Wrap long lines.\n --no-wrap Do not wrap long lines. This is the default.\n --width NUMBER Set output page width. Default is 79.\n\nadmix\n-----\n\n::\n\n usage: i18ndude admix [-h] [--wrap | --no-wrap] [--width NUMBER] file1 file2\n\n Given two po-files I will look for translated entries in file2 that\n are untranslated in file1. I add these translations (msgstrs) to\n file1. Note that this will not affect the number of entries in file1.\n The result will be on stdout.\n\n\n positional arguments:\n file1\n file2\n\n optional arguments:\n -h, --help show this help message and exit\n --wrap Wrap long lines.\n --no-wrap Do not wrap long lines. This is the default.\n --width NUMBER Set output page width. Default is 79.\n\nlist\n----\n\n::\n\n usage: i18ndude list [-h] -p product [product ...] [-t] [--tiered]\n\n This will create a simple listing that displays how much of the\n combined products pot's is translated for each language. Run this\n from the directory containing the pot-files. The product name is\n normally a domain name.\n\n By default we show the languages of existing po files,\n ordered by percentage.\n\n With the --tiered option, we split the languages in three tiers or groups,\n the first two with languages that Plone was traditionally translated in,\n in a hardcoded order, followed by other languages.\n This was the default output for years.\n\n\n optional arguments:\n -h, --help show this help message and exit\n -p product [product ...], --products product [product ...]\n -t, --table Output as html table\n --tiered Show in traditional three-tiered order\n\ntrmerge\n-------\n\n::\n\n usage: i18ndude trmerge [-h] [--wrap | --no-wrap] [--width NUMBER] [-i]\n [--no-override]\n file1 file2\n\n Given two po-files I will update all translations from file2 into\n file1. Missing translations are added.\n\n If a translation was fuzzy in file1, and there is a nonempty translation\n in file2, the fuzzy marker is removed.\n\n Fuzzy translations in file2 are ignored.\n\n The result will be on stdout. If you want to update the first\n file in place, use a temporary file, something like this:\n\n i18ndude trmerge file1.po file2.po > tmp_merge && mv tmp_merge file1.po\n\n\n positional arguments:\n file1\n file2\n\n optional arguments:\n -h, --help show this help message and exit\n --wrap Wrap long lines.\n --no-wrap Do not wrap long lines. This is the default.\n --width NUMBER Set output page width. Default is 79.\n -i, --ignore-extra Ignore extra messages: do not add msgids that are not in\n the original po-file. Only update translations for\n existing msgids.\n --no-override Do not override translations, only add missing\n translations.\n\nChangelog\n=========\n\n.. You should *NOT* be adding new change log entries to this file.\n You should create a file in the news directory instead.\n For helpful instructions, please see:\n https://github.com/plone/plone.releaser/blob/master/ADD-A-NEWS-ITEM.rst\n\n.. towncrier release notes start\n\n5.3.1 (2019-07-30)\n------------------\n\nBug fixes:\n\n\n- Disallow non-word characters (but do allow dashes) in ``i18n:name``\n attributes when running ``find-untranslated`` code analysis. [gyst] (#71)\n\n\n5.3.0 (2019-02-07)\n------------------\n\nNew features:\n\n\n- Replaced buildout with pip for setting up test environment. No longer test on\n Python 3.4 and 3.5. Do test on 3.7. Current test matrix: 2.7, 3.6, 3.7, pypy,\n pypy3. [maurits] (#66)\n\n\nBug fixes:\n\n\n- When no arguments are given, show the help. This fixes error on some Python\n versions when calling 'bin/i18ndude' without arguments. [maurits] (#68)\n\n\n5.2.0 (2018-11-09)\n------------------\n\nNew features:\n\n- Add check for untranslated aria-label attributes on all elements. [janjaapdriessen]\n\nBug fixes:\n\n- Fixed ``plone.i18n`` import.\n It was a conditional import to change the names of languages in the list, so nothing serious.\n But it always failed.\n [maurits]\n\n- In the readme, suggest ``export PYTHONIOENCODING=utf-8`` to fix ``UnicodeEncodeErrors``.\n (Note: not ``UnicodeDecodeErrors``.)\n Fixes `issue 55 `_.\n [maurits]\n\n\n5.1.0 (2018-03-23)\n------------------\n\nNew features:\n\n- In the ``list`` command, show only languages with existing po files,\n ordered by percentage. A new ``--tiered`` option uses the traditional\n behavior with languages in a specific order in three tiers.\n [maurits]\n\nBug fixes:\n\n- Sort files that we extract messages from.\n On Linux they were already sorted, but not on Mac, leading to a test failure.\n [maurits]\n\n- Fixed another possible UnicodeDecodeError in find-untranslated.\n [maurits]\n\n- ``find-untranslated`` no longer complains about attributes with chameleon syntax.\n An html tag with ``title=\"${context/Description}\"`` is no longer\n marked as having an untranslated title tag.\n Fixes `issue 53 `_.\n [maurits]\n\n\n5.0.2 (2018-03-12)\n------------------\n\n- Fixed some possible UnicodeDecodeErrors in find-untranslated.\n Fixes `issue 52 `_.\n [maurits]\n\n\n5.0.1 (2018-03-05)\n------------------\n\n- Create universal Python wheel. [maurits]\n\n\n5.0.0 (2018-03-05)\n------------------\n\nBreaking changes:\n\n- Drop support for python 2.6 and older. Retain python2.7 support.\n [gyst]\n\nNew features:\n\n- Support python 3.6, 3.5, 3.4, pypy and pypy3.\n [gyst]\n\nBug fixes:\n\n- Removed ``ordereddict`` and ```argparse`` dependencies completely.\n [maurits]\n\n- Fixed many unicode/string/bytes handling problems.\n There's probably still some unfixed that need finding, given that\n test coverage is only 63%.\n [gyst]\n\nTodo:\n\n- i18ndude/pygettext.py:159: DeprecationWarning: the imp module is deprecated in favour of importlib. This does not cause any breakage though.\n\n\n4.3 (2017-07-31)\n----------------\n\nNew:\n\n- Support Chameleon repeat syntax in templates.\n Fixes `issue #36 `_.\n [maurits]\n\n- Moved ``plone.i18n`` dependency to a ``plone`` extra.\n This is only used for getting language names in the ``list`` command.\n We now fall back to using the language name that is in the ``po`` files.\n Fixes `issue #44 `_.\n [maurits]\n\n\n4.2 (2017-06-21)\n----------------\n\nNew:\n\n- In ``find-untranslated``, do not report items that get replaced by Chameleon syntax.\n So ``${view/test}`` will no longer get flagged as missing a translation.\n (Note that you still *can* add ``i18n:translate`` if it makes sense,\n like Plone does for translating the dynamically calculated review state.)\n [Netroxen, maurits]\n\n- Find untranslated attributes now also checks for 'placeholder' attributes on\n input tags.\n\n4.1 (2016-12-02)\n----------------\n\nNew:\n\n- Allow use of regular expressions for --exclude parameter. For example,\n use ``*.py`` to exclude all python files. This doesn't break existing\n behavior. Do remember to use quotes around the expression.\n [laulaz, maurits]\n\n\n4.0.1 (2015-12-03)\n------------------\n\nFixes:\n\n- Fixed some reported line numbers in find-untranslated.\n Fixes issue #34.\n [maurits]\n\n\n4.0.0 (2015-12-03)\n------------------\n\nNew:\n\n- Extract strings from zcml.\n Issue #28\n [maurits]\n\n- No longer print two blank lines at the end of .po and .pot files.\n [maurits]\n\n- In the find-untranslated command, first try to parse a template as\n xml, which is good for non-html files. If that fails, try to parse\n it as html with a little help from the lxml HTMLPaser, which handles\n html5 code much better. If that fails, use our trusty home grown\n ``common.prepare_xml`` function, which treats everything as old\n html. Note that we still use ``xml.sax`` as the core parser here.\n Issue #15\n [maurits]\n\n- Ignore hidden files in the find-untranslated command.\n Issue #29\n [maurits]\n\n- Use lxml instead of xml.etree or elementtree for parsing\n GenericSetup xml files.\n [maurits]\n\n\n3.4.5 (2015-11-05)\n------------------\n\nNew:\n\n- First try the original zope.tal parser. Only when this fails we try\n our own parser/generator.\n [maurits]\n\n- Support Chameleon unnamed attributes without crashing. For example:\n ``tal:attributes=\"python:{'data-something': 'chameleon-only'}\"``\n [maurits]\n\n- Support chameleon attributes tal:switch and tal:case.\n Fixes issue #24.\n [ale-rt]\n\n\n3.4.4 (2015-11-04)\n------------------\n\nFixes:\n\n- Check ``tal:condition`` correctly when it is in a ``tal:something`` tag.\n [maurits]\n\n- In ``find-untranslated`` only ignore ``tal:condition=\"nothing\"``,\n not other conditions.\n Fixes issue #16.\n [maurits]\n\n- Improved the ``prepare_xml`` function. This tries to work around\n templates that miss the usual boiler plate, like\n ``xmlns:i18n=\"http://xml.zope.org/namespaces/i18n\"``. But there\n were some silly errors in it.\n This refs issue #16.\n [maurits]\n\n\n3.4.3 (2015-09-01)\n------------------\n\n- Fix ``nosummary`` option from ``find-untranslated``.\n It was reporting wrong information.\n [gforcada]\n\n\n3.4.2 (2015-07-16)\n------------------\n\n- Fix encoding errors with wrapAndQuoteString.\n [thet]\n\n- Pep8.\n [thet]\n\n\n3.4.1 (2015-06-25)\n------------------\n\n- Releasing as Python wheel too.\n [maurits]\n\n- Fixed wrapping when string contains newline.\n Issue #13\n [maurits]\n\n\n3.4.0 (2014-11-27)\n------------------\n\n- Drop Python 2.6 support. It may still work, but the tests only run\n on Python 2.7. Note that it is fine to use one central i18ndude\n command for all your projects, no matter what Python version they\n are using.\n [janjaapdriessen, maurits]\n\n- For the find-untranslated feature, add the possibility to mark a tag to be\n ignored by setting the \"i18n:ignore\" attribute on the tag. Also works for\n attributes with the \"i18n:ignore-attributes\" attribute.\n [janjaapdriessen]\n\n\n3.3.5 (2014-08-05)\n------------------\n\n- Avoid AttributeError: 'NoneType' object has no attribute 'comments'\n when a ``.po`` file is missing an empty msgid and msgstr near the\n top. This is fixed automatically, although it will override some\n headers.\n [maurits]\n\n\n3.3.4 (2014-07-02)\n------------------\n\n- Wrap first line correctly. Fixes #9.\n [gforcada]\n\n\n3.3.3 (2013-11-27)\n------------------\n\n- Package housekeeping.\n [hvelarde]\n\n\n3.3.2 (2013-11-27)\n------------------\n\n- ``trmerge``: do not override when the mixin translation is fuzzy.\n [maurits]\n\n- ``trmerge``: add ``--no-override`` argument. This means: do not\n override translations, only add missing translations.\n [maurits]\n\n- ``trmerge``: add ``--ignore-extra`` option. This ignores extra msgids\n in the second po-file.\n [maurits]\n\n\n3.3.1 (2013-10-18)\n------------------\n\n- Update script.py in some cases \"arguments.exclude\" is None.\n [giacomos]\n\n- Fixed optional parameter exclude.\n [shylux]\n\n\n3.3.0 (2013-10-13)\n------------------\n\n- Add command line documentation to long description of package.\n [maurits]\n\n- Add options ``--wrap``, ``--no-wrap`` and ``--width=NUMBER`` to all\n commands that write files. Use these to determine whether long\n lines are wrapped and at which width. Default width is 79. By\n default we do NOT wrap, because we have never wrapped before. This\n may change in the future, so if you *really* want to be sure to not\n wrap when using a future i18ndude version, you can add ``--no-wrap``\n now.\n https://github.com/collective/i18ndude/issues/3\n [maurits]\n\n- Fix the ``list`` command to also work in a ``locales`` structure.\n [maurits]\n\n- Fix an error in the ``merge`` command where the ``--merge`` option\n would be used as value for the ``--merge2`` option as well, if that\n option itself was unused. This led to unneeded warnings.\n [maurits]\n\n- The ``--create domain`` option of ``rebuild-pot`` is now optional.\n If not given, i18ndude reads the domain from the given ``.pot``\n file. It was always optional, but the documentation did not show it\n and it did not work.\n [maurits]\n\n- Update the command line options handling. You can now get the help\n for individual commands by calling them with the ``--help`` option.\n [maurits]\n\n- Return exit code 1 when the called function gives an error. This\n currently only has an effect when calling ``find-untranslated``.\n https://github.com/collective/i18ndude/issues/1\n [maurits]\n\n- Moved code to https://github.com/collective/i18ndude\n [maurits]\n\n- Backslash escape added to msgid when it includes double quotes.\n [taito]\n\n- Add trmerge command to merge po files. Custom tailored for transifex.\n [do3cc]\n\n\n3.2.2 (2010-12-11)\n------------------\n\n- Encode key to utf-8 for the Merge-Warning message to avoid a\n UnicodeEncodeError.\n [mikerhodes]\n\n\n3.2.1 (2010-10-31)\n------------------\n\n- Fixed making POT file for DOUBLE BYTE strings on default.\n [terapyon]\n\n\n3.2 (2010-09-04)\n----------------\n\n- Replaced internal odict implementation by the ordereddict package.\n (implementation backported from Python 2.7)\n [vincentfretin]\n\n\n3.1.3 (2010-09-04)\n------------------\n\n- Avoid UnicodeDecodeError when printing warning message in add().\n [rnix]\n\n\n3.1.2 (2010-02-14)\n------------------\n\n- elementtree is only required for Python < 2.5.\n [vincentfretin]\n\n- Fixed tests (patch provided by John Trammell).\n [vincentfretin]\n\n\n3.1.1 (2009-11-22)\n------------------\n\n- Strip \"src\" only once in the pathname for the comments.\n Example: before it generated the following comment\n \"#: archetypes.referencebrowserwidget/\"\n which was not so useful. Now it generates\n \"archetypes.referencebrowserwidget/src/archetypes/referencebrowserwidget/...\"\n [vincentfretin]\n\n\n3.1 (2009-10-31)\n----------------\n\n- Support for explicit msgids in GSReader.\n [vincentfretin]\n\n- Better handling of msgid references. Keep all the references in PTReader\n and PYReader. In POWriter, normalize and sort the references, write only\n MAX_OCCUR (default is 3) references.\n You can set MAX_OCCUR=None if you want all references to be written to\n the generated POT file. Only the first reference is written in case of\n several references to the same file but with different line number.\n [vincentfretin]\n\n- Depend now on zope.tal 3.5.2 to print a warning when msgid already exists\n in catalog with a different default message. Simplified PTReader code.\n Check for msgid with different default in GSReader, PYReader and in the\n merged catalog (ptctl, pyctl, gsctl).\n [vincentfretin]\n\n- Fix behaviour when dealing with broken xml files to be parsed.\n [afd]\n\n\n3.0 (2008-11-13)\n----------------\n\n- No changes.\n [hannosch]\n\n\nFor older changes, see ``docs/ChangeLog``.\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/collective/i18ndude", "keywords": "Plone i18n zpt", "license": "GPL", "maintainer": "Vincent Fretin", "maintainer_email": "vincent.fretin@gmail.com", "name": "i18ndude", "package_url": "https://pypi.org/project/i18ndude/", "platform": "", "project_url": "https://pypi.org/project/i18ndude/", "project_urls": { "Homepage": "https://github.com/collective/i18ndude" }, "release_url": "https://pypi.org/project/i18ndude/5.3.1/", "requires_dist": [ "lxml", "zope.i18nmessageid (>=3.3)", "zope.interface (>=3.3)", "zope.tal (>=4.3.0)", "plone.i18n ; extra == 'plone'" ], "requires_python": "", "summary": "i18ndude performs various tasks related to ZPT's, Python Scripts and i18n.", "version": "5.3.1" }, "last_serial": 5608461, "releases": { "2.1": [ { "comment_text": "", "digests": { "md5": "2ae0b759ae88b5e15567d7a4d293c55a", "sha256": "8e0c7103d373b0e9b6c86c472c0bc6b55d8d4a231abaa89af0f2fe8cd953be7d" }, "downloads": -1, "filename": "i18ndude-2.1-py2.4.egg", "has_sig": false, "md5_digest": "2ae0b759ae88b5e15567d7a4d293c55a", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 84476, "upload_time": "2006-09-22T02:44:54", "url": "https://files.pythonhosted.org/packages/22/66/b0b375a84477b8675737a1bafb14e381a38f47d1ee109bf1787413b3a209/i18ndude-2.1-py2.4.egg" } ], "2.1.1": [ { "comment_text": "", "digests": { "md5": "fd2808bcbae060339148b6458705c0a3", "sha256": "f872bfb849bf41c8d959b63f903109810db595a8483d8270baec4265a1939018" }, "downloads": -1, "filename": "i18ndude-2.1.1-py2.4.egg", "has_sig": false, "md5_digest": "fd2808bcbae060339148b6458705c0a3", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 80744, "upload_time": "2006-10-29T00:37:20", "url": "https://files.pythonhosted.org/packages/a3/1f/9afb791b5b1e082d1d2e6406f8e21b071e7fe4e76961bfce16e4cf6aed87/i18ndude-2.1.1-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "25ee4fcba1629c144ccd01e6838f12e4", "sha256": "4cfadc72e34035aea02b193bdd77fda33f3828f0a19ebe852455a46ed46a2c5e" }, "downloads": -1, "filename": "i18ndude-2.1.1.win32.exe", "has_sig": false, "md5_digest": "25ee4fcba1629c144ccd01e6838f12e4", "packagetype": "bdist_wininst", "python_version": "2.4", "requires_python": null, "size": 102959, "upload_time": "2006-10-29T00:49:51", "url": "https://files.pythonhosted.org/packages/1e/ca/c195a01396058efc844777f089e40608e5b210320607322a4ad141ff732b/i18ndude-2.1.1.win32.exe" } ], "3.0": [ { "comment_text": "", "digests": { "md5": "ba24b960b0207bd1eaccdf8cfdbd5dd6", "sha256": "ca037a98d89b29b94b30a6cae794a4e623b0f3dbfbbf39882f54caed9c4bb42e" }, "downloads": -1, "filename": "i18ndude-3.0.zip", "has_sig": true, "md5_digest": "ba24b960b0207bd1eaccdf8cfdbd5dd6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 63023, "upload_time": "2008-11-13T00:04:25", "url": "https://files.pythonhosted.org/packages/62/b2/bcd041bdfe343f6b315048ae0762aee65c7fcf9bd807870e5b6d377e68b5/i18ndude-3.0.zip" } ], "3.0b1": [ { "comment_text": "", "digests": { "md5": "4d6ac59cc7774b961b077816d3e99c34", "sha256": "f6a4987eddbfd53b7abb6b745b2828a0f41c20dc6ae79bfd23efaec156bfb739" }, "downloads": -1, "filename": "i18ndude-3.0b1-py2.4.egg", "has_sig": true, "md5_digest": "4d6ac59cc7774b961b077816d3e99c34", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 83756, "upload_time": "2007-03-01T08:01:27", "url": "https://files.pythonhosted.org/packages/1a/e1/c3ee0aaf45077e6e50dd66058bc7764e969cb4045e8184f05ebb3d616919/i18ndude-3.0b1-py2.4.egg" } ], "3.0b2": [ { "comment_text": "", "digests": { "md5": "dbfdd0e2e47406f11d580350a1ac0d9b", "sha256": "f3517751a516b17c4d67aec7a653d129a6a8bfd6d146dd3e60ae001fbaa8959e" }, "downloads": -1, "filename": "i18ndude-3.0b2-py2.4.egg", "has_sig": true, "md5_digest": "dbfdd0e2e47406f11d580350a1ac0d9b", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 87040, "upload_time": "2007-06-05T15:11:34", "url": "https://files.pythonhosted.org/packages/60/bb/d89413a655839c35a62d352a7878d846914d1a670b3dc0265366378886bd/i18ndude-3.0b2-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "0ce09b69a6d754c0b399c8d76b5d8108", "sha256": "e02df4da3f314701da3769f17d79877b5730e726481eafa31ef74bd160426498" }, "downloads": -1, "filename": "i18ndude-3.0b2.tar.gz", "has_sig": true, "md5_digest": "0ce09b69a6d754c0b399c8d76b5d8108", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 42512, "upload_time": "2007-06-05T15:11:24", "url": "https://files.pythonhosted.org/packages/28/d0/cd691c38ee31a2c6357084649387eaa079bbafc4dfd13109eff25da0bb45/i18ndude-3.0b2.tar.gz" } ], "3.0b3": [ { "comment_text": "", "digests": { "md5": "be83a31060d0aa5ff059aaccaf072aa3", "sha256": "c93295d1ecf7a58bb1c415eaeb31d8374bcc0b6c779248f30d72b99d5644b68e" }, "downloads": -1, "filename": "i18ndude-3.0b3-py2.4.egg", "has_sig": true, "md5_digest": "be83a31060d0aa5ff059aaccaf072aa3", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 87285, "upload_time": "2007-09-01T21:34:42", "url": "https://files.pythonhosted.org/packages/79/ac/b57224cb60ad3a1dbc36285008bc72f1a26f01689a0ca5f3257ed8ddec27/i18ndude-3.0b3-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "37195cc8085c3f2c0c26f362ecb9d661", "sha256": "c2022905ea873b3d05081aa189d461b4f9c4953bd471bd0cf2b86e07e2d84c53" }, "downloads": -1, "filename": "i18ndude-3.0b3.tar.gz", "has_sig": true, "md5_digest": "37195cc8085c3f2c0c26f362ecb9d661", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 43051, "upload_time": "2007-09-01T21:34:32", "url": "https://files.pythonhosted.org/packages/7f/27/53d324873f4e0903f987cd6ddcfd82ec1cfb40979dd585cc22be2dbb0613/i18ndude-3.0b3.tar.gz" } ], "3.0b4": [ { "comment_text": "", "digests": { "md5": "f53e7d121de0c8f1666fe9385581fadb", "sha256": "54c69d7fd60be5d5e12c46836658f291859bcd959cd3ea735f53a1e139df19fc" }, "downloads": -1, "filename": "i18ndude-3.0b4-py2.4.egg", "has_sig": true, "md5_digest": "f53e7d121de0c8f1666fe9385581fadb", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 92768, "upload_time": "2008-04-26T15:06:24", "url": "https://files.pythonhosted.org/packages/92/2a/a4df0b675523443779616b666dd86700b93e11f3c1155c7f131fd60fc1ac/i18ndude-3.0b4-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "457ddff399b2c5f4311d952610ccc29a", "sha256": "dfaee4926bd8e523beca1a07e20fe0ebeeea59878ee94e12c9c705e0faa55b55" }, "downloads": -1, "filename": "i18ndude-3.0b4.tar.gz", "has_sig": true, "md5_digest": "457ddff399b2c5f4311d952610ccc29a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 48707, "upload_time": "2008-04-26T15:06:02", "url": "https://files.pythonhosted.org/packages/3d/b4/11fd12534ce81f022843f6d582e4b2ed5291215b59cd5db75664d5a3993b/i18ndude-3.0b4.tar.gz" } ], "3.0c1": [ { "comment_text": "", "digests": { "md5": "1c939b8e9ae8c251e07fa11dd95d17f9", "sha256": "f9a56e454a3913fba4c943664cfa06f1bc3f24407eb8e2895425774f6a91a090" }, "downloads": -1, "filename": "i18ndude-3.0c1.zip", "has_sig": true, "md5_digest": "1c939b8e9ae8c251e07fa11dd95d17f9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 63189, "upload_time": "2008-10-05T18:58:14", "url": "https://files.pythonhosted.org/packages/bc/6d/29c800f825ed8f3157f9463f05eb4253f3f55fc3f189cd28d28b019dae1d/i18ndude-3.0c1.zip" } ], "3.1": [ { "comment_text": "", "digests": { "md5": "ff1276f470d2d088848d7d7dd8f4e39a", "sha256": "a8018b20aa0cb026c1ef5bc20f87a1bdfe6eddce4503dcf1dc58f9983fac3fb5" }, "downloads": -1, "filename": "i18ndude-3.1.zip", "has_sig": false, "md5_digest": "ff1276f470d2d088848d7d7dd8f4e39a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 68963, "upload_time": "2009-10-31T18:16:43", "url": "https://files.pythonhosted.org/packages/75/a3/2fbfafcbac02f9d23522bab6e461bc229bcdc0662bb7756ade0569ea2e77/i18ndude-3.1.zip" } ], "3.1.1": [ { "comment_text": "", "digests": { "md5": "6bfc9829114c1562f620978e269090d9", "sha256": "5eb7ec41b51e54e1622083b35c5a6188ad30a92ad69c70c23a65df8105b90ea7" }, "downloads": -1, "filename": "i18ndude-3.1.1.zip", "has_sig": false, "md5_digest": "6bfc9829114c1562f620978e269090d9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 69468, "upload_time": "2009-11-22T18:00:04", "url": "https://files.pythonhosted.org/packages/1d/9c/eed31328a28bad8992b6d95c833610e0b71ec70042b60a0eaa64bc5aa782/i18ndude-3.1.1.zip" } ], "3.1.2": [ { "comment_text": "", "digests": { "md5": "89563f72694bd2afc9031a041d221536", "sha256": "84bc455c4364444d2876df8c9381c81bce94ed7ef314d8bb357c75b461c8283c" }, "downloads": -1, "filename": "i18ndude-3.1.2.zip", "has_sig": false, "md5_digest": "89563f72694bd2afc9031a041d221536", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 71209, "upload_time": "2010-02-14T17:05:08", "url": "https://files.pythonhosted.org/packages/32/88/ee3967cc35bc925a6075c1ae50c03512dae604bbc7d90942486131f90290/i18ndude-3.1.2.zip" } ], "3.1.3": [ { "comment_text": "", "digests": { "md5": "2c4842d1743725f4d7f6e3b7a48ca9b0", "sha256": "b444eda0c8ac48ab7debd9440e618c1d068b5afbcbfda2dae142dbc7360b3c40" }, "downloads": -1, "filename": "i18ndude-3.1.3.zip", "has_sig": false, "md5_digest": "2c4842d1743725f4d7f6e3b7a48ca9b0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 71385, "upload_time": "2010-09-04T16:53:03", "url": "https://files.pythonhosted.org/packages/17/43/6b2941b54a8bba53dd299dc5972bb1e44789ab6e1dfeb5fcf5758efd865a/i18ndude-3.1.3.zip" } ], "3.2": [ { "comment_text": "", "digests": { "md5": "5e52964f41c340c439327e48b0d00544", "sha256": "1e2298d4832914ca304c79ad75a275f1591d9be4e0da1cb049d5986ef1b38117" }, "downloads": -1, "filename": "i18ndude-3.2.zip", "has_sig": false, "md5_digest": "5e52964f41c340c439327e48b0d00544", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 70763, "upload_time": "2010-09-04T18:03:45", "url": "https://files.pythonhosted.org/packages/10/f6/efe70f2ba028fdf4eca836e00dd96cbfd83f8e4304c543ca0c03f270627e/i18ndude-3.2.zip" } ], "3.2.1": [ { "comment_text": "", "digests": { "md5": "d0b9528fc46d60d1cb358aa50971d9c8", "sha256": "bbaff72664ec3a911950b8a32253cff1cea3d20518bca5f5b37cd866380aec7c" }, "downloads": -1, "filename": "i18ndude-3.2.1.zip", "has_sig": false, "md5_digest": "d0b9528fc46d60d1cb358aa50971d9c8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 71306, "upload_time": "2010-10-31T12:54:13", "url": "https://files.pythonhosted.org/packages/fa/0d/c26ec4302f1137024edbb16063d9ea4a96f71ec2dc80eab07ea238dd3036/i18ndude-3.2.1.zip" } ], "3.2.2": [ { "comment_text": "", "digests": { "md5": "0b28b529be0c2bcc273b3eb73a287072", "sha256": "bef2d16b8cf6da503dd15ddb636aa245d18e65ea189508bf219a20e4f92751ad" }, "downloads": -1, "filename": "i18ndude-3.2.2.zip", "has_sig": false, "md5_digest": "0b28b529be0c2bcc273b3eb73a287072", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 71470, "upload_time": "2010-12-11T15:17:15", "url": "https://files.pythonhosted.org/packages/8f/22/7d830c93fe665c606cc489934bb1b768e6b8b8bbffbbfdab68d52290c810/i18ndude-3.2.2.zip" } ], "3.3.0": [ { "comment_text": "", "digests": { "md5": "cd154b358bd657220a299621b41e8078", "sha256": "09e10214ce56f202082a67eb1a395e717bc2425a37603e11097c0deae91d1ca0" }, "downloads": -1, "filename": "i18ndude-3.3.0.zip", "has_sig": false, "md5_digest": "cd154b358bd657220a299621b41e8078", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 80825, "upload_time": "2013-10-13T00:09:22", "url": "https://files.pythonhosted.org/packages/be/be/3052f15302e50ea1e1c3880232008b92fb49073361d3efa8e9e08e372e65/i18ndude-3.3.0.zip" } ], "3.3.1": [ { "comment_text": "", "digests": { "md5": "a61be34fb1f8ba10d50827d179182715", "sha256": "254b43e8a27efcc9ca92e7a73692c7edf5d9c703154b79cedc538403472dc38a" }, "downloads": -1, "filename": "i18ndude-3.3.1.zip", "has_sig": false, "md5_digest": "a61be34fb1f8ba10d50827d179182715", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 80920, "upload_time": "2013-10-18T21:31:24", "url": "https://files.pythonhosted.org/packages/8e/d7/db9740774a772dd19126ade7e8a9a6e58d4c4642a6be07da7ba9b6fb4c7d/i18ndude-3.3.1.zip" } ], "3.3.2": [ { "comment_text": "", "digests": { "md5": "0c00d9d275643de211efc8fcd70c19b0", "sha256": "ded7fd34fcee07b707779f2284cdd6ae686c637a6cc8e3287aca0a7ca23b64d3" }, "downloads": -1, "filename": "i18ndude-3.3.2.zip", "has_sig": false, "md5_digest": "0c00d9d275643de211efc8fcd70c19b0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 82429, "upload_time": "2013-11-27T22:44:43", "url": "https://files.pythonhosted.org/packages/58/dc/66f576b0cd40a4b724c8ea82de633231a526e241911674425bba3e9fae58/i18ndude-3.3.2.zip" } ], "3.3.3": [ { "comment_text": "", "digests": { "md5": "03ccb854cbbf613967776bbf0df7b6d9", "sha256": "c1bc43a9f41cf7ddb5e2b59febe8f355a5836cb297cd66e0e3b26be4ad519499" }, "downloads": -1, "filename": "i18ndude-3.3.3.zip", "has_sig": false, "md5_digest": "03ccb854cbbf613967776bbf0df7b6d9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 77378, "upload_time": "2013-11-27T22:57:13", "url": "https://files.pythonhosted.org/packages/ec/20/9b2d474be8a984954f57e19f5720d5faf59a5a727102cecce47b4935d55e/i18ndude-3.3.3.zip" } ], "3.3.4": [ { "comment_text": "", "digests": { "md5": "f5ecf6f65910237ca8dc457d40f2981f", "sha256": "5ac62849ef97257ff1c30226eed66d9d64cd484c9a292d8209d0d309b36bd0c1" }, "downloads": -1, "filename": "i18ndude-3.3.4.zip", "has_sig": false, "md5_digest": "f5ecf6f65910237ca8dc457d40f2981f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 78762, "upload_time": "2014-07-02T19:26:33", "url": "https://files.pythonhosted.org/packages/36/25/8a10581ead75c53d7f4c41ffdc47a5dd78a852cb854b4793cb31c3bbc0c7/i18ndude-3.3.4.zip" } ], "3.3.5": [ { "comment_text": "", "digests": { "md5": "ef599b1c64eaabba4049fcd2b027ba21", "sha256": "4a31f4caaa226870cadc31ef1bee7e7ba1f75e5df4adb43ab7ccbc60d2d7e757" }, "downloads": -1, "filename": "i18ndude-3.3.5.zip", "has_sig": false, "md5_digest": "ef599b1c64eaabba4049fcd2b027ba21", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 79189, "upload_time": "2014-08-05T10:12:15", "url": "https://files.pythonhosted.org/packages/40/8b/ef2c28e5a04d2788d37ebe7ac04b4d5a00016157320b5f15d40e586946ce/i18ndude-3.3.5.zip" } ], "3.4.0": [ { "comment_text": "", "digests": { "md5": "b3967a97b6fec91e5dc205d28979998b", "sha256": "8c128619bbb0811ea95ca35fc5e2c53b71c2dff57d1262d112113613f578e22f" }, "downloads": -1, "filename": "i18ndude-3.4.0.zip", "has_sig": false, "md5_digest": "b3967a97b6fec91e5dc205d28979998b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 80935, "upload_time": "2014-11-27T20:22:17", "url": "https://files.pythonhosted.org/packages/ac/52/36a69a2f0208de34b49e9885a69f1394071e3107d16ef174508761f48436/i18ndude-3.4.0.zip" } ], "3.4.1": [ { "comment_text": "", "digests": { "md5": "21e292b55cfcc0e5d05d17ac3d34fff4", "sha256": "6f7e369d2becec95f81cd4b2ef45985182413e7c75b77c1b8410769dc30bdbcb" }, "downloads": -1, "filename": "i18ndude-3.4.1-py2-none-any.whl", "has_sig": false, "md5_digest": "21e292b55cfcc0e5d05d17ac3d34fff4", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 62225, "upload_time": "2015-06-24T23:51:03", "url": "https://files.pythonhosted.org/packages/dc/9f/58334fac804de8621a577b0539ff1beadbac5b2d0305014a12bf4c235760/i18ndude-3.4.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d7bf587ead3983ba96a9e8d96361f90e", "sha256": "82617dbc0b613a00b5845685379bffad6c0db80cb7b407092ebe3cd20c688315" }, "downloads": -1, "filename": "i18ndude-3.4.1.tar.gz", "has_sig": false, "md5_digest": "d7bf587ead3983ba96a9e8d96361f90e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 64210, "upload_time": "2015-06-24T23:51:08", "url": "https://files.pythonhosted.org/packages/74/1f/99c6cb7cf2a30d977150c09918745a57e1d735b014f2920902d0aab41b8d/i18ndude-3.4.1.tar.gz" } ], "3.4.2": [ { "comment_text": "", "digests": { "md5": "69208b75221d7d1726bcb64e99d93805", "sha256": "3c921ecf6f0df986292c917d45a86d01f3b2a332035049cce8674a1c38a4d2c1" }, "downloads": -1, "filename": "i18ndude-3.4.2-py2-none-any.whl", "has_sig": false, "md5_digest": "69208b75221d7d1726bcb64e99d93805", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 62584, "upload_time": "2015-07-16T11:24:45", "url": "https://files.pythonhosted.org/packages/e4/01/e4cf028a6fa200695332858965dfcb8d155310ef3acde2c23f85d2158afc/i18ndude-3.4.2-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c291abb76907ae37923937b20c46c7b0", "sha256": "557c4002eecd02c45a9244191e20fa4db5fa622f1df7cfac09a450d7a3f8364b" }, "downloads": -1, "filename": "i18ndude-3.4.2.tar.gz", "has_sig": false, "md5_digest": "c291abb76907ae37923937b20c46c7b0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 64662, "upload_time": "2015-07-16T11:24:49", "url": "https://files.pythonhosted.org/packages/59/af/55834d70fb20646333cfdd9b8903e84ec296b8c5be1f2e82913de35c90d8/i18ndude-3.4.2.tar.gz" } ], "3.4.3": [ { "comment_text": "", "digests": { "md5": "9e770a908343fb1bfdb7969ad01ff17e", "sha256": "bac303c73b279cc54bf7b1f01ba766841ec8eb1ba507353f6237432135c0b02e" }, "downloads": -1, "filename": "i18ndude-3.4.3-py2-none-any.whl", "has_sig": false, "md5_digest": "9e770a908343fb1bfdb7969ad01ff17e", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 62635, "upload_time": "2015-09-01T17:21:49", "url": "https://files.pythonhosted.org/packages/e7/9c/1906f9b7660dd0e149c72bf53b68b2416d9c1f7a3af3a8e3015fe662ea61/i18ndude-3.4.3-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d361f4933c8bd4f07c2bbc47c77aa2cd", "sha256": "c22a16cd66cb75c61a579aeb7de6ff6624b293bd9012afba8c215941155fa7a9" }, "downloads": -1, "filename": "i18ndude-3.4.3.tar.gz", "has_sig": false, "md5_digest": "d361f4933c8bd4f07c2bbc47c77aa2cd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 64767, "upload_time": "2015-09-01T17:22:09", "url": "https://files.pythonhosted.org/packages/49/44/b4e028f7847b1806c515662ddfe8a170a675bf835b628df91a6deae1e21f/i18ndude-3.4.3.tar.gz" } ], "3.4.4": [ { "comment_text": "", "digests": { "md5": "e3556201ea25f86ee44dd8ecb348994c", "sha256": "2652bfa41dc19b9a89ce688fadc53d7d40d62bf0923c0f59e9ea207b424b0d0d" }, "downloads": -1, "filename": "i18ndude-3.4.4-py2-none-any.whl", "has_sig": false, "md5_digest": "e3556201ea25f86ee44dd8ecb348994c", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 63226, "upload_time": "2015-11-04T15:34:35", "url": "https://files.pythonhosted.org/packages/dd/fa/b00539f14946018eb7a873e8f745b0c3e83e759c62197e57d1e0a141911c/i18ndude-3.4.4-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7fb85c3d524d7b394e512723ef82c8fc", "sha256": "fc62064a38188a6ba475f1b57f90c4eb3ce0950a5ea303637471c321a53c3a6a" }, "downloads": -1, "filename": "i18ndude-3.4.4.tar.gz", "has_sig": false, "md5_digest": "7fb85c3d524d7b394e512723ef82c8fc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 65453, "upload_time": "2015-11-04T15:34:39", "url": "https://files.pythonhosted.org/packages/da/cf/3073b7a0b19c27ac3940357409891b8aa692568a1ff18bc522d72b84f7b7/i18ndude-3.4.4.tar.gz" } ], "3.4.5": [ { "comment_text": "", "digests": { "md5": "944ac1dc72558d49492793d7f3ffd99f", "sha256": "053ab7ffccdc707745e1d555ee3ece4fcb4be101e3dd2804e2552eb76c197d97" }, "downloads": -1, "filename": "i18ndude-3.4.5-py2-none-any.whl", "has_sig": false, "md5_digest": "944ac1dc72558d49492793d7f3ffd99f", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 67001, "upload_time": "2015-11-05T12:12:59", "url": "https://files.pythonhosted.org/packages/ec/c8/ee689e6025a3a24843e29be406b4f389f2671d293649b44b45e6ed83338a/i18ndude-3.4.5-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "52d7af0668fd22dfc50c8540b4407edc", "sha256": "45bf9ac3f813b8ede80f487d489502bf3af038316999729877fc594d9b2045f4" }, "downloads": -1, "filename": "i18ndude-3.4.5.tar.gz", "has_sig": false, "md5_digest": "52d7af0668fd22dfc50c8540b4407edc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 70295, "upload_time": "2015-11-05T12:13:08", "url": "https://files.pythonhosted.org/packages/2c/07/d63f1fa2383462db0419b463ddf80f3a2f081bdb19439a6f132ca28930a3/i18ndude-3.4.5.tar.gz" } ], "4.0.0": [ { "comment_text": "", "digests": { "md5": "8952d438822fbccadf3a979eafb7b771", "sha256": "7928a61faf8b0764d9878aa3c9cbd9ffd704a1015a58999ad9370e06f1a58945" }, "downloads": -1, "filename": "i18ndude-4.0.0-py2-none-any.whl", "has_sig": false, "md5_digest": "8952d438822fbccadf3a979eafb7b771", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 72773, "upload_time": "2015-12-03T15:46:49", "url": "https://files.pythonhosted.org/packages/9d/72/dd0bc8199e4940f9da677371d86c37a117e4914313c591f08fbcd2ccac7b/i18ndude-4.0.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "29a21836bf8cd2bc57291f232d7a0af0", "sha256": "886b4c35bb450900073866f2a06c49d52bed2602b419ee3f3c013a8268c8a885" }, "downloads": -1, "filename": "i18ndude-4.0.0.tar.gz", "has_sig": false, "md5_digest": "29a21836bf8cd2bc57291f232d7a0af0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 74997, "upload_time": "2015-12-03T15:46:55", "url": "https://files.pythonhosted.org/packages/03/65/b5a4ec9061afe4d2e74b7d5a94299f562179008db603c01491cdcaf100a7/i18ndude-4.0.0.tar.gz" } ], "4.0.1": [ { "comment_text": "", "digests": { "md5": "f0940822d529c28113f4de7cd27d0894", "sha256": "f2428658de4f4520314faa84554d2eb1ada6bcff66f340bcf5fb24973a6defbd" }, "downloads": -1, "filename": "i18ndude-4.0.1-py2-none-any.whl", "has_sig": false, "md5_digest": "f0940822d529c28113f4de7cd27d0894", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 73565, "upload_time": "2015-12-03T15:53:59", "url": "https://files.pythonhosted.org/packages/66/24/5d2ba0fb3a0456b72d3f4fee11d3728b3e9380f7ab7f42e63520f30b697d/i18ndude-4.0.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "faa51a1da686bb924ac4801d232d6a08", "sha256": "f2ebf8f0834d00b0a214dc0161b4cff761691b1c5895c771f1d6683df8e13a2a" }, "downloads": -1, "filename": "i18ndude-4.0.1.tar.gz", "has_sig": false, "md5_digest": "faa51a1da686bb924ac4801d232d6a08", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 75356, "upload_time": "2015-12-03T15:54:10", "url": "https://files.pythonhosted.org/packages/50/7f/de3505da466af45377b121c7e23b031e9dfa928721ccd4576d1892be65b9/i18ndude-4.0.1.tar.gz" } ], "4.1": [ { "comment_text": "", "digests": { "md5": "b4130b48ecd5453499f0e23d1f68725b", "sha256": "140c09b568ae4bbae2d7fb1fd1a8e7a05bff438fa62f79a6f9f7ffd3b5fd2b04" }, "downloads": -1, "filename": "i18ndude-4.1-py2-none-any.whl", "has_sig": false, "md5_digest": "b4130b48ecd5453499f0e23d1f68725b", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 73960, "upload_time": "2016-12-02T11:39:16", "url": "https://files.pythonhosted.org/packages/01/72/3a8e728bd420797ad0b59ab98dc2643a24f9f46d3503f7de738cdff94bf1/i18ndude-4.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b31bf7268402a04f60579d2b717e555f", "sha256": "7d560a1a28f3c48118d76e5aab27fec671e1892dd51d01d8120e9ed5ecd1bc84" }, "downloads": -1, "filename": "i18ndude-4.1.tar.gz", "has_sig": false, "md5_digest": "b31bf7268402a04f60579d2b717e555f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 75893, "upload_time": "2016-12-02T11:39:19", "url": "https://files.pythonhosted.org/packages/49/1c/7a2354aef8a4380e2487e0a3ebfa24e48bc92fe99f1d480cdd09ccfc6c82/i18ndude-4.1.tar.gz" } ], "4.2": [ { "comment_text": "", "digests": { "md5": "157b65e84f851a925abdcbe1da7dab6b", "sha256": "3be75eb5d2930689b521a74993a68955ee7dee548a8498ee4ca908a189117423" }, "downloads": -1, "filename": "i18ndude-4.2-py2-none-any.whl", "has_sig": false, "md5_digest": "157b65e84f851a925abdcbe1da7dab6b", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 74536, "upload_time": "2017-06-21T10:28:03", "url": "https://files.pythonhosted.org/packages/87/60/a4f5880f7372cb76b2d333125284a30511c839e657f478141c929f758d85/i18ndude-4.2-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b285a727f723a177ae0b108cc6395ec2", "sha256": "3b22b0b42a1f85ee57cd6259c5353ac758c6c850bbad99fe155e5abeab658588" }, "downloads": -1, "filename": "i18ndude-4.2.tar.gz", "has_sig": false, "md5_digest": "b285a727f723a177ae0b108cc6395ec2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 76678, "upload_time": "2017-06-21T10:28:04", "url": "https://files.pythonhosted.org/packages/59/31/600b618bcad8a80252bf20cce0fa915e71c38288403177581e166da7df17/i18ndude-4.2.tar.gz" } ], "4.3": [ { "comment_text": "", "digests": { "md5": "a765b6fa7890ae9a30bf1ca27a11f611", "sha256": "a33816523dc3bb3ffbe64072dfe66d676e807637561d8c9db2212874ba7aac4a" }, "downloads": -1, "filename": "i18ndude-4.3-py2-none-any.whl", "has_sig": false, "md5_digest": "a765b6fa7890ae9a30bf1ca27a11f611", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 75165, "upload_time": "2017-07-31T15:40:25", "url": "https://files.pythonhosted.org/packages/ca/43/0f4a0eca4220457f04e7f47a935049b69ddea0ee6070d6e5fcc7bc3bd6a5/i18ndude-4.3-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "98e9fe7c88e0810edd8380d3409d4c91", "sha256": "47f46294a918840ae344f75b02661529cd23b7b22934cf43be601f6f901f11f7" }, "downloads": -1, "filename": "i18ndude-4.3.tar.gz", "has_sig": false, "md5_digest": "98e9fe7c88e0810edd8380d3409d4c91", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 77442, "upload_time": "2017-07-31T15:40:27", "url": "https://files.pythonhosted.org/packages/52/69/8ec5ded29900b8c8b2eaaec52f555ae7ade0c879deb9b1e833a81e032625/i18ndude-4.3.tar.gz" } ], "4.4.0": [ { "comment_text": "", "digests": { "md5": "1f8908d282a60b438fefb547d9ecac99", "sha256": "049784c14674013013c1a23e0346ba6e3cbb0c1a9bc21ccac7ecbaa6f4e76e60" }, "downloads": -1, "filename": "i18ndude-4.4.0-py2-none-any.whl", "has_sig": false, "md5_digest": "1f8908d282a60b438fefb547d9ecac99", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 76790, "upload_time": "2018-03-23T11:23:11", "url": "https://files.pythonhosted.org/packages/e6/e8/87a182fa99d43f184a5c14bb46cdd3608e4faaf5f461622b6b6eea566812/i18ndude-4.4.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9ecb5a32acaef3d7537a40388d0d44db", "sha256": "e14efc9b6b9de56903ff6e66515a2626f25247de1548c9cedd89e88196e79d7e" }, "downloads": -1, "filename": "i18ndude-4.4.0.tar.gz", "has_sig": false, "md5_digest": "9ecb5a32acaef3d7537a40388d0d44db", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 79917, "upload_time": "2018-03-23T11:23:12", "url": "https://files.pythonhosted.org/packages/92/c3/573b769da111b9eb7f6bb365a4f6b57bfaee18be608278403595b9af9dff/i18ndude-4.4.0.tar.gz" } ], "5.0.0": [ { "comment_text": "", "digests": { "md5": "02c63a867616529a4f2c1b28f3574074", "sha256": "d454c881b4831dcd1f04062ba460cd0012b886fb9c66cbd411a0e3c1c246310b" }, "downloads": -1, "filename": "i18ndude-5.0.0-py2-none-any.whl", "has_sig": false, "md5_digest": "02c63a867616529a4f2c1b28f3574074", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 77535, "upload_time": "2018-03-05T16:21:34", "url": "https://files.pythonhosted.org/packages/32/3c/bece01d3e80202ceb851db62ca974a4115a827fe967c25be545e40912fc4/i18ndude-5.0.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6ddddce746532aa462f3fb048923c675", "sha256": "765b50fb4ae2b249bdd86c3af61acd528658a441670c2c98ddcf011a4e0dcd40" }, "downloads": -1, "filename": "i18ndude-5.0.0.tar.gz", "has_sig": false, "md5_digest": "6ddddce746532aa462f3fb048923c675", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 80649, "upload_time": "2018-03-05T16:21:36", "url": "https://files.pythonhosted.org/packages/84/29/1ccdf899643297955d5018b1b5cfa09b6ca27812695c50bbe36cf0417d1a/i18ndude-5.0.0.tar.gz" } ], "5.0.1": [ { "comment_text": "", "digests": { "md5": "2e222848b05682843533daa746a49be6", "sha256": "6d425d0499bf3691b7d69abe42aa79560fe352fc85686380c8dffad5f31ff13a" }, "downloads": -1, "filename": "i18ndude-5.0.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2e222848b05682843533daa746a49be6", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 77591, "upload_time": "2018-03-05T16:23:07", "url": "https://files.pythonhosted.org/packages/54/2c/eff719ce7901f9ce03383d267ce8ed3e3d3f529a5ffc9e780c8f25882f8a/i18ndude-5.0.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "04f2eabd4d30f0177f89112713f9033e", "sha256": "dab35cf4139a231e0dfe9f658fa4d08219c6340913c62c135a8a65fdaedda65b" }, "downloads": -1, "filename": "i18ndude-5.0.1.tar.gz", "has_sig": false, "md5_digest": "04f2eabd4d30f0177f89112713f9033e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 80719, "upload_time": "2018-03-05T16:23:09", "url": "https://files.pythonhosted.org/packages/19/00/8b6efd6da05c6746eb39e003924eeb4cce4552f2a169800fcba61fb2e9e8/i18ndude-5.0.1.tar.gz" } ], "5.0.2": [ { "comment_text": "", "digests": { "md5": "74808c7e01da3141b67884b74aec6b2e", "sha256": "b32980df20b1fcebce8719e559d7fcfca8193225c3a7812d2a7c6699070813ac" }, "downloads": -1, "filename": "i18ndude-5.0.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "74808c7e01da3141b67884b74aec6b2e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 77934, "upload_time": "2018-03-12T11:41:22", "url": "https://files.pythonhosted.org/packages/68/86/811685227b5aa6b2896f1115a7c280b69510ec3926221f8033bbd5c9e681/i18ndude-5.0.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c477cc86e4e8b578870bf7585e61ad5f", "sha256": "929479c8510ca7f8b2ebc590d5f0e57e3b006db4f8a0bf50674898dfe5529606" }, "downloads": -1, "filename": "i18ndude-5.0.2.tar.gz", "has_sig": false, "md5_digest": "c477cc86e4e8b578870bf7585e61ad5f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 81009, "upload_time": "2018-03-12T11:41:24", "url": "https://files.pythonhosted.org/packages/c0/07/b0bccfbe17d86893b379d77975fb14957b655f40a9e9f779bd1283b7a3c1/i18ndude-5.0.2.tar.gz" } ], "5.1.0": [ { "comment_text": "", "digests": { "md5": "2518500c1815868b0788d7ebf9514583", "sha256": "d7bab9e71492213ea20aaac09e0716c9c47a560b7bd69da99c2c21ed9670bdd2" }, "downloads": -1, "filename": "i18ndude-5.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2518500c1815868b0788d7ebf9514583", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 79522, "upload_time": "2018-03-23T11:27:18", "url": "https://files.pythonhosted.org/packages/b1/e7/a15894748f82996404084791f7b5758d329ab07a900501a6770ec8f82dde/i18ndude-5.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "21c69e8fdb5e35433ef79353ee0a02ec", "sha256": "75438e7db34f73dd4b3f0e85e4b844d226f261c7ff00c750bed4920e1a8f55f5" }, "downloads": -1, "filename": "i18ndude-5.1.0.tar.gz", "has_sig": false, "md5_digest": "21c69e8fdb5e35433ef79353ee0a02ec", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 82867, "upload_time": "2018-03-23T11:27:20", "url": "https://files.pythonhosted.org/packages/ba/56/ac67fd021be1335dde48bdb5afb4e65bb81a4a3ed812007d8483f52223b4/i18ndude-5.1.0.tar.gz" } ], "5.2.0": [ { "comment_text": "", "digests": { "md5": "92a598644160930e060ab70057943ee8", "sha256": "3a954c793cd268bf427e391b2d090a6dffe831977da3559a4e23dc1dd407b08c" }, "downloads": -1, "filename": "i18ndude-5.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "92a598644160930e060ab70057943ee8", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 72181, "upload_time": "2018-11-09T08:46:03", "url": "https://files.pythonhosted.org/packages/d7/d6/b12e761681d8991ab16c6673f584bc5880b9f882a8bac17966dd16f9f304/i18ndude-5.2.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "78f0d4fd07a0f8c6c42ef1e7b381db80", "sha256": "839f07a6530166f345e2726f797452870f0242b4abfe35c4ea9196d8f44750ad" }, "downloads": -1, "filename": "i18ndude-5.2.0.tar.gz", "has_sig": false, "md5_digest": "78f0d4fd07a0f8c6c42ef1e7b381db80", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 84632, "upload_time": "2018-11-09T08:46:05", "url": "https://files.pythonhosted.org/packages/95/5e/550add5dbbf2063b954123d9a20fe85786233ee4f7bd945a07f9df604c95/i18ndude-5.2.0.tar.gz" } ], "5.3.0": [ { "comment_text": "", "digests": { "md5": "23d0929bb2b109aacada5b1547573d37", "sha256": "b1e99dc6b0f11638cff3e8847f0522c64b7b1e9ee494186e308c6579bbac9de9" }, "downloads": -1, "filename": "i18ndude-5.3.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "23d0929bb2b109aacada5b1547573d37", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 72330, "upload_time": "2019-02-07T22:35:36", "url": "https://files.pythonhosted.org/packages/d2/00/dca39ec65e28c1dee8f90fe5cc2431d6e8ab03b10209b43fb0c40e0133c2/i18ndude-5.3.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "844a8d97becbcb89d8bab31cac102e5a", "sha256": "d77f506379f7c148c8f42938e51dbe96ae90b57bebdbf1382d3175c4a223f0f3" }, "downloads": -1, "filename": "i18ndude-5.3.0.tar.gz", "has_sig": false, "md5_digest": "844a8d97becbcb89d8bab31cac102e5a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 84997, "upload_time": "2019-02-07T22:35:39", "url": "https://files.pythonhosted.org/packages/77/94/f0d6a2655dddf253151d743c51e680680dcde44acee0791c922c23557493/i18ndude-5.3.0.tar.gz" } ], "5.3.1": [ { "comment_text": "", "digests": { "md5": "da773eff452be68c93c11fe660aa61dd", "sha256": "43c4626229ebb9ca6a98a418ccdc033b4dffbb1305057cad9da4b5e6d2e57d32" }, "downloads": -1, "filename": "i18ndude-5.3.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "da773eff452be68c93c11fe660aa61dd", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 72793, "upload_time": "2019-07-30T15:50:32", "url": "https://files.pythonhosted.org/packages/a5/37/e3546bcd7e1cbe45d821de56b6c1b4e567d1e40ba3da237c2cf78d0d1f39/i18ndude-5.3.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "85a1b481467a353f554917cd3755e178", "sha256": "2db3da8167492fa3ad1bee5822396ad2ff6ba6d06f62692ad3b9dc04c7d87656" }, "downloads": -1, "filename": "i18ndude-5.3.1.tar.gz", "has_sig": false, "md5_digest": "85a1b481467a353f554917cd3755e178", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 85526, "upload_time": "2019-07-30T15:50:34", "url": "https://files.pythonhosted.org/packages/36/00/d27e3c431e37c60b6801f1c75598ff107ae5bde2b878c900dfbaec953668/i18ndude-5.3.1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "da773eff452be68c93c11fe660aa61dd", "sha256": "43c4626229ebb9ca6a98a418ccdc033b4dffbb1305057cad9da4b5e6d2e57d32" }, "downloads": -1, "filename": "i18ndude-5.3.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "da773eff452be68c93c11fe660aa61dd", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 72793, "upload_time": "2019-07-30T15:50:32", "url": "https://files.pythonhosted.org/packages/a5/37/e3546bcd7e1cbe45d821de56b6c1b4e567d1e40ba3da237c2cf78d0d1f39/i18ndude-5.3.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "85a1b481467a353f554917cd3755e178", "sha256": "2db3da8167492fa3ad1bee5822396ad2ff6ba6d06f62692ad3b9dc04c7d87656" }, "downloads": -1, "filename": "i18ndude-5.3.1.tar.gz", "has_sig": false, "md5_digest": "85a1b481467a353f554917cd3755e178", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 85526, "upload_time": "2019-07-30T15:50:34", "url": "https://files.pythonhosted.org/packages/36/00/d27e3c431e37c60b6801f1c75598ff107ae5bde2b878c900dfbaec953668/i18ndude-5.3.1.tar.gz" } ] }