``zope.i18nmessageid``
======================
.. image:: https://img.shields.io/pypi/v/zope.i18nmessageid.svg
:target: https://pypi.python.org/pypi/zope.i18nmessageid/
:alt: Latest Version
.. image:: https://github.com/zopefoundation/zope.i18nmessageid/actions/workflows/tests.yml/badge.svg
:target: https://github.com/zopefoundation/zope.i18nmessageid/actions/workflows/tests.yml
.. image:: https://readthedocs.org/projects/zopei18nmessageid/badge/?version=latest
:target: http://zopei18nmessageid.readthedocs.org/en/latest/
:alt: Documentation Status
To translate any text, we must be able to discover the source domain
of the text. A source domain is an identifier that identifies a
project that produces program source strings. Source strings occur as
literals in python programs, text in templates, and some text in XML
data. The project implies a source language and an application
context.
We can think of a source domain as a collection of messages and
associated translation strings.
We often need to create unicode strings that will be displayed by
separate views. The view cannot translate the string without knowing
its source domain. A string or unicode literal carries no domain
information, therefore we use messages. Messages are unicode strings
which carry a translation source domain and possibly a default
translation. They are created by a message factory. The message
factory is created by calling ``MessageFactory`` with the source
domain.
This package provides facilities for *declaring* such messages within
program source text; translation of the messages is the responsiblitiy
of the 'zope.i18n' package.
Please see http://zopei18nmessageid.readthedocs.org/en/latest/ for the documentation.
=========
Changes
=========
7.0 (2024-09-17)
================
- Drop support for Python 3.7.
- Build Windows wheels on GHA.
- Add support for Python 3.13.
- Enable multi-phase module initialization (PEP 489) for all supported
Python versions. See this "how-to" doc for rationale and steps:
https://docs.python.org/3.13/howto/isolating-extensions.html
- Make the ``hookable`` extension type heap-allocated for Python >= 3.9.
Likewise, see the doc above for rationale and steps. For Python < 3.9,
the ``hookable`` extension type continues to be allocated statically,
even though the module itself is allocated dynamically.
6.1.0 (2023-10-05)
==================
- Add support for Python 3.12.
6.0.1 (2023-03-24)
==================
- Drop dependency on ``six``.
6.0.0 (2023-03-23)
==================
- Drop support for Python 2.7, 3.5, 3.6.
- Add preliminary support for Python 3.12a5.
5.1.1 (2022-11-17)
==================
- Add support for building arm64 wheels on macOS.
5.1.0 (2022-11-06)
==================
- Added support for Python 3.9, 3.10 and 3.11.
5.0.1 (2020-03-10)
==================
- Remove deprecated use of setuptools features. See `issue 22
<https://github.com/zopefoundation/zope.i18nmessageid/issues/22>`_.
5.0.0 (2019-11-12)
==================
- Drop support for Python 3.4.
- Add support for Python 3.8.
4.3.1 (2018-10-19)
==================
- Fix a regression copying Message objects in the Python
implementation. See `issue 14
<https://github.com/zopefoundation/zope.i18nmessageid/issues/14>`_.
4.3.0 (2018-10-18)
==================
- Add attributes to support pluralization on a Message and update the
MessageFactory accordingly.
4.2.0 (2018-10-05)
==================
- Fix the possibility of a rare crash in the C extension when
deallocating items. See `issue 7
<https://github.com/zopefoundation/zope.i18nmessageid/issues/7>`_.
- Drop support for Python 3.3.
- Add support for Python 3.7.
4.1.0 (2017-05-02)
==================
- Drop support for Python 2.6 and 3.2.
- Add support for Python 3.5 and 3.6.
- Fix the C extension not being used in Python 3. See `issue 4
<https://github.com/zopefoundation/zope.i18nmessageid/issues/4>`_.
- Make the Python implementation of Message accept any object for the
``default`` argument, just as the C extension does. This should be a
unicode or byte string. See `issue 5
<https://github.com/zopefoundation/zope.i18nmessageid/issues/5>`_.
4.0.3 (2014-03-19)
==================
- Add support for Python 3.4.
- Update ``boostrap.py`` to version 2.2.
4.0.2 (2012-12-31)
==================
- Flesh out PyPI Trove classifiers.
4.0.1 (2012-11-21)
==================
- Add support for Python 3.3.
4.0.0 (2012-05-16)
==================
- Automate generation of Sphinx HTML docs and running doctest snippets via tox.
- Remove use of '2to3' and associated fixers when installing under Py3k.
The code is now in a "compatible subset" which supports Python 2.6, 2.7,
and 3.2, including PyPy 1.8 (the version compatible with the 2.7 language
spec).
- Bring unit test coverage to 100%.
- Move doctest examples into Sphinx documentation.
- Drop explicit support for Python 2.4 / 2.5 / 3.1.
- Add explicit support for PyPy.
- Add 'setup.py dev' alias (runs ``setup.py develop`` plus installs
``nose`` and ``coverage``).
- Add 'setup.py docs' alias (installs ``Sphinx`` and dependencies).
3.6.1 (2011-07-20)
==================
- Correct metadata in this file for release date.
3.6.0 (2011-07-20)
==================
- Python 3 support.
- Suppress compiling C extensions on PyPy or Jython.
- Add a tox.ini (see http://tox.readthedocs.org/en/latest/) for easier
automated testing.
3.5.3 (2010-08-10)
==================
- Make compilation of C extension optional again; 3.5.1 broke this
inasmuch as this package become unusable on non-CPython platforms.
Making the compilation of the C extension optional again implied
removing ``setup.py`` code added in 3.5.1 which made the C extension
a setuptools "Feature" and readding code from 3.5.0 which overrides
the distutils ``build_ext`` command.
- Move pickle equality tests into a unittest.TestCase test to make it
easier to condition the tests on whether the C extension has been
compiled. This also makes the tests pass on Jython.
3.5.2 (2010-04-30)
==================
- Remove use of 'zope.testing.doctestunit' in favor of stdlib's 'doctest.
3.5.1 (2010-04-10)
==================
- LP #257657 / 489529: Fix memory leak in C extension.
- Fix the compilation of the C extension with python 2.6: refactored it as a
setuptools Feature.
3.5.0 (2009-06-27)
==================
- Make compilation of C extension optional.
- Add support to bootstrap on Jython.
- Change package's mailing list address from zope3-dev at zope.org to
zope-dev at zope.org, because zope3-dev is now retired.
- Reformat change log to common formatting style.
- Update package description and docs a little.
- Remove old .cfg files for zpkg.
3.4.3 (2007-09-26)
==================
- Make PyPI the home URL.
3.4.2 (2007-09-25)
==================
- Move the ``ZopeMessageFactory`` from ``zope.app.i18n`` to this package.
3.4.0 (2007-07-19)
==================
- Remove incorrect dependency.
- Create final release to reflect package status.
3.2.0 (2006-01-05)
==================
- Corresponds to the verison of the zope.i18nmessageid package shipped as
part of the Zope 3.2.0 release.
- Implement 'zope.i18nmessageid.message' as a C extension.
- Deprecate 'zope.i18nmessageid.messageid' APIs ('MessageID',
'MessageIDFactory') in favor of replacements in 'zope.i18nmessageid.message'
('Message', 'MessageFactory'). Deprecated items are scheduled for removal
in Zope 3.3.
3.0.0 (2004-11-07)
==================
- Corresponds to the verison of the zope.i18nmessageid package shipped as
part of the Zope X3.0.0 release.
Raw data
{
"_id": null,
"home_page": "https://github.com/zopefoundation/zope.i18nmessageid",
"name": "zope.i18nmessageid",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.8",
"maintainer_email": null,
"keywords": "zope i18n message factory",
"author": "Zope Foundation and Contributors",
"author_email": "zope-dev@zope.org",
"download_url": "https://files.pythonhosted.org/packages/59/c5/58fab4c6a5a82a8e276adcb9f42ad6cf19ace3ee48e96ef4628218638f79/zope_i18nmessageid-7.0.tar.gz",
"platform": null,
"description": "``zope.i18nmessageid``\n======================\n\n.. image:: https://img.shields.io/pypi/v/zope.i18nmessageid.svg\n :target: https://pypi.python.org/pypi/zope.i18nmessageid/\n :alt: Latest Version\n\n.. image:: https://github.com/zopefoundation/zope.i18nmessageid/actions/workflows/tests.yml/badge.svg\n :target: https://github.com/zopefoundation/zope.i18nmessageid/actions/workflows/tests.yml\n \n.. image:: https://readthedocs.org/projects/zopei18nmessageid/badge/?version=latest\n :target: http://zopei18nmessageid.readthedocs.org/en/latest/\n :alt: Documentation Status\n\nTo translate any text, we must be able to discover the source domain\nof the text. A source domain is an identifier that identifies a\nproject that produces program source strings. Source strings occur as\nliterals in python programs, text in templates, and some text in XML\ndata. The project implies a source language and an application\ncontext.\n\nWe can think of a source domain as a collection of messages and\nassociated translation strings.\n\nWe often need to create unicode strings that will be displayed by\nseparate views. The view cannot translate the string without knowing\nits source domain. A string or unicode literal carries no domain\ninformation, therefore we use messages. Messages are unicode strings\nwhich carry a translation source domain and possibly a default\ntranslation. They are created by a message factory. The message\nfactory is created by calling ``MessageFactory`` with the source\ndomain.\n\nThis package provides facilities for *declaring* such messages within\nprogram source text; translation of the messages is the responsiblitiy\nof the 'zope.i18n' package.\n\nPlease see http://zopei18nmessageid.readthedocs.org/en/latest/ for the documentation.\n\n\n=========\n Changes\n=========\n\n7.0 (2024-09-17)\n================\n\n- Drop support for Python 3.7.\n\n- Build Windows wheels on GHA.\n\n- Add support for Python 3.13.\n\n- Enable multi-phase module initialization (PEP 489) for all supported\n Python versions. See this \"how-to\" doc for rationale and steps:\n https://docs.python.org/3.13/howto/isolating-extensions.html\n\n- Make the ``hookable`` extension type heap-allocated for Python >= 3.9.\n Likewise, see the doc above for rationale and steps. For Python < 3.9,\n the ``hookable`` extension type continues to be allocated statically,\n even though the module itself is allocated dynamically.\n\n\n6.1.0 (2023-10-05)\n==================\n\n- Add support for Python 3.12.\n\n\n6.0.1 (2023-03-24)\n==================\n\n- Drop dependency on ``six``.\n\n\n6.0.0 (2023-03-23)\n==================\n\n- Drop support for Python 2.7, 3.5, 3.6.\n\n- Add preliminary support for Python 3.12a5.\n\n\n5.1.1 (2022-11-17)\n==================\n\n- Add support for building arm64 wheels on macOS.\n\n\n5.1.0 (2022-11-06)\n==================\n\n- Added support for Python 3.9, 3.10 and 3.11.\n\n\n5.0.1 (2020-03-10)\n==================\n\n- Remove deprecated use of setuptools features. See `issue 22\n <https://github.com/zopefoundation/zope.i18nmessageid/issues/22>`_.\n\n\n5.0.0 (2019-11-12)\n==================\n\n- Drop support for Python 3.4.\n\n- Add support for Python 3.8.\n\n\n4.3.1 (2018-10-19)\n==================\n\n- Fix a regression copying Message objects in the Python\n implementation. See `issue 14\n <https://github.com/zopefoundation/zope.i18nmessageid/issues/14>`_.\n\n\n4.3.0 (2018-10-18)\n==================\n\n- Add attributes to support pluralization on a Message and update the\n MessageFactory accordingly.\n\n\n4.2.0 (2018-10-05)\n==================\n\n- Fix the possibility of a rare crash in the C extension when\n deallocating items. See `issue 7\n <https://github.com/zopefoundation/zope.i18nmessageid/issues/7>`_.\n\n- Drop support for Python 3.3.\n\n- Add support for Python 3.7.\n\n\n4.1.0 (2017-05-02)\n==================\n\n- Drop support for Python 2.6 and 3.2.\n\n- Add support for Python 3.5 and 3.6.\n\n- Fix the C extension not being used in Python 3. See `issue 4\n <https://github.com/zopefoundation/zope.i18nmessageid/issues/4>`_.\n\n- Make the Python implementation of Message accept any object for the\n ``default`` argument, just as the C extension does. This should be a\n unicode or byte string. See `issue 5\n <https://github.com/zopefoundation/zope.i18nmessageid/issues/5>`_.\n\n4.0.3 (2014-03-19)\n==================\n\n- Add support for Python 3.4.\n\n- Update ``boostrap.py`` to version 2.2.\n\n4.0.2 (2012-12-31)\n==================\n\n- Flesh out PyPI Trove classifiers.\n\n4.0.1 (2012-11-21)\n==================\n\n- Add support for Python 3.3.\n\n4.0.0 (2012-05-16)\n==================\n\n- Automate generation of Sphinx HTML docs and running doctest snippets via tox.\n\n- Remove use of '2to3' and associated fixers when installing under Py3k.\n The code is now in a \"compatible subset\" which supports Python 2.6, 2.7,\n and 3.2, including PyPy 1.8 (the version compatible with the 2.7 language\n spec).\n\n- Bring unit test coverage to 100%.\n\n- Move doctest examples into Sphinx documentation.\n\n- Drop explicit support for Python 2.4 / 2.5 / 3.1.\n\n- Add explicit support for PyPy.\n\n- Add 'setup.py dev' alias (runs ``setup.py develop`` plus installs\n ``nose`` and ``coverage``).\n\n- Add 'setup.py docs' alias (installs ``Sphinx`` and dependencies).\n\n\n3.6.1 (2011-07-20)\n==================\n\n- Correct metadata in this file for release date.\n\n3.6.0 (2011-07-20)\n==================\n\n- Python 3 support.\n\n- Suppress compiling C extensions on PyPy or Jython.\n\n- Add a tox.ini (see http://tox.readthedocs.org/en/latest/) for easier\n automated testing.\n\n3.5.3 (2010-08-10)\n==================\n\n- Make compilation of C extension optional again; 3.5.1 broke this\n inasmuch as this package become unusable on non-CPython platforms.\n Making the compilation of the C extension optional again implied\n removing ``setup.py`` code added in 3.5.1 which made the C extension\n a setuptools \"Feature\" and readding code from 3.5.0 which overrides\n the distutils ``build_ext`` command.\n\n- Move pickle equality tests into a unittest.TestCase test to make it\n easier to condition the tests on whether the C extension has been\n compiled. This also makes the tests pass on Jython.\n\n3.5.2 (2010-04-30)\n==================\n\n- Remove use of 'zope.testing.doctestunit' in favor of stdlib's 'doctest.\n\n3.5.1 (2010-04-10)\n==================\n\n- LP #257657 / 489529: Fix memory leak in C extension.\n\n- Fix the compilation of the C extension with python 2.6: refactored it as a\n setuptools Feature.\n\n3.5.0 (2009-06-27)\n==================\n\n- Make compilation of C extension optional.\n\n- Add support to bootstrap on Jython.\n\n- Change package's mailing list address from zope3-dev at zope.org to\n zope-dev at zope.org, because zope3-dev is now retired.\n\n- Reformat change log to common formatting style.\n\n- Update package description and docs a little.\n\n- Remove old .cfg files for zpkg.\n\n3.4.3 (2007-09-26)\n==================\n\n- Make PyPI the home URL.\n\n3.4.2 (2007-09-25)\n==================\n\n- Move the ``ZopeMessageFactory`` from ``zope.app.i18n`` to this package.\n\n3.4.0 (2007-07-19)\n==================\n\n- Remove incorrect dependency.\n\n- Create final release to reflect package status.\n\n3.2.0 (2006-01-05)\n==================\n\n- Corresponds to the verison of the zope.i18nmessageid package shipped as\n part of the Zope 3.2.0 release.\n\n- Implement 'zope.i18nmessageid.message' as a C extension.\n\n- Deprecate 'zope.i18nmessageid.messageid' APIs ('MessageID',\n 'MessageIDFactory') in favor of replacements in 'zope.i18nmessageid.message'\n ('Message', 'MessageFactory'). Deprecated items are scheduled for removal\n in Zope 3.3.\n\n3.0.0 (2004-11-07)\n==================\n\n- Corresponds to the verison of the zope.i18nmessageid package shipped as\n part of the Zope X3.0.0 release.\n",
"bugtrack_url": null,
"license": "ZPL 2.1",
"summary": "Message Identifiers for internationalization",
"version": "7.0",
"project_urls": {
"Homepage": "https://github.com/zopefoundation/zope.i18nmessageid"
},
"split_keywords": [
"zope",
"i18n",
"message",
"factory"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "c457389ac68fca02c615f26b586e570d87bba2b34b8b06842c51f177ded39e95",
"md5": "f21877475f013497e50fea6b9b557cde",
"sha256": "7ee6f542fe3a2df73366383047fee40979d039c550c68881aca49100eac983ee"
},
"downloads": -1,
"filename": "zope.i18nmessageid-7.0-cp310-cp310-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "f21877475f013497e50fea6b9b557cde",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 17698,
"upload_time": "2024-09-17T09:04:42",
"upload_time_iso_8601": "2024-09-17T09:04:42.075926Z",
"url": "https://files.pythonhosted.org/packages/c4/57/389ac68fca02c615f26b586e570d87bba2b34b8b06842c51f177ded39e95/zope.i18nmessageid-7.0-cp310-cp310-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c7bcda41a45814d26c5e2142b247f502118cdc4497a43199d4bb5d19aed3bf9c",
"md5": "043a0ff97952ae26e0ac41fe5a538ec6",
"sha256": "1553023184a82fced550da7f3a63cca2f7a7c88803c2fad57f231555e049cb67"
},
"downloads": -1,
"filename": "zope.i18nmessageid-7.0-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "043a0ff97952ae26e0ac41fe5a538ec6",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 18338,
"upload_time": "2024-09-17T09:04:43",
"upload_time_iso_8601": "2024-09-17T09:04:43.332318Z",
"url": "https://files.pythonhosted.org/packages/c7/bc/da41a45814d26c5e2142b247f502118cdc4497a43199d4bb5d19aed3bf9c/zope.i18nmessageid-7.0-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e44c3754d8d731540e4b2204dcc257bd847f16ea42fce5f75bff68530ac9bdb5",
"md5": "396047f1d670cf722c7ef96de1bb29b9",
"sha256": "7c3a980acfb10b7cc2875d2154b4198404b80d9d7e655aee01fce17cc0641bed"
},
"downloads": -1,
"filename": "zope.i18nmessageid-7.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "396047f1d670cf722c7ef96de1bb29b9",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 31998,
"upload_time": "2024-09-17T09:23:48",
"upload_time_iso_8601": "2024-09-17T09:23:48.273670Z",
"url": "https://files.pythonhosted.org/packages/e4/4c/3754d8d731540e4b2204dcc257bd847f16ea42fce5f75bff68530ac9bdb5/zope.i18nmessageid-7.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3e220d59fd5511767bcb12008c77f8fd0ab97910c0a9dd0fa248755b1ee88926",
"md5": "939c4626fc7e5b12c4bce7fecc6d909a",
"sha256": "8432a2e5d93bd1025721667e13f4289eb3de8e1bca0291804835a9f552f170ce"
},
"downloads": -1,
"filename": "zope.i18nmessageid-7.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "939c4626fc7e5b12c4bce7fecc6d909a",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 30572,
"upload_time": "2024-09-17T09:07:34",
"upload_time_iso_8601": "2024-09-17T09:07:34.372450Z",
"url": "https://files.pythonhosted.org/packages/3e/22/0d59fd5511767bcb12008c77f8fd0ab97910c0a9dd0fa248755b1ee88926/zope.i18nmessageid-7.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "36b543fe73c448b8e16e06998f08635e896ba166bad17c0176b272ec5ba84b31",
"md5": "086c463532a560255bfeee934eb1e1d8",
"sha256": "75dbeb7e8ae7ea2e32c5bdcf061826bb3a42f6fd50b92c1ac38818665653c3e5"
},
"downloads": -1,
"filename": "zope.i18nmessageid-7.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "086c463532a560255bfeee934eb1e1d8",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 31431,
"upload_time": "2024-09-17T09:07:41",
"upload_time_iso_8601": "2024-09-17T09:07:41.623296Z",
"url": "https://files.pythonhosted.org/packages/36/b5/43fe73c448b8e16e06998f08635e896ba166bad17c0176b272ec5ba84b31/zope.i18nmessageid-7.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "af81b75354a45a220c05f47489ae4fd61a1c2ad0ee67bfae268e502d92a712f8",
"md5": "7126427720c29ec8634310198c951f9f",
"sha256": "2c7c042f43e130f66c04a9e58a733319be0e730701eb4fb3b0b57c4d23ff8e5f"
},
"downloads": -1,
"filename": "zope.i18nmessageid-7.0-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "7126427720c29ec8634310198c951f9f",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 21283,
"upload_time": "2024-09-17T09:05:32",
"upload_time_iso_8601": "2024-09-17T09:05:32.441711Z",
"url": "https://files.pythonhosted.org/packages/af/81/b75354a45a220c05f47489ae4fd61a1c2ad0ee67bfae268e502d92a712f8/zope.i18nmessageid-7.0-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8de7d277e55b25c886a016fa7d03cc2b9a2eae834153e87cd393be127621113f",
"md5": "a7fba1bb4cd4aaba34ce7ed2f5e5816c",
"sha256": "e3360de87b99e4e7e6983c2d7635aeb9a557f1e43c5fe598962faf8b5deb56c7"
},
"downloads": -1,
"filename": "zope.i18nmessageid-7.0-cp311-cp311-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "a7fba1bb4cd4aaba34ce7ed2f5e5816c",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 17698,
"upload_time": "2024-09-17T09:04:27",
"upload_time_iso_8601": "2024-09-17T09:04:27.598578Z",
"url": "https://files.pythonhosted.org/packages/8d/e7/d277e55b25c886a016fa7d03cc2b9a2eae834153e87cd393be127621113f/zope.i18nmessageid-7.0-cp311-cp311-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6074d3131b54733c1ddb6f8cc96bc3102e3595f3121918f51d8ce11253c18a8a",
"md5": "607419f2f5d8f198abb9f423b6c665f0",
"sha256": "bb37edbd25c0715ca513984648182d02d9127334747ad6059bae34622bdc8f67"
},
"downloads": -1,
"filename": "zope.i18nmessageid-7.0-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "607419f2f5d8f198abb9f423b6c665f0",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 18341,
"upload_time": "2024-09-17T09:04:29",
"upload_time_iso_8601": "2024-09-17T09:04:29.112532Z",
"url": "https://files.pythonhosted.org/packages/60/74/d3131b54733c1ddb6f8cc96bc3102e3595f3121918f51d8ce11253c18a8a/zope.i18nmessageid-7.0-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f11f2422f95a84f11440843465dd676745e75465fb048345a3b769b966615407",
"md5": "51172dd4945061058d3d2eea208da4c9",
"sha256": "032d114cc052a4d4e7223be0d12b680277ad2e3063eebbe3601d5dbbd0124bf0"
},
"downloads": -1,
"filename": "zope.i18nmessageid-7.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "51172dd4945061058d3d2eea208da4c9",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 32222,
"upload_time": "2024-09-17T09:23:50",
"upload_time_iso_8601": "2024-09-17T09:23:50.507047Z",
"url": "https://files.pythonhosted.org/packages/f1/1f/2422f95a84f11440843465dd676745e75465fb048345a3b769b966615407/zope.i18nmessageid-7.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bb539fe4133f0ef6c36a7564626f8e0da55bd9ebd380763340a59fbdbb415119",
"md5": "564b4c3ec92af146165e49e7471a3572",
"sha256": "0c752c0df91c16e09a2936aba5148cd8cbd73b5cd94bdcf84f569d58017ae82f"
},
"downloads": -1,
"filename": "zope.i18nmessageid-7.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "564b4c3ec92af146165e49e7471a3572",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 30825,
"upload_time": "2024-09-17T09:07:36",
"upload_time_iso_8601": "2024-09-17T09:07:36.229110Z",
"url": "https://files.pythonhosted.org/packages/bb/53/9fe4133f0ef6c36a7564626f8e0da55bd9ebd380763340a59fbdbb415119/zope.i18nmessageid-7.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fd6f3487e31caaad409ae2812e91f224721f4054a014d706facc236c03fd755e",
"md5": "eb328d2755248059360db35f8a252f21",
"sha256": "95194ed258cdf3728a4c2ccac644d3310c7032b6bdc7e682edcce9a4937e4c0f"
},
"downloads": -1,
"filename": "zope.i18nmessageid-7.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "eb328d2755248059360db35f8a252f21",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 31698,
"upload_time": "2024-09-17T09:07:43",
"upload_time_iso_8601": "2024-09-17T09:07:43.068059Z",
"url": "https://files.pythonhosted.org/packages/fd/6f/3487e31caaad409ae2812e91f224721f4054a014d706facc236c03fd755e/zope.i18nmessageid-7.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8a2687c80d1c124725aa5bd720c01353ec185fdc41bad6b4f49ae66e0cf2a5ec",
"md5": "1ea311da18ad509794e7204db548c1db",
"sha256": "dd5d5d04f2ea12095340715a0bc90c05b9f58285df19b2eb036d3bde20ca9f01"
},
"downloads": -1,
"filename": "zope.i18nmessageid-7.0-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "1ea311da18ad509794e7204db548c1db",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 21272,
"upload_time": "2024-09-17T09:06:03",
"upload_time_iso_8601": "2024-09-17T09:06:03.624121Z",
"url": "https://files.pythonhosted.org/packages/8a/26/87c80d1c124725aa5bd720c01353ec185fdc41bad6b4f49ae66e0cf2a5ec/zope.i18nmessageid-7.0-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a93be41aa4a00510ca7edc62df4a0e46ec9725007bce7e82326b84ea55dd0614",
"md5": "d07f87a579621dbea95eb7eb7a9a57f8",
"sha256": "aa1ae53b1bf2912c35001318c1eb9edd41a46d8282423faedc50d44a5f7b52e9"
},
"downloads": -1,
"filename": "zope.i18nmessageid-7.0-cp312-cp312-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "d07f87a579621dbea95eb7eb7a9a57f8",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 17765,
"upload_time": "2024-09-17T09:04:37",
"upload_time_iso_8601": "2024-09-17T09:04:37.454307Z",
"url": "https://files.pythonhosted.org/packages/a9/3b/e41aa4a00510ca7edc62df4a0e46ec9725007bce7e82326b84ea55dd0614/zope.i18nmessageid-7.0-cp312-cp312-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7c1c631f9fb2314802029a0fc3f1e8e974716341e690e8da60392948b14c9e06",
"md5": "d9121df2a2495fc5279df4891323b735",
"sha256": "e3e0101ec6dd0d7e9c697166cc98058761b0ed4538c24bee89cecb5528bdc61c"
},
"downloads": -1,
"filename": "zope.i18nmessageid-7.0-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "d9121df2a2495fc5279df4891323b735",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 18354,
"upload_time": "2024-09-17T09:04:39",
"upload_time_iso_8601": "2024-09-17T09:04:39.093118Z",
"url": "https://files.pythonhosted.org/packages/7c/1c/631f9fb2314802029a0fc3f1e8e974716341e690e8da60392948b14c9e06/zope.i18nmessageid-7.0-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f4e91727ba213180d03d90067f54a62c2de351490ca92f752d554fd29c8c8935",
"md5": "3ecf4accf5f07ad7280a95d9793d60af",
"sha256": "97e0c80a7f824036acfcf046bbd9db3e14909aaca18c8cfc970794481d83c767"
},
"downloads": -1,
"filename": "zope.i18nmessageid-7.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "3ecf4accf5f07ad7280a95d9793d60af",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 33812,
"upload_time": "2024-09-17T09:23:52",
"upload_time_iso_8601": "2024-09-17T09:23:52.407576Z",
"url": "https://files.pythonhosted.org/packages/f4/e9/1727ba213180d03d90067f54a62c2de351490ca92f752d554fd29c8c8935/zope.i18nmessageid-7.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "05de05457c704799ee08d3f16560d12d14134a935123fadcc6ff2959e9f14520",
"md5": "940fe6a51d993549f523b4defaa8da84",
"sha256": "1b2dc03e41f328238661b489344b97c0c305ef80f8ddb00fa2b16d7bca21d8ab"
},
"downloads": -1,
"filename": "zope.i18nmessageid-7.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "940fe6a51d993549f523b4defaa8da84",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 32291,
"upload_time": "2024-09-17T09:07:37",
"upload_time_iso_8601": "2024-09-17T09:07:37.479486Z",
"url": "https://files.pythonhosted.org/packages/05/de/05457c704799ee08d3f16560d12d14134a935123fadcc6ff2959e9f14520/zope.i18nmessageid-7.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1a07d56b6a808264eb119bdccc0385779f99ea58aa552bc6f22702bf03d301a2",
"md5": "f8c01fb5ba1334a7ca12773c6e0953c3",
"sha256": "31cb8788eac247aa6b8c0bf3e8cb781b1869a563ed44f7ac83bc269641bf7881"
},
"downloads": -1,
"filename": "zope.i18nmessageid-7.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "f8c01fb5ba1334a7ca12773c6e0953c3",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 33416,
"upload_time": "2024-09-17T09:07:44",
"upload_time_iso_8601": "2024-09-17T09:07:44.776407Z",
"url": "https://files.pythonhosted.org/packages/1a/07/d56b6a808264eb119bdccc0385779f99ea58aa552bc6f22702bf03d301a2/zope.i18nmessageid-7.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "99d3f3cd78dba4d1c80af6802cfbed0600977075b5185ecd835210d4588c4515",
"md5": "a320e0b93301dbbb80bd8ecf31ecfe8d",
"sha256": "5de47a4fd7a74e935b8f88c91cff38bfc8a02a0311e4bb66abc11e92cc43bd3e"
},
"downloads": -1,
"filename": "zope.i18nmessageid-7.0-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "a320e0b93301dbbb80bd8ecf31ecfe8d",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 21327,
"upload_time": "2024-09-17T09:06:33",
"upload_time_iso_8601": "2024-09-17T09:06:33.814008Z",
"url": "https://files.pythonhosted.org/packages/99/d3/f3cd78dba4d1c80af6802cfbed0600977075b5185ecd835210d4588c4515/zope.i18nmessageid-7.0-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d7df583fd4e5dba05b45b07db8ed10e8705bf090e29a29b8f070c521fd7097e6",
"md5": "d62572f87b8eeb1a0270d4653573cef4",
"sha256": "2194d5bb67fbae507501119b932692ef6cf59606eda9ce7aeeb77e7645c44d46"
},
"downloads": -1,
"filename": "zope.i18nmessageid-7.0-cp313-cp313-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "d62572f87b8eeb1a0270d4653573cef4",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 17766,
"upload_time": "2024-09-17T09:05:22",
"upload_time_iso_8601": "2024-09-17T09:05:22.325265Z",
"url": "https://files.pythonhosted.org/packages/d7/df/583fd4e5dba05b45b07db8ed10e8705bf090e29a29b8f070c521fd7097e6/zope.i18nmessageid-7.0-cp313-cp313-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c6d169c30572857e45f4ebac532c704dd29b8312eee9b28f4e1fd9cacccd8903",
"md5": "226b39f649c15db68507bcfa6a4be1c7",
"sha256": "eab9fdba09409a2895e27823a53d095127639cc9472a138511f4d826c35e6bad"
},
"downloads": -1,
"filename": "zope.i18nmessageid-7.0-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "226b39f649c15db68507bcfa6a4be1c7",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 18358,
"upload_time": "2024-09-17T09:05:23",
"upload_time_iso_8601": "2024-09-17T09:05:23.932849Z",
"url": "https://files.pythonhosted.org/packages/c6/d1/69c30572857e45f4ebac532c704dd29b8312eee9b28f4e1fd9cacccd8903/zope.i18nmessageid-7.0-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e9f2375793b55182e47c5772f73e4fac91b6b194078d735ee6425aeb2a578b96",
"md5": "8fdf8fdae04bbdac8e7bc88dde3b3559",
"sha256": "5f88c10ac7e795900a4a2ab680026381dda6d025d7ba09a334a23fb660db725e"
},
"downloads": -1,
"filename": "zope.i18nmessageid-7.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "8fdf8fdae04bbdac8e7bc88dde3b3559",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 33773,
"upload_time": "2024-09-17T09:23:54",
"upload_time_iso_8601": "2024-09-17T09:23:54.136958Z",
"url": "https://files.pythonhosted.org/packages/e9/f2/375793b55182e47c5772f73e4fac91b6b194078d735ee6425aeb2a578b96/zope.i18nmessageid-7.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "810c67532e19a0c5cd7cc4f596cf87638d777f7fb19a44a69ac3fd0a8a8795c2",
"md5": "50623337e52da9f64307c7df31443fa2",
"sha256": "2fae59dcc9f02b1f16ecf0abd10a4c8a3344ede81083d02f6572130c0f2dbd88"
},
"downloads": -1,
"filename": "zope.i18nmessageid-7.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "50623337e52da9f64307c7df31443fa2",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 32252,
"upload_time": "2024-09-17T09:07:39",
"upload_time_iso_8601": "2024-09-17T09:07:39.438506Z",
"url": "https://files.pythonhosted.org/packages/81/0c/67532e19a0c5cd7cc4f596cf87638d777f7fb19a44a69ac3fd0a8a8795c2/zope.i18nmessageid-7.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cf3a1436ad551c49b51a32f38917f9455442d027b3c054c0752553f7a194dfbb",
"md5": "473fe05e631d7d9630efbb4ed95d6fc5",
"sha256": "d955062da0bbe71d88514ffe9c1e74d454af55eafd5d8132dc7038ca42caa18e"
},
"downloads": -1,
"filename": "zope.i18nmessageid-7.0-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "473fe05e631d7d9630efbb4ed95d6fc5",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 33373,
"upload_time": "2024-09-17T09:07:46",
"upload_time_iso_8601": "2024-09-17T09:07:46.555695Z",
"url": "https://files.pythonhosted.org/packages/cf/3a/1436ad551c49b51a32f38917f9455442d027b3c054c0752553f7a194dfbb/zope.i18nmessageid-7.0-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f5c59b3d37b3091cab968ef963c099f7c97e9d934848d8131409589abe719c99",
"md5": "aad2913e174e45e7eb51b73f4298cd63",
"sha256": "e57778992999aa1e3bd2dcc75d2b3b26ebb5786e714bdabf0260ec63dfc4ab5b"
},
"downloads": -1,
"filename": "zope.i18nmessageid-7.0-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "aad2913e174e45e7eb51b73f4298cd63",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 21336,
"upload_time": "2024-09-17T09:07:02",
"upload_time_iso_8601": "2024-09-17T09:07:02.188392Z",
"url": "https://files.pythonhosted.org/packages/f5/c5/9b3d37b3091cab968ef963c099f7c97e9d934848d8131409589abe719c99/zope.i18nmessageid-7.0-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2aed2531a775a35d5de143f8e95466caa33bebe1b7d6a624f6c69d0506f2cf84",
"md5": "d290881efc495bbc2acc79a4ac5685cb",
"sha256": "eda699adc7176740fb86d77f6d2f1b8a4a8d4ca050a5f7c0f0c202dc41fd3e1b"
},
"downloads": -1,
"filename": "zope.i18nmessageid-7.0-cp38-cp38-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "d290881efc495bbc2acc79a4ac5685cb",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 17600,
"upload_time": "2024-09-17T09:05:30",
"upload_time_iso_8601": "2024-09-17T09:05:30.635522Z",
"url": "https://files.pythonhosted.org/packages/2a/ed/2531a775a35d5de143f8e95466caa33bebe1b7d6a624f6c69d0506f2cf84/zope.i18nmessageid-7.0-cp38-cp38-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3e7e7937404087cc8eaa75df71f27d9a2475dfc2bd496e3922150f564e7b1038",
"md5": "53d041708e3be5f3738db2054a6d26c4",
"sha256": "fb594f927928b8e10aa97af9d0f523a648ee86c2a7612c4883b50112d87ad400"
},
"downloads": -1,
"filename": "zope.i18nmessageid-7.0-cp38-cp38-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "53d041708e3be5f3738db2054a6d26c4",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 18197,
"upload_time": "2024-09-17T09:05:32",
"upload_time_iso_8601": "2024-09-17T09:05:32.312778Z",
"url": "https://files.pythonhosted.org/packages/3e/7e/7937404087cc8eaa75df71f27d9a2475dfc2bd496e3922150f564e7b1038/zope.i18nmessageid-7.0-cp38-cp38-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "82e9f29460fc2a73c4a47b554f936389fb9e218674d7b2af2cf56fc64078865f",
"md5": "17d294186b4f3d7b2f3fa52c9230872a",
"sha256": "66fbbd85a2cb1bb319d7a866b9c1a9d92e3a7b4c4b2619dcbff41f291ce49a99"
},
"downloads": -1,
"filename": "zope.i18nmessageid-7.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "17d294186b4f3d7b2f3fa52c9230872a",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 31883,
"upload_time": "2024-09-17T09:23:56",
"upload_time_iso_8601": "2024-09-17T09:23:56.186991Z",
"url": "https://files.pythonhosted.org/packages/82/e9/f29460fc2a73c4a47b554f936389fb9e218674d7b2af2cf56fc64078865f/zope.i18nmessageid-7.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "852754a4c7f86e627ece72ab083327c326a6d9470d926b2fb5d2604f8453c66e",
"md5": "f8bace529b2ca5fe725b6b44784b1393",
"sha256": "342436c8e7eaa73794e618958364a9ea3a3b17a111c987f8b0925e6fba425121"
},
"downloads": -1,
"filename": "zope.i18nmessageid-7.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "f8bace529b2ca5fe725b6b44784b1393",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 30531,
"upload_time": "2024-09-17T09:07:41",
"upload_time_iso_8601": "2024-09-17T09:07:41.206132Z",
"url": "https://files.pythonhosted.org/packages/85/27/54a4c7f86e627ece72ab083327c326a6d9470d926b2fb5d2604f8453c66e/zope.i18nmessageid-7.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "79bafd6d85fc5c7e071015843b7fcf29943bd156a52cf40739b3244e8e91e15f",
"md5": "8574001b1e3cd30899c8fd48fb1bd0e0",
"sha256": "a14d4f8a317daa73700c81aed057ff43f437dd1d90fc146d6b5c7dd9c07eccd6"
},
"downloads": -1,
"filename": "zope.i18nmessageid-7.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "8574001b1e3cd30899c8fd48fb1bd0e0",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 31278,
"upload_time": "2024-09-17T09:07:48",
"upload_time_iso_8601": "2024-09-17T09:07:48.171496Z",
"url": "https://files.pythonhosted.org/packages/79/ba/fd6d85fc5c7e071015843b7fcf29943bd156a52cf40739b3244e8e91e15f/zope.i18nmessageid-7.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "997ca32d428eb837baa44e9a67513b332d913a4d1667512b37c27965bdd3d40a",
"md5": "34f1965a4bd179cab552a43d0a273f9d",
"sha256": "7dc121ed4521ccfed78b99ecd71a97a3b0c86834c08be40f78edd1e576e13506"
},
"downloads": -1,
"filename": "zope.i18nmessageid-7.0-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "34f1965a4bd179cab552a43d0a273f9d",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 21138,
"upload_time": "2024-09-17T09:05:37",
"upload_time_iso_8601": "2024-09-17T09:05:37.620895Z",
"url": "https://files.pythonhosted.org/packages/99/7c/a32d428eb837baa44e9a67513b332d913a4d1667512b37c27965bdd3d40a/zope.i18nmessageid-7.0-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "631731b3acd8cc5ef40b0fa172fe58867fbccce44e3f89a6bce94c94f555e76d",
"md5": "7b33987046a21fe52f111dacde02b2dd",
"sha256": "7448dd9a8a6035987076f5a0447545466ddb251467a00190df804c9ecf450e4b"
},
"downloads": -1,
"filename": "zope.i18nmessageid-7.0-cp39-cp39-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "7b33987046a21fe52f111dacde02b2dd",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 17595,
"upload_time": "2024-09-17T09:05:11",
"upload_time_iso_8601": "2024-09-17T09:05:11.735038Z",
"url": "https://files.pythonhosted.org/packages/63/17/31b3acd8cc5ef40b0fa172fe58867fbccce44e3f89a6bce94c94f555e76d/zope.i18nmessageid-7.0-cp39-cp39-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "59dd5d4d3016e973e695975de57e41d0de596457726dffa64fd167e3ce40dc6d",
"md5": "0965857a26957dea9477bb9fcf2f7802",
"sha256": "257784d44c7365f703323f630cfe3c9534d24d6e1c7df38b3bf7a8c4002fab35"
},
"downloads": -1,
"filename": "zope.i18nmessageid-7.0-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "0965857a26957dea9477bb9fcf2f7802",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 18195,
"upload_time": "2024-09-17T09:05:13",
"upload_time_iso_8601": "2024-09-17T09:05:13.074714Z",
"url": "https://files.pythonhosted.org/packages/59/dd/5d4d3016e973e695975de57e41d0de596457726dffa64fd167e3ce40dc6d/zope.i18nmessageid-7.0-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ecfe5bd477a6096e004a6006a1ee204e725871183575c184bb8b88a9f139ee11",
"md5": "51a1f5ea3be2910d0374c9acfc147b56",
"sha256": "abfe7409744c378dccbc4029fa25275865d1eb7026a0841cd7da34c41f65d1e5"
},
"downloads": -1,
"filename": "zope.i18nmessageid-7.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "51a1f5ea3be2910d0374c9acfc147b56",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 31020,
"upload_time": "2024-09-17T09:23:58",
"upload_time_iso_8601": "2024-09-17T09:23:58.268685Z",
"url": "https://files.pythonhosted.org/packages/ec/fe/5bd477a6096e004a6006a1ee204e725871183575c184bb8b88a9f139ee11/zope.i18nmessageid-7.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fd1b384cd8b80a07764544e899d78fb6c31aa85cc57119a1c16f799f0621f8c2",
"md5": "f90b21d296c6bfc6e7c17c844af46e54",
"sha256": "c02fd64f8471a3f86297dbd0321f40facbc570d4e9e1f755a06c3873e8f75e33"
},
"downloads": -1,
"filename": "zope.i18nmessageid-7.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "f90b21d296c6bfc6e7c17c844af46e54",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 29629,
"upload_time": "2024-09-17T09:07:42",
"upload_time_iso_8601": "2024-09-17T09:07:42.484974Z",
"url": "https://files.pythonhosted.org/packages/fd/1b/384cd8b80a07764544e899d78fb6c31aa85cc57119a1c16f799f0621f8c2/zope.i18nmessageid-7.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6d64139c9f27c5ed96ae5d3e9c0727b0056fabd8bee67a731911027c82dd705b",
"md5": "5db220a98d6115d12358658e83e335e8",
"sha256": "43e315323710ec93068585f18582e98fe3cb4204645f4740bb7d3d00b13ff39c"
},
"downloads": -1,
"filename": "zope.i18nmessageid-7.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "5db220a98d6115d12358658e83e335e8",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 30361,
"upload_time": "2024-09-17T09:07:49",
"upload_time_iso_8601": "2024-09-17T09:07:49.639734Z",
"url": "https://files.pythonhosted.org/packages/6d/64/139c9f27c5ed96ae5d3e9c0727b0056fabd8bee67a731911027c82dd705b/zope.i18nmessageid-7.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "15ca55a8e40937416577f75f360d2f7047683b3c9532f5c67f4f84b0c19c277b",
"md5": "2fb93a30fc04a49bcaba342d7a0e6c08",
"sha256": "a923757be3603f1ade99386075c923f621f4f808c79626e55ea4ab95eb7d756b"
},
"downloads": -1,
"filename": "zope.i18nmessageid-7.0-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "2fb93a30fc04a49bcaba342d7a0e6c08",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 21138,
"upload_time": "2024-09-17T09:06:09",
"upload_time_iso_8601": "2024-09-17T09:06:09.434358Z",
"url": "https://files.pythonhosted.org/packages/15/ca/55a8e40937416577f75f360d2f7047683b3c9532f5c67f4f84b0c19c277b/zope.i18nmessageid-7.0-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "59c558fab4c6a5a82a8e276adcb9f42ad6cf19ace3ee48e96ef4628218638f79",
"md5": "e69426b19e72b06aa6c0e8c683fb9525",
"sha256": "bf9146078c0d7359da41043bd2b713203c4fc56ef2122b3cdbb7551c3fcd8464"
},
"downloads": -1,
"filename": "zope_i18nmessageid-7.0.tar.gz",
"has_sig": false,
"md5_digest": "e69426b19e72b06aa6c0e8c683fb9525",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 27929,
"upload_time": "2024-09-17T09:34:18",
"upload_time_iso_8601": "2024-09-17T09:34:18.383011Z",
"url": "https://files.pythonhosted.org/packages/59/c5/58fab4c6a5a82a8e276adcb9f42ad6cf19ace3ee48e96ef4628218638f79/zope_i18nmessageid-7.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-09-17 09:34:18",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "zopefoundation",
"github_project": "zope.i18nmessageid",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"tox": true,
"lcname": "zope.i18nmessageid"
}