Skip to main content

Message Identifiers for internationalization

Project description

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.

Changes

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.1.tar.gz (26.7 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.1-cp314-cp314-win_amd64.whl (20.8 kB view details)

Uploaded CPython 3.14Windows x86-64

zope_i18nmessageid-8.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (33.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

zope_i18nmessageid-8.1-cp314-cp314-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl (32.7 kB view details)

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

zope_i18nmessageid-8.1-cp314-cp314-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (31.6 kB view details)

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

zope_i18nmessageid-8.1-cp314-cp314-macosx_11_0_arm64.whl (17.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

zope_i18nmessageid-8.1-cp314-cp314-macosx_10_9_x86_64.whl (16.7 kB view details)

Uploaded CPython 3.14macOS 10.9+ x86-64

zope_i18nmessageid-8.1-cp313-cp313-win_amd64.whl (20.5 kB view details)

Uploaded CPython 3.13Windows x86-64

zope_i18nmessageid-8.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (33.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

zope_i18nmessageid-8.1-cp313-cp313-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.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

zope_i18nmessageid-8.1-cp313-cp313-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (31.6 kB view details)

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

zope_i18nmessageid-8.1-cp313-cp313-macosx_11_0_arm64.whl (17.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

zope_i18nmessageid-8.1-cp313-cp313-macosx_10_9_x86_64.whl (16.7 kB view details)

Uploaded CPython 3.13macOS 10.9+ x86-64

zope_i18nmessageid-8.1-cp312-cp312-win_amd64.whl (20.5 kB view details)

Uploaded CPython 3.12Windows x86-64

zope_i18nmessageid-8.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (33.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

zope_i18nmessageid-8.1-cp312-cp312-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.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

zope_i18nmessageid-8.1-cp312-cp312-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (31.7 kB view details)

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

zope_i18nmessageid-8.1-cp312-cp312-macosx_11_0_arm64.whl (17.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

zope_i18nmessageid-8.1-cp312-cp312-macosx_10_9_x86_64.whl (16.7 kB view details)

Uploaded CPython 3.12macOS 10.9+ x86-64

zope_i18nmessageid-8.1-cp311-cp311-win_amd64.whl (20.5 kB view details)

Uploaded CPython 3.11Windows x86-64

zope_i18nmessageid-8.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (31.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

zope_i18nmessageid-8.1-cp311-cp311-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl (31.1 kB view details)

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

zope_i18nmessageid-8.1-cp311-cp311-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (30.2 kB view details)

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

zope_i18nmessageid-8.1-cp311-cp311-macosx_11_0_arm64.whl (17.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

zope_i18nmessageid-8.1-cp311-cp311-macosx_10_9_x86_64.whl (16.7 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

zope_i18nmessageid-8.1-cp310-cp310-win_amd64.whl (20.5 kB view details)

Uploaded CPython 3.10Windows x86-64

zope_i18nmessageid-8.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (31.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

zope_i18nmessageid-8.1-cp310-cp310-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl (30.8 kB view details)

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

zope_i18nmessageid-8.1-cp310-cp310-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (30.0 kB view details)

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

zope_i18nmessageid-8.1-cp310-cp310-macosx_11_0_arm64.whl (17.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

zope_i18nmessageid-8.1-cp310-cp310-macosx_10_9_x86_64.whl (16.7 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: zope_i18nmessageid-8.1.tar.gz
  • Upload date:
  • Size: 26.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.12

File hashes

Hashes for zope_i18nmessageid-8.1.tar.gz
Algorithm Hash digest
SHA256 316158203ad2a38bbdb32a66d4e77ea435d13e85e21d304e66e8f135f5e858b5
MD5 93ac82fd7c4a34bf460b2a7e04a2d2d9
BLAKE2b-256 873ec25629b395c0048d2abac5d9e1c502db1b1da09ccaf5c6fa6ff09367ffa8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zope_i18nmessageid-8.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 95831d5b97cc2f626ad82b9d5d2dafbfdf0bf45110dfb4ffb2e751fe1db090fa
MD5 a340b5153ecd3929892631cfad7d6ee8
BLAKE2b-256 465b252af4e6f873ba0528c45e3431432bebc1c650cf34830e2812118a6c3c06

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zope_i18nmessageid-8.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 1c6b500c9eb7099998577f9faa06317dd55244dd8c5760d7dbef44fa52d65352
MD5 69fa0b5443aacff874d4dde50d3de1c2
BLAKE2b-256 05c6a22544c643e22485f6a8068b2d6929ef236ae86f28300e049acb7669a1f2

See more details on using hashes here.

File details

Details for the file zope_i18nmessageid-8.1-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.1-cp314-cp314-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 e575d05bd701da9943ac490b198734c1b800d0d192bec681ee9c1600a1d297fe
MD5 36365b65395add2df825a3f6098378bf
BLAKE2b-256 626d8253dbaa794d615b69b08dcc84d149186ed2e1d4510466fce17d3a47f2dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zope_i18nmessageid-8.1-cp314-cp314-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 1a8412fd906bdc2df92bb1b1e0bedb773e3f4b05f306f67a24fa7d7d1ce59049
MD5 858ec9d758cdfd21412cbde75336752e
BLAKE2b-256 c4017eda053d30a2be99e4c7917be1fa37bce03fc5ef564cb1edd4793a2f7c24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zope_i18nmessageid-8.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 39e03ff3a0924479f4dd1174a266580f793b55a9a16a461b521886e54c9534c1
MD5 509575a78ab46103f7149499acbca042
BLAKE2b-256 0773f50904126b5855eda743763490d83233f762769236cdb078d51407332e25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zope_i18nmessageid-8.1-cp314-cp314-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3f8d25bca1a656c5f6b22be527105a18b8ce1ba1f18c68f706a39265895418a8
MD5 d54df018fb0f65f48bf4d6aa2a1f66d7
BLAKE2b-256 10873ada5ca51bc41d4c75d6a446d16a0c36aa34759af748526d43c24abdeecc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zope_i18nmessageid-8.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a748f240cc3ef371e6d0d111186e647bce53612f05596bf6900b2fa94056598a
MD5 e62e928e0cbea0094d7537390caaa738
BLAKE2b-256 9b989441cdad20747a35f0ddb09388a00a22c7644425a67f411d2c9b9731dc94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zope_i18nmessageid-8.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 e278ac8c81d800f7f45e4b1babf9396c330093aa6267914f67de1c591b8c278f
MD5 6b5081724a80250eceebef1c402f7c5e
BLAKE2b-256 74ca97bf190f16925bee6ade441af727760b04e259c7e0daf65282edeec64f59

See more details on using hashes here.

File details

Details for the file zope_i18nmessageid-8.1-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.1-cp313-cp313-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 c606a4861d07b602054e90710c648419894311c176668f14f25c7e8f67d77628
MD5 180ebf3fbe1c1a3a4e3ec9198307d9aa
BLAKE2b-256 edb46cb0070417a322d21852225af7d7856f29ff4fa068e678df051751f4031c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zope_i18nmessageid-8.1-cp313-cp313-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 3ff8bf413542600edc327901b0416193d49d599fec2b1ef7f9cf8a77dd073092
MD5 ad5f8a63a2cd28029d3d098af4fe428b
BLAKE2b-256 eaa909b864b54dc81e0bb91dfb9f1a83c0491173270d811f23c6eaa7a12fbdc6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zope_i18nmessageid-8.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 26d025db4e9b330dc1151bc34363fc0194057020ded5853053a5fe0081a191fa
MD5 bbfa84cb052aa2176a896aea5b6ea211
BLAKE2b-256 35cead196732272eb79fc3d87fd06c6deda3df5b318569597ac24abb2ee75a91

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zope_i18nmessageid-8.1-cp313-cp313-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e5957924b6441503864a5d4cae7f184b59b9527f67c8efdd238922fb5097ff16
MD5 c3262112987de558570f596329f61c75
BLAKE2b-256 39d97dd535821f37c6547f77b50e36282e4a3775028fde92fa9d3fe5ce41324e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zope_i18nmessageid-8.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 22b916ffff664dd8b54e077c7ca4a44a1c110b59a557b352c7c9c1ea0d4c29e1
MD5 b8d2931ca1f83460f9e7f9a2b9e344fa
BLAKE2b-256 a73b2899f8958088be89baf7d7d807641e6db370e0fdbd2416fbc7209682ec0b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zope_i18nmessageid-8.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 e813296fbeeab49ae1dd56dc3933ba6103ea3b7aef5892080707b444aadd6bc1
MD5 70fe588f8108db573f9613ff824c6592
BLAKE2b-256 c64139f45e684a9303b8a97c04453f35103161539f3afabdf8011d8b5f04df8c

See more details on using hashes here.

File details

Details for the file zope_i18nmessageid-8.1-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.1-cp312-cp312-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 7d3ab40d1e105e6756b3655576a59edcb5b07b8030d808d22d8c37f1c1e4ae84
MD5 cde61b1bf2573bbe5322a002b5528371
BLAKE2b-256 fab88ca2f458630f771d90e6101ea1387b692cc9e975d1e2152eecac0fd5772d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zope_i18nmessageid-8.1-cp312-cp312-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 b8c599d0e1d4ee69631963fb295da7226a2556b9f8eb6a772e85a4f8bc19a062
MD5 d3a2769c61a4e63f23ceb5a453c559d7
BLAKE2b-256 30e2c4a00970dc9aa95b3894e0532c29953ed52317517d4217f733904be63578

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zope_i18nmessageid-8.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2de2c863ca9d56a7a944280ea80a84842c90469f3077eb4da372aa2cea873c8b
MD5 99d5470e62406bdccc10de5812b1d848
BLAKE2b-256 5c3e411f147d38c82478a781008eb86f2461df0d510f7cb37d99a766920acda4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zope_i18nmessageid-8.1-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f03b17d243c93bebcb488589bf716d2f96ea067cb679bd1227a5fd03ac07d403
MD5 5b1918b2ba78f200f2a46becdfad83b5
BLAKE2b-256 243c12162ece3e0f03b42ddf71e1c559b6f8096a858da36e293fb6034adaca11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zope_i18nmessageid-8.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 421689beeec648854756b46e20e7c2101454f794c74c18afbc3b30d1d13c8ad4
MD5 559552f610eefa153126861fa4ba4ce8
BLAKE2b-256 75fccf25c224f65b002e924e9bb96d9fa642056862992a3cd5844df2d89da759

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zope_i18nmessageid-8.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 ac54c592cda2bd2b1aaca4814c8e40700f931a20d302c7cc3134e765cb12fd49
MD5 61d8b39df942fe7023c49f28452cc378
BLAKE2b-256 cc0999a61b926e83a0050915bc4de33e88dc02b58833c0ae4cd863872215be32

See more details on using hashes here.

File details

Details for the file zope_i18nmessageid-8.1-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.1-cp311-cp311-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 54ea41b3ab6de0dd4d5a89fbda2cc077e6789c60cbf28567ce9cfcfade611344
MD5 229402256b4326084343b5c74c88b9b1
BLAKE2b-256 34aec059ac572f79c5e1013cc30d2f283392ea4fb677398100820f5e143a2a55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zope_i18nmessageid-8.1-cp311-cp311-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 6d1f111dd49f408aa3e2b1678a18db1df4eeefb2135267323fc2b01817144485
MD5 8f49d998e557cb8ec291fdd0a9b6a898
BLAKE2b-256 606c4503a6451a6b626174172b35071ea13fb2c8a85ceae64dee94f4b3f2cca2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zope_i18nmessageid-8.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fbad323e7408b4e26ccaf8284b97ce8b4c33dfbdcdd9a0bc09a18aee700a1fa8
MD5 a06cb8b93a86f7e111075ac9d99dc602
BLAKE2b-256 1d9ecb8a1b801c7ed5a049ea1a21219840ae97c4f334664e69a08567fc661692

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zope_i18nmessageid-8.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 63fef2e0378851de1a349eb28af935e44ab20d4462e041a949408daf5403e614
MD5 0fbdfaf025f88c7e570c7fe517069bf6
BLAKE2b-256 d13ca605df07f77c766b0ad1eb05c0f3416ea242e93cb788b93f561dc7a0ce25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zope_i18nmessageid-8.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d3bf241cd41c05da67e79e1cc08811e84dbf348bbb47b53bafa342a5e1dc3718
MD5 c6c54d9d1c4e9262bce45abd021e86d5
BLAKE2b-256 3f73f4913f17539dcf76c00c30135073386c10b7797fe9a32a163123e604027f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zope_i18nmessageid-8.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 f4193b806b94d9dbaafba7d4d491cef2f4d7004a74ac2d7b61772bcf1758a434
MD5 b3ee38e6de9bafe5ecb0d8b1f7d65424
BLAKE2b-256 242a2d3a049d203a12cdb55682245f35471c36d5f2b9aa0683857481a44a956d

See more details on using hashes here.

File details

Details for the file zope_i18nmessageid-8.1-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.1-cp310-cp310-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 d68a9610ca7631358f3dde5cde8eca55cd1f6c4937d0135eef171fca18c4699c
MD5 6d853ab27cc34e598a8ed00a06ac10bb
BLAKE2b-256 30ea9afc38edb7c4f7222d3b64dcb072695bef898550e7f245570f19217e92ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zope_i18nmessageid-8.1-cp310-cp310-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 505f137bc100e920a9a7b8fe4f5c71e2cb620c42318b2c93bbda91d478656a15
MD5 f6aa508cdf9e8713b4dd73c6fda4693a
BLAKE2b-256 1663f7aba7214dcff3999b1dd91680743fa4c4fda7bacade067de86d39a917b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zope_i18nmessageid-8.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 74b7a5f9197538079272b8277e6cbe3cf8a0c27f2f74af26d49c134b3874de46
MD5 3f7d332164a6a68142d8421f49bc8ce4
BLAKE2b-256 2754b4f5cf14d09a1bce8043b41bfed4792918727ff3015cdd2039ecaa7f579d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zope_i18nmessageid-8.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7ee464529326487f5bac603b7c2fbf761867feba4bba34f4b934c0ff06af9394
MD5 418c55af7f064555795db41f4fd703ef
BLAKE2b-256 5685fc494e07ba406709b53df337fa64413e7f1d41a124e1f741252b3a8c87f4

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page