Skip to main content

zope.i18nmessageid

Latest Version https://github.com/zopefoundation/zope.i18nmessageid/actions/workflows/tests.yml/badge.svg 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.

Change log

8.3 (2026-08-20)

  • Add support for Python 3.15.

  • Add support for automatically building and publishing Windows/ARM64 wheels.

  • Add support for automatically building and publishing source distributions.

8.2 (2025-11-18)

  • Move all supported package metadata into pyproject.toml.

8.1 (2025-10-29)

  • Drop support for Python 3.9.

  • Add support for Python 3.14.

  • Remove run-time dependency on setuptools.

8.0 (2025-09-12)

  • Replace pkg_resources namespace with PEP 420 native namespace.

  • Add preliminary support for Python 3.14 as of 3.14a4.

  • Drop support for Python 3.8.

  • Fix imports in setup.py. (#61)

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.

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.

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.

  • 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.

  • 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.

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)

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.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

zope_i18nmessageid-8.3.tar.gz (26.9 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

zope_i18nmessageid-8.3-cp314-cp314-win_arm64.whl (20.0 kB view details)

Uploaded CPython 3.14Windows ARM64

zope_i18nmessageid-8.3-cp314-cp314-win_amd64.whl (20.2 kB view details)

Uploaded CPython 3.14Windows x86-64

zope_i18nmessageid-8.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (33.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

zope_i18nmessageid-8.3-cp314-cp314-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl (32.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

zope_i18nmessageid-8.3-cp314-cp314-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (31.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

zope_i18nmessageid-8.3-cp314-cp314-macosx_11_0_arm64.whl (17.4 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

zope_i18nmessageid-8.3-cp314-cp314-macosx_10_9_x86_64.whl (16.8 kB view details)

Uploaded CPython 3.14macOS 10.9+ x86-64

zope_i18nmessageid-8.3-cp313-cp313-win_arm64.whl (19.7 kB view details)

Uploaded CPython 3.13Windows ARM64

zope_i18nmessageid-8.3-cp313-cp313-win_amd64.whl (20.0 kB view details)

Uploaded CPython 3.13Windows x86-64

zope_i18nmessageid-8.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (33.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

zope_i18nmessageid-8.3-cp313-cp313-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl (32.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

zope_i18nmessageid-8.3-cp313-cp313-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (31.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

zope_i18nmessageid-8.3-cp313-cp313-macosx_11_0_arm64.whl (17.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

zope_i18nmessageid-8.3-cp313-cp313-macosx_10_9_x86_64.whl (16.8 kB view details)

Uploaded CPython 3.13macOS 10.9+ x86-64

zope_i18nmessageid-8.3-cp312-cp312-win_arm64.whl (19.7 kB view details)

Uploaded CPython 3.12Windows ARM64

zope_i18nmessageid-8.3-cp312-cp312-win_amd64.whl (20.0 kB view details)

Uploaded CPython 3.12Windows x86-64

zope_i18nmessageid-8.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (33.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

zope_i18nmessageid-8.3-cp312-cp312-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl (32.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

zope_i18nmessageid-8.3-cp312-cp312-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (31.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

zope_i18nmessageid-8.3-cp312-cp312-macosx_11_0_arm64.whl (17.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

zope_i18nmessageid-8.3-cp312-cp312-macosx_10_9_x86_64.whl (16.8 kB view details)

Uploaded CPython 3.12macOS 10.9+ x86-64

zope_i18nmessageid-8.3-cp311-cp311-win_arm64.whl (19.7 kB view details)

Uploaded CPython 3.11Windows ARM64

zope_i18nmessageid-8.3-cp311-cp311-win_amd64.whl (19.9 kB view details)

Uploaded CPython 3.11Windows x86-64

zope_i18nmessageid-8.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (31.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

zope_i18nmessageid-8.3-cp311-cp311-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl (31.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

zope_i18nmessageid-8.3-cp311-cp311-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (30.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

zope_i18nmessageid-8.3-cp311-cp311-macosx_11_0_arm64.whl (17.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

zope_i18nmessageid-8.3-cp311-cp311-macosx_10_9_x86_64.whl (16.8 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

zope_i18nmessageid-8.3-cp310-cp310-win_amd64.whl (19.9 kB view details)

Uploaded CPython 3.10Windows x86-64

zope_i18nmessageid-8.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (31.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

zope_i18nmessageid-8.3-cp310-cp310-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl (30.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

zope_i18nmessageid-8.3-cp310-cp310-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (30.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

zope_i18nmessageid-8.3-cp310-cp310-macosx_11_0_arm64.whl (17.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

zope_i18nmessageid-8.3-cp310-cp310-macosx_10_9_x86_64.whl (16.8 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

Details for the file zope_i18nmessageid-8.3.tar.gz.

File metadata

  • Download URL: zope_i18nmessageid-8.3.tar.gz
  • Upload date:
  • Size: 26.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for zope_i18nmessageid-8.3.tar.gz
Algorithm Hash digest
SHA256 7f7243a114fdb06a2a97dcf6b16c7b1f99168827a5e7ee09ebcd210c76745dee
MD5 8b2f9d3bb25fd0818e4e8bfa639d0ded
BLAKE2b-256 035605e43d7a86e8b10ef79c05ef3eb6b0e593219b3977ee85a72d4f5dcb3469

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_i18nmessageid-8.3.tar.gz:

Publisher: tests.yml on zopefoundation/zope.i18nmessageid

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zope_i18nmessageid-8.3-cp314-cp314-win_arm64.whl.

File metadata

File hashes

Hashes for zope_i18nmessageid-8.3-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 c721a36c19502b8c4c66b8c1b5b311bae4f061da355df72f91bb5537e7d6f0b1
MD5 b8fbca665226d8e1788e27e31e80f416
BLAKE2b-256 a4991b5108f0b6874be7e9f8cb85531782a34fe3cb16ee071317684839ddd0c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_i18nmessageid-8.3-cp314-cp314-win_arm64.whl:

Publisher: tests.yml on zopefoundation/zope.i18nmessageid

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zope_i18nmessageid-8.3-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for zope_i18nmessageid-8.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 34621c06f90839fc3ac57230a297a710a6285505cb0991158c90f3e9302cd8da
MD5 2366a92e4aacd88cdbd60c48038c9a9a
BLAKE2b-256 71793614916348a34fc68c2c3dab6e226083a471c0f0427fe360c4d3a1627b46

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_i18nmessageid-8.3-cp314-cp314-win_amd64.whl:

Publisher: tests.yml on zopefoundation/zope.i18nmessageid

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zope_i18nmessageid-8.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for zope_i18nmessageid-8.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 39ec5d0b05b320a3bd59d06eb0901c2c45f5330dd1186b5a24bc15d88f5f63b6
MD5 e5d39ce32355035fe7a4b2feea5a46dc
BLAKE2b-256 c21cec6254a113d42c5922269f61c60f20f071d60abe32a65805bab80ab3191b

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_i18nmessageid-8.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl:

Publisher: tests.yml on zopefoundation/zope.i18nmessageid

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zope_i18nmessageid-8.3-cp314-cp314-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for zope_i18nmessageid-8.3-cp314-cp314-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 5953f448321938a93f2722344a90b2de6ef2b1464fe866977cfc89c0e3bfc555
MD5 d44e76bb2a2b5d2c6940dc947baa35d6
BLAKE2b-256 82754dd46505da16b6e57ac33ac04d987aa79390f15ca6a747a0eade8c9e70d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_i18nmessageid-8.3-cp314-cp314-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl:

Publisher: tests.yml on zopefoundation/zope.i18nmessageid

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zope_i18nmessageid-8.3-cp314-cp314-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for zope_i18nmessageid-8.3-cp314-cp314-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 50e821c53c07c980038fb285b43ac78df4c1a5cb512e3b3b5554a5bca03d54d5
MD5 d32e3bdecee6851d22b57851808ed1a6
BLAKE2b-256 2b3b3e63192992a9212a10512022b4f6df737b4291b030c030dffd52944065b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_i18nmessageid-8.3-cp314-cp314-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl:

Publisher: tests.yml on zopefoundation/zope.i18nmessageid

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zope_i18nmessageid-8.3-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zope_i18nmessageid-8.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 28855483c9169720ea034e104ec06eed3d87faa63978cf8ef6b7d62404b31e32
MD5 265e1dfc7f2fbce6c97efc91d7c8b421
BLAKE2b-256 2a93c35d048455233132ca58b76739febe22df9b346bf3e87111018584198b6c

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_i18nmessageid-8.3-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: tests.yml on zopefoundation/zope.i18nmessageid

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zope_i18nmessageid-8.3-cp314-cp314-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for zope_i18nmessageid-8.3-cp314-cp314-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a56443df4aa1c558bc291386f85989e923bf056a18b6a1926e7245aec96c9807
MD5 db3544a6a64acb0a9f66de373729229f
BLAKE2b-256 19bb13c8f05a4542cdc4f13d34c2e3b0e22fe5a05c3b22246e43f5f16b551439

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_i18nmessageid-8.3-cp314-cp314-macosx_10_9_x86_64.whl:

Publisher: tests.yml on zopefoundation/zope.i18nmessageid

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zope_i18nmessageid-8.3-cp313-cp313-win_arm64.whl.

File metadata

File hashes

Hashes for zope_i18nmessageid-8.3-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 1d794b8c41855a1a56fdf859c21f37e650dfa813baf9ea0fe0fe92b4300c1fae
MD5 e32936fe50b30d0e756fbfb598c3f411
BLAKE2b-256 bee57792ba5f55bd269bfe8670af50cd7d055b883fcc49c6d34ca3f0966c00a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_i18nmessageid-8.3-cp313-cp313-win_arm64.whl:

Publisher: tests.yml on zopefoundation/zope.i18nmessageid

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zope_i18nmessageid-8.3-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for zope_i18nmessageid-8.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6ecebf30657f7d0a6e53a94a12f544d626268112e25343739896925e880bc7c3
MD5 554646120e254c345c92df1c974a7552
BLAKE2b-256 9ad896370fc60d4e11a7af641924214f0ee5af6a37fa1ea8f07f87eeefca8f7f

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_i18nmessageid-8.3-cp313-cp313-win_amd64.whl:

Publisher: tests.yml on zopefoundation/zope.i18nmessageid

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zope_i18nmessageid-8.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for zope_i18nmessageid-8.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 76b6ec8646954adbace8b035f97dc0899d1603b3d195c7f6b80b9bb58e699cec
MD5 055c39a83f6917123681f903589b5af7
BLAKE2b-256 5a0e58fc9366abcb89780794892212b1e6ac7ede5b9c788a414dbde743966ed9

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_i18nmessageid-8.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl:

Publisher: tests.yml on zopefoundation/zope.i18nmessageid

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zope_i18nmessageid-8.3-cp313-cp313-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for zope_i18nmessageid-8.3-cp313-cp313-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 bdc0652efd7db43d271970235093b4e22cb763d1392810377774ed12025ced00
MD5 a1e68997f8615ee84a155a22314a6e57
BLAKE2b-256 71b048380ba262b0b2440ee841ab764d705199e7a938c268a5b8492ebe013b94

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_i18nmessageid-8.3-cp313-cp313-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl:

Publisher: tests.yml on zopefoundation/zope.i18nmessageid

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zope_i18nmessageid-8.3-cp313-cp313-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for zope_i18nmessageid-8.3-cp313-cp313-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 2a87ac312fc73b3540181b0ee97ec3ef7ae9a223bb8417932827f6f0ca434ca5
MD5 eae502f3c5ea88876e7f44d338c2a9cf
BLAKE2b-256 dd2a7b8b45f645fa3fe71ed2523549336d6199740887262a6bdd668055d97869

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_i18nmessageid-8.3-cp313-cp313-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl:

Publisher: tests.yml on zopefoundation/zope.i18nmessageid

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zope_i18nmessageid-8.3-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zope_i18nmessageid-8.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8eeabaf5bbaa2c4bda325fde64c474a559914a5731d80efca3720de88285702f
MD5 10b61af9f1dddd07386f06cf16906ca4
BLAKE2b-256 166c3ba41284bf9efec0239fd79b0d66785c9dde7b89ea8b1f385dc1aa9eb81d

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_i18nmessageid-8.3-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: tests.yml on zopefoundation/zope.i18nmessageid

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zope_i18nmessageid-8.3-cp313-cp313-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for zope_i18nmessageid-8.3-cp313-cp313-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b272823447fd3b84535e984ff3ca05433eeb1f53f99abfd9117e94783ef7b9a3
MD5 513396bea2273f774c3af8a7c003653e
BLAKE2b-256 0a51a5f1eeff3840f90958fe3f88f9a15322f7b3fb6a3d8f3f73c80ac9105ac9

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_i18nmessageid-8.3-cp313-cp313-macosx_10_9_x86_64.whl:

Publisher: tests.yml on zopefoundation/zope.i18nmessageid

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zope_i18nmessageid-8.3-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for zope_i18nmessageid-8.3-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 29dd16b8c660a3249c3cb3bdbd01beb419f852e595780bc4de6c5512e32ee487
MD5 dcdda07baa48b38cd4124f8c1e45cf39
BLAKE2b-256 3d269cfb8f89e0f6c1fc1f9608e35106de4ae32a8dfa515d2385ccfa414e84f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_i18nmessageid-8.3-cp312-cp312-win_arm64.whl:

Publisher: tests.yml on zopefoundation/zope.i18nmessageid

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zope_i18nmessageid-8.3-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for zope_i18nmessageid-8.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b4aaa45f4b9085ada54aa632541fc56385d8bcbb91340046572c1ef69b6677a8
MD5 a0761154cb8cca22abf06ffbc3bff2dc
BLAKE2b-256 1064269d19d3ea93c3ef0d88935d6e1c881b6e16fc8dd3d27e56a1ddf4d08344

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_i18nmessageid-8.3-cp312-cp312-win_amd64.whl:

Publisher: tests.yml on zopefoundation/zope.i18nmessageid

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zope_i18nmessageid-8.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for zope_i18nmessageid-8.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 891ad8dbb37589bd149483f12beacd550709a304366c6a23811f2b6a97d9bb70
MD5 4e1d2438e792e80485ef2a49131a8992
BLAKE2b-256 0c3cd0ac23d5fa1eae4f48d655ad4e7293243849f544134332453b0ba3c924fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_i18nmessageid-8.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl:

Publisher: tests.yml on zopefoundation/zope.i18nmessageid

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zope_i18nmessageid-8.3-cp312-cp312-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for zope_i18nmessageid-8.3-cp312-cp312-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 b9c893727164a4be8eafe048ca9a8a5b3a89ed5cbede19686f5adcf7f0dc8aa6
MD5 ed6b602d924c58de3270694f7a41855a
BLAKE2b-256 c0abfa616ad31f7199e42322adc35d4e35b33c1ddfe30938b076e3f2720d3959

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_i18nmessageid-8.3-cp312-cp312-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl:

Publisher: tests.yml on zopefoundation/zope.i18nmessageid

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zope_i18nmessageid-8.3-cp312-cp312-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for zope_i18nmessageid-8.3-cp312-cp312-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 9eb93a8724fa8071feb424b4f022e34ac4abce7acdca60d93186a271117ecec8
MD5 9cf99f17d4b923a7b05432423b5acc86
BLAKE2b-256 2a3ecc40133a2fb41e953f55509b446b0df58f1fcf8e7fb8ab47d035a164b47f

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_i18nmessageid-8.3-cp312-cp312-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl:

Publisher: tests.yml on zopefoundation/zope.i18nmessageid

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zope_i18nmessageid-8.3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zope_i18nmessageid-8.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 55d3cf4dd57770c09e130e03de430e2a122feebef65cf54859a5badbeb75b917
MD5 1bdab7c9c34dd3c86e2aa13e9825c632
BLAKE2b-256 68bf9b64354f7824bdc4f8b56887ff668ded1fba5c01f3ddc17e6b41aff95d3f

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_i18nmessageid-8.3-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: tests.yml on zopefoundation/zope.i18nmessageid

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zope_i18nmessageid-8.3-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for zope_i18nmessageid-8.3-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d9050e3dee5dede7080be4cf9baed46745cc0eb148ef3fc956e9646dab32d79b
MD5 98ee66d8e19d5621e17602dddb903314
BLAKE2b-256 78b082938fa450131b0e6c18c4acff89264f39c1b2f4055d2dd0c19fbef5744d

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_i18nmessageid-8.3-cp312-cp312-macosx_10_9_x86_64.whl:

Publisher: tests.yml on zopefoundation/zope.i18nmessageid

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zope_i18nmessageid-8.3-cp311-cp311-win_arm64.whl.

File metadata

File hashes

Hashes for zope_i18nmessageid-8.3-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 df83d3fa5709982cdc7b6a40f2d3fc1e91c6188e751b3dd33c1673e567bc7598
MD5 24ae19cbf75c30b67921e545660912dc
BLAKE2b-256 a8daa52cbef2890f09694fe34789de54823902a2fd30eef0ac79c43bf92aa7cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_i18nmessageid-8.3-cp311-cp311-win_arm64.whl:

Publisher: tests.yml on zopefoundation/zope.i18nmessageid

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zope_i18nmessageid-8.3-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for zope_i18nmessageid-8.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7d68af563be52acf6c027dbe8c55b21c5e262fcde420f5285d774013d3f94c23
MD5 0bf424bcd38418cdc25304ca90a595e8
BLAKE2b-256 fe3ef986be9a13475135a295cfe32fee00561897ff48a6e6eb9646ed130d1b0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_i18nmessageid-8.3-cp311-cp311-win_amd64.whl:

Publisher: tests.yml on zopefoundation/zope.i18nmessageid

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zope_i18nmessageid-8.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for zope_i18nmessageid-8.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 984568898ffdc88663530b9acf946ec01987af0a3bf1eed3e3e6d49941d78600
MD5 8dc2ef6a50c2b34162ebfe995ee4c8c6
BLAKE2b-256 8817801ba5738119d27c7d9c56d0d188328547486dfddd4833702b74fe4d196a

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_i18nmessageid-8.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl:

Publisher: tests.yml on zopefoundation/zope.i18nmessageid

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zope_i18nmessageid-8.3-cp311-cp311-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for zope_i18nmessageid-8.3-cp311-cp311-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 4b9f3bae7f707db397dc70164655a9efd8298876a7dd8c2eb07808b2dde14a19
MD5 d35d2694879da9d0bb931d2caa12ccd4
BLAKE2b-256 ce6fdad1ab50d354270f310c9cda729dd3de4e349923ce6dc6461cd66ebc60c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_i18nmessageid-8.3-cp311-cp311-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl:

Publisher: tests.yml on zopefoundation/zope.i18nmessageid

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zope_i18nmessageid-8.3-cp311-cp311-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for zope_i18nmessageid-8.3-cp311-cp311-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 c2ec6ec0806041b24845622a18771933f1e191003c9069944a2ca1b09bf64bb6
MD5 fdfacce4d4bdb700c5ea48678a073bcb
BLAKE2b-256 ab2a29657b90fa89f1c50a82aa72ecee17a5983b7b16aaba3db95d86a9d686d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_i18nmessageid-8.3-cp311-cp311-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl:

Publisher: tests.yml on zopefoundation/zope.i18nmessageid

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zope_i18nmessageid-8.3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zope_i18nmessageid-8.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f439b5b49c2e2c198654b105c3601657fd2803ae88e74fdf09a3cf9ebb0a2add
MD5 d6f0e91cf4cab0d6ab1234e61dc4b318
BLAKE2b-256 2c2e566b29656bde11cabdf63e742802a6ea7001ee3ce0894c92d64a125eff7e

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_i18nmessageid-8.3-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: tests.yml on zopefoundation/zope.i18nmessageid

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zope_i18nmessageid-8.3-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for zope_i18nmessageid-8.3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f4acac14220e179861c9d1812aed97714f17b4c87799bf25a140f7daf8d7d957
MD5 d2ef11030dd285eded8c50a3c1ba30a1
BLAKE2b-256 1ac300424fba5b19fb2df70eef57a0075dd11c19e46a5cd412368ca01f62d33a

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_i18nmessageid-8.3-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: tests.yml on zopefoundation/zope.i18nmessageid

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zope_i18nmessageid-8.3-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for zope_i18nmessageid-8.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f20f21fe7628d88c8659600330f6cad6fccf82ffd0a12a62e3d93f978b890732
MD5 48cc75391df960843ca69a49b9a9291b
BLAKE2b-256 e629cccd50dd15ea3849fe0a830de821ed16a196b73c45a84feb12a0ebe8ba6d

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_i18nmessageid-8.3-cp310-cp310-win_amd64.whl:

Publisher: tests.yml on zopefoundation/zope.i18nmessageid

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zope_i18nmessageid-8.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for zope_i18nmessageid-8.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 e5ad95c4ab0c5bdd659b3fc3e69bcff04b36a65fe422e312a2ef04e11bf1f83f
MD5 7afc8c981888c38aedeead8598a9ec5a
BLAKE2b-256 30a4cf6ee2a2dc3f6f1a1fcc50a759cbb22406570a6f228077019b51234c626a

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_i18nmessageid-8.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl:

Publisher: tests.yml on zopefoundation/zope.i18nmessageid

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zope_i18nmessageid-8.3-cp310-cp310-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for zope_i18nmessageid-8.3-cp310-cp310-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 8968bc0d0f3d034cbe26bb20e94898a1c32f64f0da354193ae659406110c0b16
MD5 c28cf0e6f3dcea6fd8396a1fef84176e
BLAKE2b-256 6f7a31473fdb75064bd17faf3464c9d3118a605c2bafacb1df91aeabb4df7194

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_i18nmessageid-8.3-cp310-cp310-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl:

Publisher: tests.yml on zopefoundation/zope.i18nmessageid

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zope_i18nmessageid-8.3-cp310-cp310-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for zope_i18nmessageid-8.3-cp310-cp310-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 1ab36a8c29d2dab6c7c5c0afb3637eecdc5cacece15d24cc26314cf348b83ebd
MD5 ce66020291b147cf09e5f80252763c18
BLAKE2b-256 aeaad63cdf2a13f02f2bc80ae830826002ed1eb8483c48a3dcfe7aed4e92f080

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_i18nmessageid-8.3-cp310-cp310-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl:

Publisher: tests.yml on zopefoundation/zope.i18nmessageid

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zope_i18nmessageid-8.3-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zope_i18nmessageid-8.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 53ce937e35bef769e0583d6066b98f1d08d8b61cc5795262b08cb4b3a5938a3e
MD5 1ab8f759df4451fffbc279837eb5d80e
BLAKE2b-256 e4d65a4aae0f361f5a7f535e812dadfca6140ad766e1f61f14d35fcd9dc01000

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_i18nmessageid-8.3-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: tests.yml on zopefoundation/zope.i18nmessageid

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zope_i18nmessageid-8.3-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for zope_i18nmessageid-8.3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1be2132b429a967cbe15568b7dd4d5ca76a1cff2b191ff7f2644818eff2f31e1
MD5 1a7745d8b71d03305eaa0865dbf21055
BLAKE2b-256 1b81d17754f9d41cde18faf828531b433dbf99f47b9452a76b99f63937843751

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_i18nmessageid-8.3-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: tests.yml on zopefoundation/zope.i18nmessageid

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

8.3 This release

35 files

8.2

31 files

8.1

31 files

8.0

31 files

7.0

37 files

6.1.0

36 files

6.0.1

30 files

6.0.0

30 files

5.1.1

36 files

5.1.0

39 files

5.0.1

40 files

5.0.0

39 files

4.3.1

11 files

4.3

11 files

4.2

11 files

4.1.0

14 files

4.0.3

17 files

4.0.2

17 files

4.0.1

17 files

4.0.0

11 files

3.6.1

11 files

3.6.0

11 files

3.5.3

11 files

3.5.2

7 files

3.5.1

7 files

3.5.0

7 files

3.4.3

7 files

3.4.2

7 files

3.4.0

7 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page