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.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.0.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.0-cp313-cp313-win_amd64.whl (20.8 kB view details)

Uploaded CPython 3.13Windows x86-64

zope_i18nmessageid-8.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (33.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

zope_i18nmessageid-8.0-cp313-cp313-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl (33.1 kB view details)

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

zope_i18nmessageid-8.0-cp313-cp313-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (31.9 kB view details)

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

zope_i18nmessageid-8.0-cp313-cp313-macosx_11_0_arm64.whl (17.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

zope_i18nmessageid-8.0-cp313-cp313-macosx_10_9_x86_64.whl (17.0 kB view details)

Uploaded CPython 3.13macOS 10.9+ x86-64

zope_i18nmessageid-8.0-cp312-cp312-win_amd64.whl (20.8 kB view details)

Uploaded CPython 3.12Windows x86-64

zope_i18nmessageid-8.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (33.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

zope_i18nmessageid-8.0-cp312-cp312-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl (33.1 kB view details)

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

zope_i18nmessageid-8.0-cp312-cp312-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (32.0 kB view details)

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

zope_i18nmessageid-8.0-cp312-cp312-macosx_11_0_arm64.whl (17.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

zope_i18nmessageid-8.0-cp312-cp312-macosx_10_9_x86_64.whl (17.0 kB view details)

Uploaded CPython 3.12macOS 10.9+ x86-64

zope_i18nmessageid-8.0-cp311-cp311-win_amd64.whl (20.8 kB view details)

Uploaded CPython 3.11Windows x86-64

zope_i18nmessageid-8.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (31.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

zope_i18nmessageid-8.0-cp311-cp311-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl (31.4 kB view details)

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

zope_i18nmessageid-8.0-cp311-cp311-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (30.5 kB view details)

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

zope_i18nmessageid-8.0-cp311-cp311-macosx_11_0_arm64.whl (17.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

zope_i18nmessageid-8.0-cp311-cp311-macosx_10_9_x86_64.whl (17.0 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

zope_i18nmessageid-8.0-cp310-cp310-win_amd64.whl (20.8 kB view details)

Uploaded CPython 3.10Windows x86-64

zope_i18nmessageid-8.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (31.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

zope_i18nmessageid-8.0-cp310-cp310-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.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

zope_i18nmessageid-8.0-cp310-cp310-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (30.3 kB view details)

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

zope_i18nmessageid-8.0-cp310-cp310-macosx_11_0_arm64.whl (17.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

zope_i18nmessageid-8.0-cp310-cp310-macosx_10_9_x86_64.whl (17.0 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

zope_i18nmessageid-8.0-cp39-cp39-win_amd64.whl (20.7 kB view details)

Uploaded CPython 3.9Windows x86-64

zope_i18nmessageid-8.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (30.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

zope_i18nmessageid-8.0-cp39-cp39-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl (30.1 kB view details)

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

zope_i18nmessageid-8.0-cp39-cp39-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (29.3 kB view details)

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

zope_i18nmessageid-8.0-cp39-cp39-macosx_11_0_arm64.whl (17.4 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

zope_i18nmessageid-8.0-cp39-cp39-macosx_10_9_x86_64.whl (16.9 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: zope_i18nmessageid-8.0.tar.gz
  • Upload date:
  • Size: 26.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.11

File hashes

Hashes for zope_i18nmessageid-8.0.tar.gz
Algorithm Hash digest
SHA256 f1be1e76f93b4d525e95c6c242ae843371ba3d4ec5cf46e5f0faf2bde8f956a1
MD5 a3e78349f873d869b161216c766234da
BLAKE2b-256 370f0dd98984af951e359cd28f584ed6268d13ffe1fb11b118a32f2aec84d57c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zope_i18nmessageid-8.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 39697245513444b852ff89c17f431c8da7850d61f0025601686cce42c84b788c
MD5 a8aa7d6d0255a7ba6b534f199daacc36
BLAKE2b-256 b4b17978c14a5704d304df7ffd01a03f3b7d9a1939a8e69a9dc12df45ebc9fd1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zope_i18nmessageid-8.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 3e4f56f445bf12c5eca62e18597ffacde3ba9d010baee495f01bf7869b12c55e
MD5 fe0c8eba7bfe24eba921585f0903892b
BLAKE2b-256 de2b3b00b373a50c4bdaa660438b617ba5b458c7b7f1680668e4461a92e7bc79

See more details on using hashes here.

File details

Details for the file zope_i18nmessageid-8.0-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.0-cp313-cp313-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 915697a0d31a0a68cc309ae07d0fce9f01d880863f777cf4df9eebf8da026b53
MD5 6b6fcf3ed7b8bfbfbb4e826c3d502b80
BLAKE2b-256 fc86ad84d721af2496a45eee8de91c8c43d9c799948066dc9ab0b98a4dd70ddf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zope_i18nmessageid-8.0-cp313-cp313-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 517f0d7602e03eb231bf67ff1ec2d1bc1cbd010aed820d8dd539959debdd5482
MD5 4e98398d676335c4d69b01953c339578
BLAKE2b-256 741e71f3583d0bd92d6dce69fb498870d973639322d328a1ebda655a46deabef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zope_i18nmessageid-8.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0599c5c01ff24012545f261a8c9c254b8a13023e35b902df18d90b919149222c
MD5 e9863b7d5aa7d10a868d47ffd589f50d
BLAKE2b-256 aa43666091883852e27e4d591b7cb452ea98a96f236268d0e6912b03e3b80d98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zope_i18nmessageid-8.0-cp313-cp313-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3059308fce8789eb306ab988dc284904c4c68a4b1d61de55e450adb075b4406a
MD5 de82bb7be82de78334f8e0065fddf056
BLAKE2b-256 6716b8a31a82044ca65af100a862221d56a9b290fa5db0e60f0437480ecfdd73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zope_i18nmessageid-8.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ea92506b7a3341907b74b821e22dae16d469214b8fd34c415a179b284d0fdeea
MD5 9fd8548b36dc7d3ff95a82ebea7cc1b7
BLAKE2b-256 271d19c6a0588aef5c267f2205f282527fe7466c7879196dd4907f265139d58f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zope_i18nmessageid-8.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 f4f3afa693cc99287777deb87e7b19d1d8fc194460346cc4c9b6b2c77f319893
MD5 aee2ce8138e7813a68217294c35e8073
BLAKE2b-256 ef32ac441ba448e872cbc6f5c9273d0ad562b42aa61b4cc50cce567119096cf3

See more details on using hashes here.

File details

Details for the file zope_i18nmessageid-8.0-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.0-cp312-cp312-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 ac3f7ce930cebf42bbcb5fc3298bcc3f06996dd76071f0173326568a0623ca54
MD5 78704568984307cb94299411dd2d66fc
BLAKE2b-256 616d0f80ea817507a17fa1f06df7faa33bd838583f7b14b68a6ca5e27591b194

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zope_i18nmessageid-8.0-cp312-cp312-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 f8f630872234af71c3a7e7a287bafe4a00a36d6e8f9aca547cefde9e2d3f2282
MD5 2998527dd34254a2cb269a0c526cba25
BLAKE2b-256 f07cda78c30bc16704bb77d065089785e31543553cbad15853e24f220878779c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zope_i18nmessageid-8.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d50a6a81ab7f25e700a201f012f529d0b6e3ce37cab7b3a7c4f8cfd27ad7597f
MD5 222c55b62be27ec4d80ce3b6d6403db7
BLAKE2b-256 c93b71ffb7c2511a1cec0448f6eb21d57157da28d1773bbe770e4009edff05ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zope_i18nmessageid-8.0-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 698c75395b15b22f64ef2a13dfd3c4b5d1ba8f3f06bf4dc0d777d264b59b6127
MD5 ba79d04110b0927efb292f55cda3e01d
BLAKE2b-256 432ace522efaa1be960acd15977773cb0268f5533019300222e85cf5c9481733

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zope_i18nmessageid-8.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c16afa7bade23e77531147a5db7093d1d025e3baa7b069612990aba87a0eae3a
MD5 985ae14380d036cf25e30d98283b3423
BLAKE2b-256 df4ffede1f2ff313a3bbfc5bc39a6641af028b970b33e8e18214ec7fffa4684b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zope_i18nmessageid-8.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 c8ed490911b30125d9e8db2e5742a112c25ccdd19dc097cc6b21b5ba76030d34
MD5 d27f263a5be89556d3d35d34a03535ac
BLAKE2b-256 81bdd66045d93f7c8d1b350ef722a600db70df1c0b9e601c44505ad66117ba02

See more details on using hashes here.

File details

Details for the file zope_i18nmessageid-8.0-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.0-cp311-cp311-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 d22dc04cc592fe072f2dae1991ab422ec28fe8ae8ea4481ac8870fa83a0b653e
MD5 9865b64d098f96516c48d4b100499ac7
BLAKE2b-256 12e1a74fdd2d126ee924446d8fa64600a68c6cdd2a3422934ca53c063679fddd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zope_i18nmessageid-8.0-cp311-cp311-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 74a5b2c810cda913e6e24baa034df331552eeaf0141910a8793ee5b5f25fc383
MD5 388556536b9f2c52cd78a5db867dd332
BLAKE2b-256 f730243a1820175b1738619a567fcd2ee7f3304ac2dfcb313cb7e9c68412c38a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zope_i18nmessageid-8.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f9515d1d94780ec7c803031e4f838d62749b61213cb5e35adeb9350e42af7f15
MD5 c360a987bd0329f531c94c24c9ee6da7
BLAKE2b-256 713e3b9cabe0e5969e503b40f04f9a5446cdd6050c8956c0b31cf72a952531df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zope_i18nmessageid-8.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 da16e5322cd5bf720f1076da1bfff904631a0e62cc340395f383016c110d5498
MD5 0b1ba0a1b511f63c3e5c0d35913a70c9
BLAKE2b-256 15338af847fa4b3903b461331d03cbb2412f566fc923e94277ffd26c821bc61a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zope_i18nmessageid-8.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 dfa6fb1fa72fae926530ade4328afb2f67ee0b303e16eb07578b334ffe3109c8
MD5 fe4c6e25994bae4317f7885bbeafcd8b
BLAKE2b-256 d36f1568ee4bae009105d4363b75d59c004e3aa085a5f32fe850709ec5c1446c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zope_i18nmessageid-8.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 5bc8ee8f1a84cf4f67f8767b310489805391249743253f19f708f23eb1d07fd4
MD5 abe8cab6441027b77116ce7e66d8b29e
BLAKE2b-256 73d459f2e428ded28e0ab4f826c7eaf144029dcd7952c7ac8d98388a650badc3

See more details on using hashes here.

File details

Details for the file zope_i18nmessageid-8.0-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.0-cp310-cp310-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 f469bdfbde1753f98693eeccf414d9f697d0c752f8d86f299d283a3f0157bfd0
MD5 358fd7c59d27298a7e1cf76650328a9c
BLAKE2b-256 3c112a4737b58df13866b59d267cb2fc92e64a721642b84f04ec746c02bd3e67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zope_i18nmessageid-8.0-cp310-cp310-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 49ecf86fd834198e1e87418055b792057842c438fffb1213dc47c5dead8b90f6
MD5 1d660e8e2a4714bb675f92f81e1c2271
BLAKE2b-256 3e12ba596c7462e8b219a4b633a8982597beba7f4f08f37ec025c83ce9473b87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zope_i18nmessageid-8.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d169cc85c1909bf35045f7be501e454dfdf598ee130134b8b40f8965b001924a
MD5 0593ae3d53a09cd83c058b8a79d616c4
BLAKE2b-256 2af15c76033b42fddb62fd3c854a13d1e15914fac576c7c712d03a0e3a0d981d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zope_i18nmessageid-8.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b23864dd3338397b035b126ece1ee90f8dca4dbcb18f847672d1cab1732ff98b
MD5 72fcee6dfa31ff59fa79bd08c3af6aff
BLAKE2b-256 95c4a74eda940b8d3c72e977715823bca5bd0c894ab67db763bed7fa464bf810

See more details on using hashes here.

File details

Details for the file zope_i18nmessageid-8.0-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for zope_i18nmessageid-8.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 6a018c1f352ea3d7e9224c86d4a88992aa60e5db2f38e4b443dac8b50251c321
MD5 c1f954b7931970e8b677a1ecc87d803d
BLAKE2b-256 75bd063afebf7047e47cbbc84f0205f99ba9c614f6fcfbd04b28f9d5b017b7ca

See more details on using hashes here.

File details

Details for the file zope_i18nmessageid-8.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for zope_i18nmessageid-8.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 b37ae8198c7d87b71e151be2a6a46e66b41e512e50d6b361917d6419b8e232ce
MD5 02e3724fd26420d958d846c5c01e2010
BLAKE2b-256 b8819dda62825494a35ea464e8f279e13e29d55ed8e947e95f9d123abb195e88

See more details on using hashes here.

File details

Details for the file zope_i18nmessageid-8.0-cp39-cp39-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.0-cp39-cp39-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 08f46efa8652993d1411fc12d739b6406ac7128029e608bd982df0f28e72e633
MD5 f024318bd4597db2b1bd1ff2a587ea13
BLAKE2b-256 d847d36fba187e3eaa4aa027e0aecfb610e3b178f72be34184f8ee6078e5d47d

See more details on using hashes here.

File details

Details for the file zope_i18nmessageid-8.0-cp39-cp39-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for zope_i18nmessageid-8.0-cp39-cp39-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 e0cc82e9e62c6bdba85650438f7a19f2f2a7170b1b0dee4f78ed060ced281897
MD5 bf565643adc7ce524e9a1892b32fc108
BLAKE2b-256 4fe57eebc68409df7dbac619e8a36869ee4fb6b46d7be094453d79d29312c6b9

See more details on using hashes here.

File details

Details for the file zope_i18nmessageid-8.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zope_i18nmessageid-8.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ea52d8774c1b21856b4f0d377cfd4ad251a165e65f5c9061b77b1702f01e674e
MD5 66619a015a84ed96c58bb8da3595b073
BLAKE2b-256 6ae7082a408b5489b39b335b76c96ce0fbd376a0355b732a51fc941704b8798f

See more details on using hashes here.

File details

Details for the file zope_i18nmessageid-8.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for zope_i18nmessageid-8.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 62e9887c076e0f7f6caca99ff54a488797caf0b196cc2f13a82acdad5ce7ddb5
MD5 c0a54fc49bdc86e14fb0d4b986785f36
BLAKE2b-256 11508218b30864c07987375774a8693d1085e7065b40a28fc144093d501f564b

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