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

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-7.0.tar.gz (27.9 kB view details)

Uploaded Source

Built Distributions

zope.i18nmessageid-7.0-cp313-cp313-win_amd64.whl (21.3 kB view details)

Uploaded CPython 3.13 Windows x86-64

zope.i18nmessageid-7.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (33.8 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

zope.i18nmessageid-7.0-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (33.4 kB view details)

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

zope.i18nmessageid-7.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (32.3 kB view details)

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

zope.i18nmessageid-7.0-cp313-cp313-macosx_11_0_arm64.whl (18.4 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

zope.i18nmessageid-7.0-cp313-cp313-macosx_10_9_x86_64.whl (17.8 kB view details)

Uploaded CPython 3.13 macOS 10.9+ x86-64

zope.i18nmessageid-7.0-cp312-cp312-win_amd64.whl (21.3 kB view details)

Uploaded CPython 3.12 Windows x86-64

zope.i18nmessageid-7.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (33.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

zope.i18nmessageid-7.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (33.4 kB view details)

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

zope.i18nmessageid-7.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (32.3 kB view details)

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

zope.i18nmessageid-7.0-cp312-cp312-macosx_11_0_arm64.whl (18.4 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

zope.i18nmessageid-7.0-cp312-cp312-macosx_10_9_x86_64.whl (17.8 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

zope.i18nmessageid-7.0-cp311-cp311-win_amd64.whl (21.3 kB view details)

Uploaded CPython 3.11 Windows x86-64

zope.i18nmessageid-7.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (32.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

zope.i18nmessageid-7.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (31.7 kB view details)

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

zope.i18nmessageid-7.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (30.8 kB view details)

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

zope.i18nmessageid-7.0-cp311-cp311-macosx_11_0_arm64.whl (18.3 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

zope.i18nmessageid-7.0-cp311-cp311-macosx_10_9_x86_64.whl (17.7 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

zope.i18nmessageid-7.0-cp310-cp310-win_amd64.whl (21.3 kB view details)

Uploaded CPython 3.10 Windows x86-64

zope.i18nmessageid-7.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (32.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

zope.i18nmessageid-7.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (31.4 kB view details)

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

zope.i18nmessageid-7.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (30.6 kB view details)

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

zope.i18nmessageid-7.0-cp310-cp310-macosx_11_0_arm64.whl (18.3 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

zope.i18nmessageid-7.0-cp310-cp310-macosx_10_9_x86_64.whl (17.7 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

zope.i18nmessageid-7.0-cp39-cp39-win_amd64.whl (21.1 kB view details)

Uploaded CPython 3.9 Windows x86-64

zope.i18nmessageid-7.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (31.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

zope.i18nmessageid-7.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (30.4 kB view details)

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

zope.i18nmessageid-7.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (29.6 kB view details)

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

zope.i18nmessageid-7.0-cp39-cp39-macosx_11_0_arm64.whl (18.2 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

zope.i18nmessageid-7.0-cp39-cp39-macosx_10_9_x86_64.whl (17.6 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

zope.i18nmessageid-7.0-cp38-cp38-win_amd64.whl (21.1 kB view details)

Uploaded CPython 3.8 Windows x86-64

zope.i18nmessageid-7.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (31.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

zope.i18nmessageid-7.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (31.3 kB view details)

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

zope.i18nmessageid-7.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (30.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

zope.i18nmessageid-7.0-cp38-cp38-macosx_11_0_arm64.whl (18.2 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

zope.i18nmessageid-7.0-cp38-cp38-macosx_10_9_x86_64.whl (17.6 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: zope_i18nmessageid-7.0.tar.gz
  • Upload date:
  • Size: 27.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.11.9

File hashes

Hashes for zope_i18nmessageid-7.0.tar.gz
Algorithm Hash digest
SHA256 bf9146078c0d7359da41043bd2b713203c4fc56ef2122b3cdbb7551c3fcd8464
MD5 e69426b19e72b06aa6c0e8c683fb9525
BLAKE2b-256 59c558fab4c6a5a82a8e276adcb9f42ad6cf19ace3ee48e96ef4628218638f79

See more details on using hashes here.

File details

Details for the file zope.i18nmessageid-7.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for zope.i18nmessageid-7.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e57778992999aa1e3bd2dcc75d2b3b26ebb5786e714bdabf0260ec63dfc4ab5b
MD5 aad2913e174e45e7eb51b73f4298cd63
BLAKE2b-256 f5c59b3d37b3091cab968ef963c099f7c97e9d934848d8131409589abe719c99

See more details on using hashes here.

File details

Details for the file zope.i18nmessageid-7.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zope.i18nmessageid-7.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5f88c10ac7e795900a4a2ab680026381dda6d025d7ba09a334a23fb660db725e
MD5 8fdf8fdae04bbdac8e7bc88dde3b3559
BLAKE2b-256 e9f2375793b55182e47c5772f73e4fac91b6b194078d735ee6425aeb2a578b96

See more details on using hashes here.

File details

Details for the file zope.i18nmessageid-7.0-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zope.i18nmessageid-7.0-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d955062da0bbe71d88514ffe9c1e74d454af55eafd5d8132dc7038ca42caa18e
MD5 473fe05e631d7d9630efbb4ed95d6fc5
BLAKE2b-256 cf3a1436ad551c49b51a32f38917f9455442d027b3c054c0752553f7a194dfbb

See more details on using hashes here.

File details

Details for the file zope.i18nmessageid-7.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for zope.i18nmessageid-7.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2fae59dcc9f02b1f16ecf0abd10a4c8a3344ede81083d02f6572130c0f2dbd88
MD5 50623337e52da9f64307c7df31443fa2
BLAKE2b-256 810c67532e19a0c5cd7cc4f596cf87638d777f7fb19a44a69ac3fd0a8a8795c2

See more details on using hashes here.

File details

Details for the file zope.i18nmessageid-7.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zope.i18nmessageid-7.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eab9fdba09409a2895e27823a53d095127639cc9472a138511f4d826c35e6bad
MD5 226b39f649c15db68507bcfa6a4be1c7
BLAKE2b-256 c6d169c30572857e45f4ebac532c704dd29b8312eee9b28f4e1fd9cacccd8903

See more details on using hashes here.

File details

Details for the file zope.i18nmessageid-7.0-cp313-cp313-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for zope.i18nmessageid-7.0-cp313-cp313-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2194d5bb67fbae507501119b932692ef6cf59606eda9ce7aeeb77e7645c44d46
MD5 d62572f87b8eeb1a0270d4653573cef4
BLAKE2b-256 d7df583fd4e5dba05b45b07db8ed10e8705bf090e29a29b8f070c521fd7097e6

See more details on using hashes here.

File details

Details for the file zope.i18nmessageid-7.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for zope.i18nmessageid-7.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5de47a4fd7a74e935b8f88c91cff38bfc8a02a0311e4bb66abc11e92cc43bd3e
MD5 a320e0b93301dbbb80bd8ecf31ecfe8d
BLAKE2b-256 99d3f3cd78dba4d1c80af6802cfbed0600977075b5185ecd835210d4588c4515

See more details on using hashes here.

File details

Details for the file zope.i18nmessageid-7.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zope.i18nmessageid-7.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 97e0c80a7f824036acfcf046bbd9db3e14909aaca18c8cfc970794481d83c767
MD5 3ecf4accf5f07ad7280a95d9793d60af
BLAKE2b-256 f4e91727ba213180d03d90067f54a62c2de351490ca92f752d554fd29c8c8935

See more details on using hashes here.

File details

Details for the file zope.i18nmessageid-7.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zope.i18nmessageid-7.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 31cb8788eac247aa6b8c0bf3e8cb781b1869a563ed44f7ac83bc269641bf7881
MD5 f8c01fb5ba1334a7ca12773c6e0953c3
BLAKE2b-256 1a07d56b6a808264eb119bdccc0385779f99ea58aa552bc6f22702bf03d301a2

See more details on using hashes here.

File details

Details for the file zope.i18nmessageid-7.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for zope.i18nmessageid-7.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1b2dc03e41f328238661b489344b97c0c305ef80f8ddb00fa2b16d7bca21d8ab
MD5 940fe6a51d993549f523b4defaa8da84
BLAKE2b-256 05de05457c704799ee08d3f16560d12d14134a935123fadcc6ff2959e9f14520

See more details on using hashes here.

File details

Details for the file zope.i18nmessageid-7.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zope.i18nmessageid-7.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e3e0101ec6dd0d7e9c697166cc98058761b0ed4538c24bee89cecb5528bdc61c
MD5 d9121df2a2495fc5279df4891323b735
BLAKE2b-256 7c1c631f9fb2314802029a0fc3f1e8e974716341e690e8da60392948b14c9e06

See more details on using hashes here.

File details

Details for the file zope.i18nmessageid-7.0-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for zope.i18nmessageid-7.0-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 aa1ae53b1bf2912c35001318c1eb9edd41a46d8282423faedc50d44a5f7b52e9
MD5 d07f87a579621dbea95eb7eb7a9a57f8
BLAKE2b-256 a93be41aa4a00510ca7edc62df4a0e46ec9725007bce7e82326b84ea55dd0614

See more details on using hashes here.

File details

Details for the file zope.i18nmessageid-7.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for zope.i18nmessageid-7.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 dd5d5d04f2ea12095340715a0bc90c05b9f58285df19b2eb036d3bde20ca9f01
MD5 1ea311da18ad509794e7204db548c1db
BLAKE2b-256 8a2687c80d1c124725aa5bd720c01353ec185fdc41bad6b4f49ae66e0cf2a5ec

See more details on using hashes here.

File details

Details for the file zope.i18nmessageid-7.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zope.i18nmessageid-7.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 032d114cc052a4d4e7223be0d12b680277ad2e3063eebbe3601d5dbbd0124bf0
MD5 51172dd4945061058d3d2eea208da4c9
BLAKE2b-256 f11f2422f95a84f11440843465dd676745e75465fb048345a3b769b966615407

See more details on using hashes here.

File details

Details for the file zope.i18nmessageid-7.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zope.i18nmessageid-7.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 95194ed258cdf3728a4c2ccac644d3310c7032b6bdc7e682edcce9a4937e4c0f
MD5 eb328d2755248059360db35f8a252f21
BLAKE2b-256 fd6f3487e31caaad409ae2812e91f224721f4054a014d706facc236c03fd755e

See more details on using hashes here.

File details

Details for the file zope.i18nmessageid-7.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for zope.i18nmessageid-7.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0c752c0df91c16e09a2936aba5148cd8cbd73b5cd94bdcf84f569d58017ae82f
MD5 564b4c3ec92af146165e49e7471a3572
BLAKE2b-256 bb539fe4133f0ef6c36a7564626f8e0da55bd9ebd380763340a59fbdbb415119

See more details on using hashes here.

File details

Details for the file zope.i18nmessageid-7.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zope.i18nmessageid-7.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bb37edbd25c0715ca513984648182d02d9127334747ad6059bae34622bdc8f67
MD5 607419f2f5d8f198abb9f423b6c665f0
BLAKE2b-256 6074d3131b54733c1ddb6f8cc96bc3102e3595f3121918f51d8ce11253c18a8a

See more details on using hashes here.

File details

Details for the file zope.i18nmessageid-7.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for zope.i18nmessageid-7.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e3360de87b99e4e7e6983c2d7635aeb9a557f1e43c5fe598962faf8b5deb56c7
MD5 a7fba1bb4cd4aaba34ce7ed2f5e5816c
BLAKE2b-256 8de7d277e55b25c886a016fa7d03cc2b9a2eae834153e87cd393be127621113f

See more details on using hashes here.

File details

Details for the file zope.i18nmessageid-7.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for zope.i18nmessageid-7.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2c7c042f43e130f66c04a9e58a733319be0e730701eb4fb3b0b57c4d23ff8e5f
MD5 7126427720c29ec8634310198c951f9f
BLAKE2b-256 af81b75354a45a220c05f47489ae4fd61a1c2ad0ee67bfae268e502d92a712f8

See more details on using hashes here.

File details

Details for the file zope.i18nmessageid-7.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zope.i18nmessageid-7.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7c3a980acfb10b7cc2875d2154b4198404b80d9d7e655aee01fce17cc0641bed
MD5 396047f1d670cf722c7ef96de1bb29b9
BLAKE2b-256 e44c3754d8d731540e4b2204dcc257bd847f16ea42fce5f75bff68530ac9bdb5

See more details on using hashes here.

File details

Details for the file zope.i18nmessageid-7.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zope.i18nmessageid-7.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 75dbeb7e8ae7ea2e32c5bdcf061826bb3a42f6fd50b92c1ac38818665653c3e5
MD5 086c463532a560255bfeee934eb1e1d8
BLAKE2b-256 36b543fe73c448b8e16e06998f08635e896ba166bad17c0176b272ec5ba84b31

See more details on using hashes here.

File details

Details for the file zope.i18nmessageid-7.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for zope.i18nmessageid-7.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8432a2e5d93bd1025721667e13f4289eb3de8e1bca0291804835a9f552f170ce
MD5 939c4626fc7e5b12c4bce7fecc6d909a
BLAKE2b-256 3e220d59fd5511767bcb12008c77f8fd0ab97910c0a9dd0fa248755b1ee88926

See more details on using hashes here.

File details

Details for the file zope.i18nmessageid-7.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zope.i18nmessageid-7.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1553023184a82fced550da7f3a63cca2f7a7c88803c2fad57f231555e049cb67
MD5 043a0ff97952ae26e0ac41fe5a538ec6
BLAKE2b-256 c7bcda41a45814d26c5e2142b247f502118cdc4497a43199d4bb5d19aed3bf9c

See more details on using hashes here.

File details

Details for the file zope.i18nmessageid-7.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for zope.i18nmessageid-7.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7ee6f542fe3a2df73366383047fee40979d039c550c68881aca49100eac983ee
MD5 f21877475f013497e50fea6b9b557cde
BLAKE2b-256 c457389ac68fca02c615f26b586e570d87bba2b34b8b06842c51f177ded39e95

See more details on using hashes here.

File details

Details for the file zope.i18nmessageid-7.0-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for zope.i18nmessageid-7.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a923757be3603f1ade99386075c923f621f4f808c79626e55ea4ab95eb7d756b
MD5 2fb93a30fc04a49bcaba342d7a0e6c08
BLAKE2b-256 15ca55a8e40937416577f75f360d2f7047683b3c9532f5c67f4f84b0c19c277b

See more details on using hashes here.

File details

Details for the file zope.i18nmessageid-7.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zope.i18nmessageid-7.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 abfe7409744c378dccbc4029fa25275865d1eb7026a0841cd7da34c41f65d1e5
MD5 51a1f5ea3be2910d0374c9acfc147b56
BLAKE2b-256 ecfe5bd477a6096e004a6006a1ee204e725871183575c184bb8b88a9f139ee11

See more details on using hashes here.

File details

Details for the file zope.i18nmessageid-7.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zope.i18nmessageid-7.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 43e315323710ec93068585f18582e98fe3cb4204645f4740bb7d3d00b13ff39c
MD5 5db220a98d6115d12358658e83e335e8
BLAKE2b-256 6d64139c9f27c5ed96ae5d3e9c0727b0056fabd8bee67a731911027c82dd705b

See more details on using hashes here.

File details

Details for the file zope.i18nmessageid-7.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for zope.i18nmessageid-7.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c02fd64f8471a3f86297dbd0321f40facbc570d4e9e1f755a06c3873e8f75e33
MD5 f90b21d296c6bfc6e7c17c844af46e54
BLAKE2b-256 fd1b384cd8b80a07764544e899d78fb6c31aa85cc57119a1c16f799f0621f8c2

See more details on using hashes here.

File details

Details for the file zope.i18nmessageid-7.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zope.i18nmessageid-7.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 257784d44c7365f703323f630cfe3c9534d24d6e1c7df38b3bf7a8c4002fab35
MD5 0965857a26957dea9477bb9fcf2f7802
BLAKE2b-256 59dd5d4d3016e973e695975de57e41d0de596457726dffa64fd167e3ce40dc6d

See more details on using hashes here.

File details

Details for the file zope.i18nmessageid-7.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for zope.i18nmessageid-7.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7448dd9a8a6035987076f5a0447545466ddb251467a00190df804c9ecf450e4b
MD5 7b33987046a21fe52f111dacde02b2dd
BLAKE2b-256 631731b3acd8cc5ef40b0fa172fe58867fbccce44e3f89a6bce94c94f555e76d

See more details on using hashes here.

File details

Details for the file zope.i18nmessageid-7.0-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for zope.i18nmessageid-7.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 7dc121ed4521ccfed78b99ecd71a97a3b0c86834c08be40f78edd1e576e13506
MD5 34f1965a4bd179cab552a43d0a273f9d
BLAKE2b-256 997ca32d428eb837baa44e9a67513b332d913a4d1667512b37c27965bdd3d40a

See more details on using hashes here.

File details

Details for the file zope.i18nmessageid-7.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zope.i18nmessageid-7.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 66fbbd85a2cb1bb319d7a866b9c1a9d92e3a7b4c4b2619dcbff41f291ce49a99
MD5 17d294186b4f3d7b2f3fa52c9230872a
BLAKE2b-256 82e9f29460fc2a73c4a47b554f936389fb9e218674d7b2af2cf56fc64078865f

See more details on using hashes here.

File details

Details for the file zope.i18nmessageid-7.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zope.i18nmessageid-7.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a14d4f8a317daa73700c81aed057ff43f437dd1d90fc146d6b5c7dd9c07eccd6
MD5 8574001b1e3cd30899c8fd48fb1bd0e0
BLAKE2b-256 79bafd6d85fc5c7e071015843b7fcf29943bd156a52cf40739b3244e8e91e15f

See more details on using hashes here.

File details

Details for the file zope.i18nmessageid-7.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for zope.i18nmessageid-7.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 342436c8e7eaa73794e618958364a9ea3a3b17a111c987f8b0925e6fba425121
MD5 f8bace529b2ca5fe725b6b44784b1393
BLAKE2b-256 852754a4c7f86e627ece72ab083327c326a6d9470d926b2fb5d2604f8453c66e

See more details on using hashes here.

File details

Details for the file zope.i18nmessageid-7.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zope.i18nmessageid-7.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fb594f927928b8e10aa97af9d0f523a648ee86c2a7612c4883b50112d87ad400
MD5 53d041708e3be5f3738db2054a6d26c4
BLAKE2b-256 3e7e7937404087cc8eaa75df71f27d9a2475dfc2bd496e3922150f564e7b1038

See more details on using hashes here.

File details

Details for the file zope.i18nmessageid-7.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for zope.i18nmessageid-7.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 eda699adc7176740fb86d77f6d2f1b8a4a8d4ca050a5f7c0f0c202dc41fd3e1b
MD5 d290881efc495bbc2acc79a4ac5685cb
BLAKE2b-256 2aed2531a775a35d5de143f8e95466caa33bebe1b7d6a624f6c69d0506f2cf84

See more details on using hashes here.

Supported by

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