zope.i18nmessageid
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)
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.
Release files for zope.i18nmessageid 8.3
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| zope_i18nmessageid-8.3.tar.gz | 26.9 kB | Details |
Built distributions (wheels)
Total release size: 856.6 kB
Release files / zope_i18nmessageid-8.3.tar.gz
| Download URL | zope_i18nmessageid-8.3.tar.gz |
|---|---|
| Size | 26.9 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
7f7243a114fdb06a2a97dcf6b16c7b1f99168827a5e7ee09ebcd210c76745dee
|
|
BLAKE2b-256 checksum How to use checksums |
035605e43d7a86e8b10ef79c05ef3eb6b0e593219b3977ee85a72d4f5dcb3469
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 20, 2026.
Transparency logRelease files / zope_i18nmessageid-8.3-cp314-cp314-win_arm64.whl
| Download URL | zope_i18nmessageid-8.3-cp314-cp314-win_arm64.whl |
|---|---|
| Size | 20.0 kB |
| Tags | CPython 3.14 Windows ARM64 |
|
SHA-256 checksum How to use checksums |
c721a36c19502b8c4c66b8c1b5b311bae4f061da355df72f91bb5537e7d6f0b1
|
|
BLAKE2b-256 checksum How to use checksums |
a4991b5108f0b6874be7e9f8cb85531782a34fe3cb16ee071317684839ddd0c2
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 20, 2026.
Transparency logRelease files / zope_i18nmessageid-8.3-cp314-cp314-win_amd64.whl
| Download URL | zope_i18nmessageid-8.3-cp314-cp314-win_amd64.whl |
|---|---|
| Size | 20.2 kB |
| Tags | CPython 3.14 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
34621c06f90839fc3ac57230a297a710a6285505cb0991158c90f3e9302cd8da
|
|
BLAKE2b-256 checksum How to use checksums |
71793614916348a34fc68c2c3dab6e226083a471c0f0427fe360c4d3a1627b46
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 20, 2026.
Transparency logRelease files / zope_i18nmessageid-8.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
| Download URL | zope_i18nmessageid-8.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl |
|---|---|
| Size | 33.2 kB |
| Tags | CPython 3.14 Linux glibc 2.17+ ARM64 |
|
SHA-256 checksum How to use checksums |
39ec5d0b05b320a3bd59d06eb0901c2c45f5330dd1186b5a24bc15d88f5f63b6
|
|
BLAKE2b-256 checksum How to use checksums |
c21cec6254a113d42c5922269f61c60f20f071d60abe32a65805bab80ab3191b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 20, 2026.
Transparency logRelease files / zope_i18nmessageid-8.3-cp314-cp314-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
| Download URL | zope_i18nmessageid-8.3-cp314-cp314-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl |
|---|---|
| Size | 32.8 kB |
| Tags | CPython 3.14 Linux glibc 2.17+ x86-64 Linux glibc 2.5+ x86-64 |
|
SHA-256 checksum How to use checksums |
5953f448321938a93f2722344a90b2de6ef2b1464fe866977cfc89c0e3bfc555
|
|
BLAKE2b-256 checksum How to use checksums |
82754dd46505da16b6e57ac33ac04d987aa79390f15ca6a747a0eade8c9e70d9
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 20, 2026.
Transparency logRelease files / zope_i18nmessageid-8.3-cp314-cp314-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
| Download URL | zope_i18nmessageid-8.3-cp314-cp314-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl |
|---|---|
| Size | 31.7 kB |
| Tags | CPython 3.14 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32 |
|
SHA-256 checksum How to use checksums |
50e821c53c07c980038fb285b43ac78df4c1a5cb512e3b3b5554a5bca03d54d5
|
|
BLAKE2b-256 checksum How to use checksums |
2b3b3e63192992a9212a10512022b4f6df737b4291b030c030dffd52944065b5
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 20, 2026.
Transparency logRelease files / zope_i18nmessageid-8.3-cp314-cp314-macosx_11_0_arm64.whl
| Download URL | zope_i18nmessageid-8.3-cp314-cp314-macosx_11_0_arm64.whl |
|---|---|
| Size | 17.4 kB |
| Tags | CPython 3.14 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
28855483c9169720ea034e104ec06eed3d87faa63978cf8ef6b7d62404b31e32
|
|
BLAKE2b-256 checksum How to use checksums |
2a93c35d048455233132ca58b76739febe22df9b346bf3e87111018584198b6c
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 20, 2026.
Transparency logRelease files / zope_i18nmessageid-8.3-cp314-cp314-macosx_10_9_x86_64.whl
| Download URL | zope_i18nmessageid-8.3-cp314-cp314-macosx_10_9_x86_64.whl |
|---|---|
| Size | 16.8 kB |
| Tags | CPython 3.14 macOS 10.9+ x86-64 |
|
SHA-256 checksum How to use checksums |
a56443df4aa1c558bc291386f85989e923bf056a18b6a1926e7245aec96c9807
|
|
BLAKE2b-256 checksum How to use checksums |
19bb13c8f05a4542cdc4f13d34c2e3b0e22fe5a05c3b22246e43f5f16b551439
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 20, 2026.
Transparency logRelease files / zope_i18nmessageid-8.3-cp313-cp313-win_arm64.whl
| Download URL | zope_i18nmessageid-8.3-cp313-cp313-win_arm64.whl |
|---|---|
| Size | 19.7 kB |
| Tags | CPython 3.13 Windows ARM64 |
|
SHA-256 checksum How to use checksums |
1d794b8c41855a1a56fdf859c21f37e650dfa813baf9ea0fe0fe92b4300c1fae
|
|
BLAKE2b-256 checksum How to use checksums |
bee57792ba5f55bd269bfe8670af50cd7d055b883fcc49c6d34ca3f0966c00a1
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 20, 2026.
Transparency logRelease files / zope_i18nmessageid-8.3-cp313-cp313-win_amd64.whl
| Download URL | zope_i18nmessageid-8.3-cp313-cp313-win_amd64.whl |
|---|---|
| Size | 20.0 kB |
| Tags | CPython 3.13 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
6ecebf30657f7d0a6e53a94a12f544d626268112e25343739896925e880bc7c3
|
|
BLAKE2b-256 checksum How to use checksums |
9ad896370fc60d4e11a7af641924214f0ee5af6a37fa1ea8f07f87eeefca8f7f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 20, 2026.
Transparency logRelease files / zope_i18nmessageid-8.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
| Download URL | zope_i18nmessageid-8.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl |
|---|---|
| Size | 33.3 kB |
| Tags | CPython 3.13 Linux glibc 2.17+ ARM64 |
|
SHA-256 checksum How to use checksums |
76b6ec8646954adbace8b035f97dc0899d1603b3d195c7f6b80b9bb58e699cec
|
|
BLAKE2b-256 checksum How to use checksums |
5a0e58fc9366abcb89780794892212b1e6ac7ede5b9c788a414dbde743966ed9
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 20, 2026.
Transparency logRelease files / zope_i18nmessageid-8.3-cp313-cp313-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
| Download URL | zope_i18nmessageid-8.3-cp313-cp313-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl |
|---|---|
| Size | 32.9 kB |
| Tags | CPython 3.13 Linux glibc 2.17+ x86-64 Linux glibc 2.5+ x86-64 |
|
SHA-256 checksum How to use checksums |
bdc0652efd7db43d271970235093b4e22cb763d1392810377774ed12025ced00
|
|
BLAKE2b-256 checksum How to use checksums |
71b048380ba262b0b2440ee841ab764d705199e7a938c268a5b8492ebe013b94
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 20, 2026.
Transparency logRelease files / zope_i18nmessageid-8.3-cp313-cp313-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
| Download URL | zope_i18nmessageid-8.3-cp313-cp313-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl |
|---|---|
| Size | 31.8 kB |
| Tags | CPython 3.13 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32 |
|
SHA-256 checksum How to use checksums |
2a87ac312fc73b3540181b0ee97ec3ef7ae9a223bb8417932827f6f0ca434ca5
|
|
BLAKE2b-256 checksum How to use checksums |
dd2a7b8b45f645fa3fe71ed2523549336d6199740887262a6bdd668055d97869
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 20, 2026.
Transparency logRelease files / zope_i18nmessageid-8.3-cp313-cp313-macosx_11_0_arm64.whl
| Download URL | zope_i18nmessageid-8.3-cp313-cp313-macosx_11_0_arm64.whl |
|---|---|
| Size | 17.4 kB |
| Tags | CPython 3.13 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
8eeabaf5bbaa2c4bda325fde64c474a559914a5731d80efca3720de88285702f
|
|
BLAKE2b-256 checksum How to use checksums |
166c3ba41284bf9efec0239fd79b0d66785c9dde7b89ea8b1f385dc1aa9eb81d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 20, 2026.
Transparency logRelease files / zope_i18nmessageid-8.3-cp313-cp313-macosx_10_9_x86_64.whl
| Download URL | zope_i18nmessageid-8.3-cp313-cp313-macosx_10_9_x86_64.whl |
|---|---|
| Size | 16.8 kB |
| Tags | CPython 3.13 macOS 10.9+ x86-64 |
|
SHA-256 checksum How to use checksums |
b272823447fd3b84535e984ff3ca05433eeb1f53f99abfd9117e94783ef7b9a3
|
|
BLAKE2b-256 checksum How to use checksums |
0a51a5f1eeff3840f90958fe3f88f9a15322f7b3fb6a3d8f3f73c80ac9105ac9
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 20, 2026.
Transparency logRelease files / zope_i18nmessageid-8.3-cp312-cp312-win_arm64.whl
| Download URL | zope_i18nmessageid-8.3-cp312-cp312-win_arm64.whl |
|---|---|
| Size | 19.7 kB |
| Tags | CPython 3.12 Windows ARM64 |
|
SHA-256 checksum How to use checksums |
29dd16b8c660a3249c3cb3bdbd01beb419f852e595780bc4de6c5512e32ee487
|
|
BLAKE2b-256 checksum How to use checksums |
3d269cfb8f89e0f6c1fc1f9608e35106de4ae32a8dfa515d2385ccfa414e84f8
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 20, 2026.
Transparency logRelease files / zope_i18nmessageid-8.3-cp312-cp312-win_amd64.whl
| Download URL | zope_i18nmessageid-8.3-cp312-cp312-win_amd64.whl |
|---|---|
| Size | 20.0 kB |
| Tags | CPython 3.12 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
b4aaa45f4b9085ada54aa632541fc56385d8bcbb91340046572c1ef69b6677a8
|
|
BLAKE2b-256 checksum How to use checksums |
1064269d19d3ea93c3ef0d88935d6e1c881b6e16fc8dd3d27e56a1ddf4d08344
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 20, 2026.
Transparency logRelease files / zope_i18nmessageid-8.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
| Download URL | zope_i18nmessageid-8.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl |
|---|---|
| Size | 33.3 kB |
| Tags | CPython 3.12 Linux glibc 2.17+ ARM64 |
|
SHA-256 checksum How to use checksums |
891ad8dbb37589bd149483f12beacd550709a304366c6a23811f2b6a97d9bb70
|
|
BLAKE2b-256 checksum How to use checksums |
0c3cd0ac23d5fa1eae4f48d655ad4e7293243849f544134332453b0ba3c924fb
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 20, 2026.
Transparency logRelease files / zope_i18nmessageid-8.3-cp312-cp312-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
| Download URL | zope_i18nmessageid-8.3-cp312-cp312-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl |
|---|---|
| Size | 32.9 kB |
| Tags | CPython 3.12 Linux glibc 2.17+ x86-64 Linux glibc 2.5+ x86-64 |
|
SHA-256 checksum How to use checksums |
b9c893727164a4be8eafe048ca9a8a5b3a89ed5cbede19686f5adcf7f0dc8aa6
|
|
BLAKE2b-256 checksum How to use checksums |
c0abfa616ad31f7199e42322adc35d4e35b33c1ddfe30938b076e3f2720d3959
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 20, 2026.
Transparency logRelease files / zope_i18nmessageid-8.3-cp312-cp312-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
| Download URL | zope_i18nmessageid-8.3-cp312-cp312-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl |
|---|---|
| Size | 31.8 kB |
| Tags | CPython 3.12 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32 |
|
SHA-256 checksum How to use checksums |
9eb93a8724fa8071feb424b4f022e34ac4abce7acdca60d93186a271117ecec8
|
|
BLAKE2b-256 checksum How to use checksums |
2a3ecc40133a2fb41e953f55509b446b0df58f1fcf8e7fb8ab47d035a164b47f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 20, 2026.
Transparency logRelease files / zope_i18nmessageid-8.3-cp312-cp312-macosx_11_0_arm64.whl
| Download URL | zope_i18nmessageid-8.3-cp312-cp312-macosx_11_0_arm64.whl |
|---|---|
| Size | 17.4 kB |
| Tags | CPython 3.12 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
55d3cf4dd57770c09e130e03de430e2a122feebef65cf54859a5badbeb75b917
|
|
BLAKE2b-256 checksum How to use checksums |
68bf9b64354f7824bdc4f8b56887ff668ded1fba5c01f3ddc17e6b41aff95d3f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 20, 2026.
Transparency logRelease files / zope_i18nmessageid-8.3-cp312-cp312-macosx_10_9_x86_64.whl
| Download URL | zope_i18nmessageid-8.3-cp312-cp312-macosx_10_9_x86_64.whl |
|---|---|
| Size | 16.8 kB |
| Tags | CPython 3.12 macOS 10.9+ x86-64 |
|
SHA-256 checksum How to use checksums |
d9050e3dee5dede7080be4cf9baed46745cc0eb148ef3fc956e9646dab32d79b
|
|
BLAKE2b-256 checksum How to use checksums |
78b082938fa450131b0e6c18c4acff89264f39c1b2f4055d2dd0c19fbef5744d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 20, 2026.
Transparency logRelease files / zope_i18nmessageid-8.3-cp311-cp311-win_arm64.whl
| Download URL | zope_i18nmessageid-8.3-cp311-cp311-win_arm64.whl |
|---|---|
| Size | 19.7 kB |
| Tags | CPython 3.11 Windows ARM64 |
|
SHA-256 checksum How to use checksums |
df83d3fa5709982cdc7b6a40f2d3fc1e91c6188e751b3dd33c1673e567bc7598
|
|
BLAKE2b-256 checksum How to use checksums |
a8daa52cbef2890f09694fe34789de54823902a2fd30eef0ac79c43bf92aa7cf
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 20, 2026.
Transparency logRelease files / zope_i18nmessageid-8.3-cp311-cp311-win_amd64.whl
| Download URL | zope_i18nmessageid-8.3-cp311-cp311-win_amd64.whl |
|---|---|
| Size | 19.9 kB |
| Tags | CPython 3.11 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
7d68af563be52acf6c027dbe8c55b21c5e262fcde420f5285d774013d3f94c23
|
|
BLAKE2b-256 checksum How to use checksums |
fe3ef986be9a13475135a295cfe32fee00561897ff48a6e6eb9646ed130d1b0e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 20, 2026.
Transparency logRelease files / zope_i18nmessageid-8.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
| Download URL | zope_i18nmessageid-8.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl |
|---|---|
| Size | 31.7 kB |
| Tags | CPython 3.11 Linux glibc 2.17+ ARM64 |
|
SHA-256 checksum How to use checksums |
984568898ffdc88663530b9acf946ec01987af0a3bf1eed3e3e6d49941d78600
|
|
BLAKE2b-256 checksum How to use checksums |
8817801ba5738119d27c7d9c56d0d188328547486dfddd4833702b74fe4d196a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 20, 2026.
Transparency logRelease files / zope_i18nmessageid-8.3-cp311-cp311-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
| Download URL | zope_i18nmessageid-8.3-cp311-cp311-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl |
|---|---|
| Size | 31.2 kB |
| Tags | CPython 3.11 Linux glibc 2.17+ x86-64 Linux glibc 2.5+ x86-64 |
|
SHA-256 checksum How to use checksums |
4b9f3bae7f707db397dc70164655a9efd8298876a7dd8c2eb07808b2dde14a19
|
|
BLAKE2b-256 checksum How to use checksums |
ce6fdad1ab50d354270f310c9cda729dd3de4e349923ce6dc6461cd66ebc60c0
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 20, 2026.
Transparency logRelease files / zope_i18nmessageid-8.3-cp311-cp311-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
| Download URL | zope_i18nmessageid-8.3-cp311-cp311-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl |
|---|---|
| Size | 30.3 kB |
| Tags | CPython 3.11 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32 |
|
SHA-256 checksum How to use checksums |
c2ec6ec0806041b24845622a18771933f1e191003c9069944a2ca1b09bf64bb6
|
|
BLAKE2b-256 checksum How to use checksums |
ab2a29657b90fa89f1c50a82aa72ecee17a5983b7b16aaba3db95d86a9d686d0
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 20, 2026.
Transparency logRelease files / zope_i18nmessageid-8.3-cp311-cp311-macosx_11_0_arm64.whl
| Download URL | zope_i18nmessageid-8.3-cp311-cp311-macosx_11_0_arm64.whl |
|---|---|
| Size | 17.3 kB |
| Tags | CPython 3.11 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
f439b5b49c2e2c198654b105c3601657fd2803ae88e74fdf09a3cf9ebb0a2add
|
|
BLAKE2b-256 checksum How to use checksums |
2c2e566b29656bde11cabdf63e742802a6ea7001ee3ce0894c92d64a125eff7e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 20, 2026.
Transparency logRelease files / zope_i18nmessageid-8.3-cp311-cp311-macosx_10_9_x86_64.whl
| Download URL | zope_i18nmessageid-8.3-cp311-cp311-macosx_10_9_x86_64.whl |
|---|---|
| Size | 16.8 kB |
| Tags | CPython 3.11 macOS 10.9+ x86-64 |
|
SHA-256 checksum How to use checksums |
f4acac14220e179861c9d1812aed97714f17b4c87799bf25a140f7daf8d7d957
|
|
BLAKE2b-256 checksum How to use checksums |
1ac300424fba5b19fb2df70eef57a0075dd11c19e46a5cd412368ca01f62d33a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 20, 2026.
Transparency logRelease files / zope_i18nmessageid-8.3-cp310-cp310-win_amd64.whl
| Download URL | zope_i18nmessageid-8.3-cp310-cp310-win_amd64.whl |
|---|---|
| Size | 19.9 kB |
| Tags | CPython 3.10 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
f20f21fe7628d88c8659600330f6cad6fccf82ffd0a12a62e3d93f978b890732
|
|
BLAKE2b-256 checksum How to use checksums |
e629cccd50dd15ea3849fe0a830de821ed16a196b73c45a84feb12a0ebe8ba6d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 20, 2026.
Transparency logRelease files / zope_i18nmessageid-8.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
| Download URL | zope_i18nmessageid-8.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl |
|---|---|
| Size | 31.5 kB |
| Tags | CPython 3.10 Linux glibc 2.17+ ARM64 |
|
SHA-256 checksum How to use checksums |
e5ad95c4ab0c5bdd659b3fc3e69bcff04b36a65fe422e312a2ef04e11bf1f83f
|
|
BLAKE2b-256 checksum How to use checksums |
30a4cf6ee2a2dc3f6f1a1fcc50a759cbb22406570a6f228077019b51234c626a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 20, 2026.
Transparency logRelease files / zope_i18nmessageid-8.3-cp310-cp310-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
| Download URL | zope_i18nmessageid-8.3-cp310-cp310-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl |
|---|---|
| Size | 30.9 kB |
| Tags | CPython 3.10 Linux glibc 2.17+ x86-64 Linux glibc 2.5+ x86-64 |
|
SHA-256 checksum How to use checksums |
8968bc0d0f3d034cbe26bb20e94898a1c32f64f0da354193ae659406110c0b16
|
|
BLAKE2b-256 checksum How to use checksums |
6f7a31473fdb75064bd17faf3464c9d3118a605c2bafacb1df91aeabb4df7194
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 20, 2026.
Transparency logRelease files / zope_i18nmessageid-8.3-cp310-cp310-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
| Download URL | zope_i18nmessageid-8.3-cp310-cp310-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl |
|---|---|
| Size | 30.1 kB |
| Tags | CPython 3.10 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32 |
|
SHA-256 checksum How to use checksums |
1ab36a8c29d2dab6c7c5c0afb3637eecdc5cacece15d24cc26314cf348b83ebd
|
|
BLAKE2b-256 checksum How to use checksums |
aeaad63cdf2a13f02f2bc80ae830826002ed1eb8483c48a3dcfe7aed4e92f080
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 20, 2026.
Transparency logRelease files / zope_i18nmessageid-8.3-cp310-cp310-macosx_11_0_arm64.whl
| Download URL | zope_i18nmessageid-8.3-cp310-cp310-macosx_11_0_arm64.whl |
|---|---|
| Size | 17.3 kB |
| Tags | CPython 3.10 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
53ce937e35bef769e0583d6066b98f1d08d8b61cc5795262b08cb4b3a5938a3e
|
|
BLAKE2b-256 checksum How to use checksums |
e4d65a4aae0f361f5a7f535e812dadfca6140ad766e1f61f14d35fcd9dc01000
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 20, 2026.
Transparency logRelease files / zope_i18nmessageid-8.3-cp310-cp310-macosx_10_9_x86_64.whl
| Download URL | zope_i18nmessageid-8.3-cp310-cp310-macosx_10_9_x86_64.whl |
|---|---|
| Size | 16.8 kB |
| Tags | CPython 3.10 macOS 10.9+ x86-64 |
|
SHA-256 checksum How to use checksums |
1be2132b429a967cbe15568b7dd4d5ca76a1cff2b191ff7f2644818eff2f31e1
|
|
BLAKE2b-256 checksum How to use checksums |
1b81d17754f9d41cde18faf828531b433dbf99f47b9452a76b99f63937843751
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 20, 2026.
Transparency log