zope.i18nmessageid


Namezope.i18nmessageid JSON
Version 6.1.0 PyPI version JSON
download
home_pagehttps://github.com/zopefoundation/zope.i18nmessageid
SummaryMessage Identifiers for internationalization
upload_time2023-10-05 12:02:56
maintainer
docs_urlNone
authorZope Foundation and Contributors
requires_python>=3.7
licenseZPL 2.1
keywords zope i18n message factory
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage
            ``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
=========

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": "",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "",
    "keywords": "zope i18n message factory",
    "author": "Zope Foundation and Contributors",
    "author_email": "zope-dev@zope.org",
    "download_url": "https://files.pythonhosted.org/packages/c0/55/73436beb7a4fdb139cf0ac259a2a67519460f91b1756bac05ba9af038568/zope.i18nmessageid-6.1.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\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": "6.1.0",
    "project_urls": {
        "Homepage": "https://github.com/zopefoundation/zope.i18nmessageid"
    },
    "split_keywords": [
        "zope",
        "i18n",
        "message",
        "factory"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ebf3af5b5f92366dd698c6d67b6f0cc14e129cd855ea45953db6af9109727016",
                "md5": "550502416792d1109e4bf080ed96ec2d",
                "sha256": "01b542c7b8306786ea65f7680a542e45f2983041c9f8954791b479d6aa82d9bf"
            },
            "downloads": -1,
            "filename": "zope.i18nmessageid-6.1.0-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "550502416792d1109e4bf080ed96ec2d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 16484,
            "upload_time": "2023-10-05T12:03:36",
            "upload_time_iso_8601": "2023-10-05T12:03:36.568629Z",
            "url": "https://files.pythonhosted.org/packages/eb/f3/af5b5f92366dd698c6d67b6f0cc14e129cd855ea45953db6af9109727016/zope.i18nmessageid-6.1.0-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8648a3292fa04732af9768a4a93a0f8958f7e288e69010143729562096c714a2",
                "md5": "f0b2fe84eaf6c970ad86e2d2734a4732",
                "sha256": "3c6084591c96590dbeff3b34ef0d0baaddbd3b7afaf9bdd991705dd4f6b41309"
            },
            "downloads": -1,
            "filename": "zope.i18nmessageid-6.1.0-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "f0b2fe84eaf6c970ad86e2d2734a4732",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 16817,
            "upload_time": "2023-10-05T12:03:38",
            "upload_time_iso_8601": "2023-10-05T12:03:38.206460Z",
            "url": "https://files.pythonhosted.org/packages/86/48/a3292fa04732af9768a4a93a0f8958f7e288e69010143729562096c714a2/zope.i18nmessageid-6.1.0-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8039c59426a5040740d6e51438c674531a70c8bcaca1f73567ea63f36041a5fc",
                "md5": "25212245e9a303abf5b53a1f5c503645",
                "sha256": "6912e4eb4d53acbd54690be35da932a18e911eb5c5d1a5e98e02920b5faf7791"
            },
            "downloads": -1,
            "filename": "zope.i18nmessageid-6.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "25212245e9a303abf5b53a1f5c503645",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 27415,
            "upload_time": "2023-10-05T12:04:22",
            "upload_time_iso_8601": "2023-10-05T12:04:22.420789Z",
            "url": "https://files.pythonhosted.org/packages/80/39/c59426a5040740d6e51438c674531a70c8bcaca1f73567ea63f36041a5fc/zope.i18nmessageid-6.1.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": "d212d2005ab9e9744934caafae75e1e58ee1c9d965a14ebc83c40bb70c0c03b2",
                "md5": "2ba4a1fe81c837db54ce55ea88bb7f3e",
                "sha256": "9b7f86523bdbf4718a4cb0e1d1319b925f8150504aea169ed7368e7c2717910b"
            },
            "downloads": -1,
            "filename": "zope.i18nmessageid-6.1.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": "2ba4a1fe81c837db54ce55ea88bb7f3e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 28007,
            "upload_time": "2023-10-05T12:04:34",
            "upload_time_iso_8601": "2023-10-05T12:04:34.098360Z",
            "url": "https://files.pythonhosted.org/packages/d2/12/d2005ab9e9744934caafae75e1e58ee1c9d965a14ebc83c40bb70c0c03b2/zope.i18nmessageid-6.1.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": "4c62bb5673f14425b965d356619e6b7f7ab6141d6956ec59aa3d552095af6bf6",
                "md5": "b61f07f5f4d95b42347cf2c6643ee2d9",
                "sha256": "3e4e139d58278e3e5bc3f9a22fe646b4f70697fe1cb9cc2957d75d7725b22182"
            },
            "downloads": -1,
            "filename": "zope.i18nmessageid-6.1.0-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b61f07f5f4d95b42347cf2c6643ee2d9",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 16487,
            "upload_time": "2023-10-05T12:03:32",
            "upload_time_iso_8601": "2023-10-05T12:03:32.692924Z",
            "url": "https://files.pythonhosted.org/packages/4c/62/bb5673f14425b965d356619e6b7f7ab6141d6956ec59aa3d552095af6bf6/zope.i18nmessageid-6.1.0-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ce987c786d6f57cd170e0f712011561189679b92e695ee97f4c8d51bbd7586d0",
                "md5": "550cf448a786fb7f8d1baac3b01e7064",
                "sha256": "3c79a4ed64bfd120cd4e64586a681b0781cc97158621de034c9f3acbc8dd65d4"
            },
            "downloads": -1,
            "filename": "zope.i18nmessageid-6.1.0-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "550cf448a786fb7f8d1baac3b01e7064",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 16817,
            "upload_time": "2023-10-05T12:03:34",
            "upload_time_iso_8601": "2023-10-05T12:03:34.541729Z",
            "url": "https://files.pythonhosted.org/packages/ce/98/7c786d6f57cd170e0f712011561189679b92e695ee97f4c8d51bbd7586d0/zope.i18nmessageid-6.1.0-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "313a549f72299114981730a7312b100602f56d96ecb106eb2b00977db7e5d08f",
                "md5": "3badebfe3ca6be30d7f599ab119863bb",
                "sha256": "e7fb3756e2abbc76b18c531411bbb07b22b57ed92e8866ff186407b18130b0c2"
            },
            "downloads": -1,
            "filename": "zope.i18nmessageid-6.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "3badebfe3ca6be30d7f599ab119863bb",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 27555,
            "upload_time": "2023-10-05T12:04:23",
            "upload_time_iso_8601": "2023-10-05T12:04:23.917357Z",
            "url": "https://files.pythonhosted.org/packages/31/3a/549f72299114981730a7312b100602f56d96ecb106eb2b00977db7e5d08f/zope.i18nmessageid-6.1.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": "062e6c09bb46ec76690ff796cdd7788caacbbe99114eaa4f9bad36b5962eee06",
                "md5": "464257e8b37aeab8b3b510cdc3e6fd7d",
                "sha256": "7c07714fb25a1fed432409adfa2ee6866b17122cd351fe2c58c1ab70a3a2a701"
            },
            "downloads": -1,
            "filename": "zope.i18nmessageid-6.1.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": "464257e8b37aeab8b3b510cdc3e6fd7d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 28146,
            "upload_time": "2023-10-05T12:04:35",
            "upload_time_iso_8601": "2023-10-05T12:04:35.724810Z",
            "url": "https://files.pythonhosted.org/packages/06/2e/6c09bb46ec76690ff796cdd7788caacbbe99114eaa4f9bad36b5962eee06/zope.i18nmessageid-6.1.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": "d9eed2a6ab53589c00da7d8bbf69eb8ca8c7090529c67edd9742a9a48cfe9f4e",
                "md5": "fb49d7b4aacd8be6ffeb5820c8cf41b2",
                "sha256": "1c9220d802a2c2d897be62ae953a3d5255c1962a9c7c7c73faa959b865d45dce"
            },
            "downloads": -1,
            "filename": "zope.i18nmessageid-6.1.0-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fb49d7b4aacd8be6ffeb5820c8cf41b2",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 16486,
            "upload_time": "2023-10-05T12:04:14",
            "upload_time_iso_8601": "2023-10-05T12:04:14.815543Z",
            "url": "https://files.pythonhosted.org/packages/d9/ee/d2a6ab53589c00da7d8bbf69eb8ca8c7090529c67edd9742a9a48cfe9f4e/zope.i18nmessageid-6.1.0-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7d08bbf791d46c674bfd47854fd40c8ce2a66d7c37371d0f2421ddecfda23446",
                "md5": "f2148b9135267e0edd646c5270ccd170",
                "sha256": "1886b002c41d58afdfcaee39cd8af304047d5f778f910f440dfc0897e85f5052"
            },
            "downloads": -1,
            "filename": "zope.i18nmessageid-6.1.0-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "f2148b9135267e0edd646c5270ccd170",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 16785,
            "upload_time": "2023-10-05T12:04:16",
            "upload_time_iso_8601": "2023-10-05T12:04:16.988473Z",
            "url": "https://files.pythonhosted.org/packages/7d/08/bbf791d46c674bfd47854fd40c8ce2a66d7c37371d0f2421ddecfda23446/zope.i18nmessageid-6.1.0-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fb72255a33aa7bd269114e7a1f675094ab8ee22f591ee7fc43f1e05d762e5e20",
                "md5": "4e124736333acab14cbcdac80fa051bd",
                "sha256": "a1a96827fa03c2cb2cb7ed45a231f0787055cdcc2c5688a544b3d801b918eefd"
            },
            "downloads": -1,
            "filename": "zope.i18nmessageid-6.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "4e124736333acab14cbcdac80fa051bd",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 28795,
            "upload_time": "2023-10-05T12:04:25",
            "upload_time_iso_8601": "2023-10-05T12:04:25.639471Z",
            "url": "https://files.pythonhosted.org/packages/fb/72/255a33aa7bd269114e7a1f675094ab8ee22f591ee7fc43f1e05d762e5e20/zope.i18nmessageid-6.1.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": "e3dc4c4177d06bee612029708c37c7153d60048d183051e47d0afff4aa22fd84",
                "md5": "cb8031a05686b4c863d07d880e5d6a38",
                "sha256": "227a979ca4bb09b81c5ad6b54d65f169bfea2a3cf0d950e08a221621ca134b13"
            },
            "downloads": -1,
            "filename": "zope.i18nmessageid-6.1.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": "cb8031a05686b4c863d07d880e5d6a38",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 29716,
            "upload_time": "2023-10-05T12:04:37",
            "upload_time_iso_8601": "2023-10-05T12:04:37.646082Z",
            "url": "https://files.pythonhosted.org/packages/e3/dc/4c4177d06bee612029708c37c7153d60048d183051e47d0afff4aa22fd84/zope.i18nmessageid-6.1.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": "1b558164c19e85c8111fa432111df4aaacdf8fb0c729f0af14e40569a72f8de6",
                "md5": "0a9f74fb9ade9b99424c442974c26350",
                "sha256": "8ab5e5af86e01440a941a5183878ad220db6cd4372f2a26a351cb4488b73018a"
            },
            "downloads": -1,
            "filename": "zope.i18nmessageid-6.1.0-cp37-cp37m-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0a9f74fb9ade9b99424c442974c26350",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 16507,
            "upload_time": "2023-10-05T12:03:33",
            "upload_time_iso_8601": "2023-10-05T12:03:33.087890Z",
            "url": "https://files.pythonhosted.org/packages/1b/55/8164c19e85c8111fa432111df4aaacdf8fb0c729f0af14e40569a72f8de6/zope.i18nmessageid-6.1.0-cp37-cp37m-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6f41475d90d6edf563ff8ee466d2bc0130cfa12aa5584fcbf5360c2844dff826",
                "md5": "b437a44451b5cdec7ce00c8589b40ade",
                "sha256": "8206e5a506f75e4ab8b5703437442c656a6866ee8d098561c084efd345ad371f"
            },
            "downloads": -1,
            "filename": "zope.i18nmessageid-6.1.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "b437a44451b5cdec7ce00c8589b40ade",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 26346,
            "upload_time": "2023-10-05T12:04:27",
            "upload_time_iso_8601": "2023-10-05T12:04:27.147255Z",
            "url": "https://files.pythonhosted.org/packages/6f/41/475d90d6edf563ff8ee466d2bc0130cfa12aa5584fcbf5360c2844dff826/zope.i18nmessageid-6.1.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "26116b660e91faca2d7bd783b17a9d808d0acb9b15e9839caf7ef91316d920c9",
                "md5": "c5d3dc675430293b2f161c8adf8c8a1f",
                "sha256": "8fa303c5e0816d6d0a8432a60908ba95ade37e04a79fdf58a63ffdda3dad4bf0"
            },
            "downloads": -1,
            "filename": "zope.i18nmessageid-6.1.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c5d3dc675430293b2f161c8adf8c8a1f",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 26826,
            "upload_time": "2023-10-05T12:04:39",
            "upload_time_iso_8601": "2023-10-05T12:04:39.337462Z",
            "url": "https://files.pythonhosted.org/packages/26/11/6b660e91faca2d7bd783b17a9d808d0acb9b15e9839caf7ef91316d920c9/zope.i18nmessageid-6.1.0-cp37-cp37m-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": "773b39c41914cd3df72d9d5c5fd788b1c10761a3a68652a8565d0bf5d0a6ff84",
                "md5": "3122477aee3aa1b5a2324a91ff47a871",
                "sha256": "ca6adbd8efa6f5b98fee6a83d2750bdbd550a4c6f60100f71ee8c13a7b91eca9"
            },
            "downloads": -1,
            "filename": "zope.i18nmessageid-6.1.0-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3122477aee3aa1b5a2324a91ff47a871",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 16479,
            "upload_time": "2023-10-05T12:03:35",
            "upload_time_iso_8601": "2023-10-05T12:03:35.517364Z",
            "url": "https://files.pythonhosted.org/packages/77/3b/39c41914cd3df72d9d5c5fd788b1c10761a3a68652a8565d0bf5d0a6ff84/zope.i18nmessageid-6.1.0-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4d7782ff36f55e782fb69eca5400de452a422e0da1510a0abf24ce287df820a1",
                "md5": "51a9b7bae4acbfd29b3052808c67eb26",
                "sha256": "79da7f4e55ed26c9eb522488579bc9f88b1e10435a9024f7a4db7c8fefcee447"
            },
            "downloads": -1,
            "filename": "zope.i18nmessageid-6.1.0-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "51a9b7bae4acbfd29b3052808c67eb26",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 16815,
            "upload_time": "2023-10-05T12:03:37",
            "upload_time_iso_8601": "2023-10-05T12:03:37.450357Z",
            "url": "https://files.pythonhosted.org/packages/4d/77/82ff36f55e782fb69eca5400de452a422e0da1510a0abf24ce287df820a1/zope.i18nmessageid-6.1.0-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c3433c606c45b243f3ed63b06d3c6245922f1f0ee869933528b4719edfd1ab2b",
                "md5": "0e59fb45f0e3e882c8e56a1cd5c5edf4",
                "sha256": "63bdeb13bbd11567bc1ff8dbd6847a11285f6b1daef9bc03fbfa6a8fd51021c8"
            },
            "downloads": -1,
            "filename": "zope.i18nmessageid-6.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "0e59fb45f0e3e882c8e56a1cd5c5edf4",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 27901,
            "upload_time": "2023-10-05T12:04:28",
            "upload_time_iso_8601": "2023-10-05T12:04:28.788055Z",
            "url": "https://files.pythonhosted.org/packages/c3/43/3c606c45b243f3ed63b06d3c6245922f1f0ee869933528b4719edfd1ab2b/zope.i18nmessageid-6.1.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": "59c1efab43204ecd32fa9e3cbdb40ea3e81fb6057e6aa9c5122c9733935f2641",
                "md5": "c10bee86a4072092d07a49079123d7c8",
                "sha256": "d81280b0899f77eb66b3b89ef47e218ab2498b4beacc2061a3e369549ede0cfc"
            },
            "downloads": -1,
            "filename": "zope.i18nmessageid-6.1.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": "c10bee86a4072092d07a49079123d7c8",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 28462,
            "upload_time": "2023-10-05T12:04:40",
            "upload_time_iso_8601": "2023-10-05T12:04:40.793714Z",
            "url": "https://files.pythonhosted.org/packages/59/c1/efab43204ecd32fa9e3cbdb40ea3e81fb6057e6aa9c5122c9733935f2641/zope.i18nmessageid-6.1.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": "b7f27e0c852350db878cb9b99b1af3f922db4e7c7bbadec322d2dcec0ac95542",
                "md5": "373188bbb3888413edd7df4cc4a616cd",
                "sha256": "201ee77db4bcf07139cb015e5e99b7428b1e06c4846a84caed0daa2120b7e0ed"
            },
            "downloads": -1,
            "filename": "zope.i18nmessageid-6.1.0-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "373188bbb3888413edd7df4cc4a616cd",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 16478,
            "upload_time": "2023-10-05T12:04:30",
            "upload_time_iso_8601": "2023-10-05T12:04:30.758395Z",
            "url": "https://files.pythonhosted.org/packages/b7/f2/7e0c852350db878cb9b99b1af3f922db4e7c7bbadec322d2dcec0ac95542/zope.i18nmessageid-6.1.0-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3a821e222e50a50258839639ccd7f38237a114e289a56f9b64c4ac2460f30cf8",
                "md5": "248941f11331716f6b45dd4b75cba716",
                "sha256": "3aa0818698ffa933c9a67d0440abe1329d2be0638c46131b5cc9273b5990b9d5"
            },
            "downloads": -1,
            "filename": "zope.i18nmessageid-6.1.0-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "248941f11331716f6b45dd4b75cba716",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 16813,
            "upload_time": "2023-10-05T12:04:32",
            "upload_time_iso_8601": "2023-10-05T12:04:32.856057Z",
            "url": "https://files.pythonhosted.org/packages/3a/82/1e222e50a50258839639ccd7f38237a114e289a56f9b64c4ac2460f30cf8/zope.i18nmessageid-6.1.0-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ca4501c0c9506970f4ca426a1404cd0abb364d51dc3bace51dd490ca8453aa77",
                "md5": "1fd5d8116ca87c57c59727bd66e911e9",
                "sha256": "a10bc489b5fed409d31a4a2bb995007b48d6b8a1e562e0919a0e08d0919edc1f"
            },
            "downloads": -1,
            "filename": "zope.i18nmessageid-6.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "1fd5d8116ca87c57c59727bd66e911e9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 27045,
            "upload_time": "2023-10-05T12:04:30",
            "upload_time_iso_8601": "2023-10-05T12:04:30.453399Z",
            "url": "https://files.pythonhosted.org/packages/ca/45/01c0c9506970f4ca426a1404cd0abb364d51dc3bace51dd490ca8453aa77/zope.i18nmessageid-6.1.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": "59f61e035bdb7926ce29e0ba9421b31cf1141d5174f1c9336b76ccde5d255c2b",
                "md5": "fad0e8afdc5bd79b5de73a615ac82ed6",
                "sha256": "5c3aa94a9c7994330a068e060c8278cef9858a24bd19c265a7274a165dff3059"
            },
            "downloads": -1,
            "filename": "zope.i18nmessageid-6.1.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": "fad0e8afdc5bd79b5de73a615ac82ed6",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 27625,
            "upload_time": "2023-10-05T12:04:42",
            "upload_time_iso_8601": "2023-10-05T12:04:42.668353Z",
            "url": "https://files.pythonhosted.org/packages/59/f6/1e035bdb7926ce29e0ba9421b31cf1141d5174f1c9336b76ccde5d255c2b/zope.i18nmessageid-6.1.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": "c05573436beb7a4fdb139cf0ac259a2a67519460f91b1756bac05ba9af038568",
                "md5": "01ac82116aecfabd86e5fec23ed62b99",
                "sha256": "45ac26fdc86fabdf7b78f1c1bccfc1d4372d1a54838bbaedda9dba7444ad8941"
            },
            "downloads": -1,
            "filename": "zope.i18nmessageid-6.1.0.tar.gz",
            "has_sig": false,
            "md5_digest": "01ac82116aecfabd86e5fec23ed62b99",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 31187,
            "upload_time": "2023-10-05T12:02:56",
            "upload_time_iso_8601": "2023-10-05T12:02:56.683404Z",
            "url": "https://files.pythonhosted.org/packages/c0/55/73436beb7a4fdb139cf0ac259a2a67519460f91b1756bac05ba9af038568/zope.i18nmessageid-6.1.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-10-05 12:02:56",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "zopefoundation",
    "github_project": "zope.i18nmessageid",
    "travis_ci": false,
    "coveralls": true,
    "github_actions": true,
    "appveyor": true,
    "tox": true,
    "lcname": "zope.i18nmessageid"
}
        
Elapsed time: 0.12105s