Skip to main content

Zope hookable

Project description

zope.hookable

Latest release Supported Python versions https://github.com/zopefoundation/zope.hookable/actions/workflows/tests.yml/badge.svg Documentation Status https://coveralls.io/repos/github/zopefoundation/zope.hookable/badge.svg?branch=master

This package supports the efficient creation of “hookable” objects, which are callable objects that are meant to be optionally replaced.

The idea is that you create a function that does some default thing and make it hookable. Later, someone can modify what it does by calling its sethook method and changing its implementation. All users of the function, including those that imported it, will see the change.

Documentation is hosted at https://zopehookable.readthedocs.io

Changes

5.2 (2022-09-13)

  • Add support for Python 3.10 and 3.11 (as of 3.11.0rc1).

  • Disable unsafe math optimizations in C code. See pull request 25.

5.1.0 (2021-07-20)

  • Add support for Python 3.9.

  • Create Linux aarch64 wheels.

5.0.1 (2020-03-10)

  • Stop using the setuptools Feature class, allowing this project to be built from source with newer versions of setuptools that remove that functionality.

5.0.0 (2019-11-12)

  • Add support for Python 3.7 and 3.8.

  • Drop support for Python 3.4.

4.2.0 (2017-11-07)

  • Expose the __doc__ (and, where applicable, __bases__ and __dict__) of the hooked object. This lets Sphinx document them. See issue 6.

  • Respect PURE_PYTHON at runtime. At build time, always try to build the C extensions on supported platforms, but allow it to fail. See issue 7.

4.1.0 (2017-07-26)

  • Drop support for Python 2.6, 3.2 and 3.3.

  • Add support for Python 3.5 and 3.6.

4.0.4 (2014-03-19)

  • Add support for Python 3.4.

4.0.3 (2014-03-17)

  • Update boostrap.py to version 2.2.

  • Fix extension compilation on Py3k.

4.0.2 (2012-12-31)

  • Flesh out PyPI Trove classifiers.

4.0.1 (2012-11-21)

4.0.0 (2012-06-04)

  • Add support for PyPy.

  • Add support for continuous integration using tox and jenkins.

  • Add a pure-Python reference implementation.

  • Move doctests to Sphinx documentation.

  • Bring unit test coverage to 100%.

  • Add ‘setup.py docs’ alias (installs Sphinx and dependencies).

  • Add ‘setup.py dev’ alias (runs setup.py develop plus installs nose and coverage).

  • Drop support for Python 2.4 / 2.5.

  • Remove of ‘zope.testing.doctestunit’ in favor of stdlib’s ‘doctest.

  • Add Python 3 support.

3.4.1 (2009-04-05)

  • Update for compatibility with Python 2.6 traceback formats.

  • Use Jython-compatible bootstrap.py.

3.4.0 (2007-07-20)

  • Initial release as a separate project.

Download files

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

Source Distribution

zope.hookable-5.2.tar.gz (24.0 kB view details)

Uploaded Source

Built Distributions

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

zope.hookable-5.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (24.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

zope.hookable-5.2-cp310-cp310-win_amd64.whl (17.2 kB view details)

Uploaded CPython 3.10Windows x86-64

zope.hookable-5.2-cp310-cp310-win32.whl (16.6 kB view details)

Uploaded CPython 3.10Windows x86

zope.hookable-5.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (24.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

zope.hookable-5.2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (29.3 kB view details)

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

zope.hookable-5.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl (28.6 kB view details)

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

zope.hookable-5.2-cp310-cp310-macosx_11_0_x86_64.whl (14.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ x86-64

zope.hookable-5.2-cp39-cp39-win_amd64.whl (17.2 kB view details)

Uploaded CPython 3.9Windows x86-64

zope.hookable-5.2-cp39-cp39-win32.whl (16.6 kB view details)

Uploaded CPython 3.9Windows x86

zope.hookable-5.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (24.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

zope.hookable-5.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (29.1 kB view details)

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

zope.hookable-5.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl (28.4 kB view details)

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

zope.hookable-5.2-cp39-cp39-macosx_10_15_x86_64.whl (14.2 kB view details)

Uploaded CPython 3.9macOS 10.15+ x86-64

zope.hookable-5.2-cp38-cp38-win_amd64.whl (17.2 kB view details)

Uploaded CPython 3.8Windows x86-64

zope.hookable-5.2-cp38-cp38-win32.whl (16.6 kB view details)

Uploaded CPython 3.8Windows x86

zope.hookable-5.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (25.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

zope.hookable-5.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (29.7 kB view details)

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

zope.hookable-5.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl (28.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686manylinux: glibc 2.5+ i686

zope.hookable-5.2-cp38-cp38-macosx_10_15_x86_64.whl (14.2 kB view details)

Uploaded CPython 3.8macOS 10.15+ x86-64

zope.hookable-5.2-cp37-cp37m-win_amd64.whl (17.1 kB view details)

Uploaded CPython 3.7mWindows x86-64

zope.hookable-5.2-cp37-cp37m-win32.whl (16.6 kB view details)

Uploaded CPython 3.7mWindows x86

zope.hookable-5.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (24.6 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

zope.hookable-5.2-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (29.9 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64manylinux: glibc 2.5+ x86-64

zope.hookable-5.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl (29.3 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686manylinux: glibc 2.5+ i686

zope.hookable-5.2-cp37-cp37m-macosx_10_15_x86_64.whl (14.1 kB view details)

Uploaded CPython 3.7mmacOS 10.15+ x86-64

zope.hookable-5.2-cp36-cp36m-win_amd64.whl (17.2 kB view details)

Uploaded CPython 3.6mWindows x86-64

zope.hookable-5.2-cp36-cp36m-win32.whl (16.6 kB view details)

Uploaded CPython 3.6mWindows x86

zope.hookable-5.2-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (24.7 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ ARM64

zope.hookable-5.2-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (29.0 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64manylinux: glibc 2.5+ x86-64

zope.hookable-5.2-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl (28.4 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ i686manylinux: glibc 2.5+ i686

zope.hookable-5.2-cp36-cp36m-macosx_10_14_x86_64.whl (14.1 kB view details)

Uploaded CPython 3.6mmacOS 10.14+ x86-64

zope.hookable-5.2-cp35-cp35m-win_amd64.whl (17.2 kB view details)

Uploaded CPython 3.5mWindows x86-64

zope.hookable-5.2-cp35-cp35m-win32.whl (16.6 kB view details)

Uploaded CPython 3.5mWindows x86

zope.hookable-5.2-cp27-cp27m-win_amd64.whl (15.0 kB view details)

Uploaded CPython 2.7mWindows x86-64

zope.hookable-5.2-cp27-cp27m-win32.whl (15.3 kB view details)

Uploaded CPython 2.7mWindows x86

zope.hookable-5.2-cp27-cp27m-macosx_10_14_x86_64.whl (14.0 kB view details)

Uploaded CPython 2.7mmacOS 10.14+ x86-64

File details

Details for the file zope.hookable-5.2.tar.gz.

File metadata

  • Download URL: zope.hookable-5.2.tar.gz
  • Upload date:
  • Size: 24.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.8.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.13

File hashes

Hashes for zope.hookable-5.2.tar.gz
Algorithm Hash digest
SHA256 4c3018bcf2b39cf5cccf40826f799b4b8c140056db780f96cb0ca332a243bd29
MD5 ce2a681a2c385098faffe3bd2af95f0d
BLAKE2b-256 40d55ed6b312a3a1d66d8e740af301b1cbbf50860d31bc430bd15163de4a50cf

See more details on using hashes here.

File details

Details for the file zope.hookable-5.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zope.hookable-5.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 34e1ff9d76c4d65f87ab859cb68f6b3ed2e9b1337c40568347de910fcf963d8c
MD5 b862e89c3dda37641162d773116d79d7
BLAKE2b-256 6fe349e4cdcb8be897debd38159b7881d9c62c43962ae7e60d3a89c2566563b5

See more details on using hashes here.

File details

Details for the file zope.hookable-5.2-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for zope.hookable-5.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 fabd9152bfb335892a4f980a00e861f31cec09bceffae1e9686189ea1e55141a
MD5 589a82373a8a370e62367d6109a3a7af
BLAKE2b-256 45a94c08ef3afdb39f6d64d1433f0c7e5503be7a1c30531cba82381324810fc2

See more details on using hashes here.

File details

Details for the file zope.hookable-5.2-cp310-cp310-win32.whl.

File metadata

  • Download URL: zope.hookable-5.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 16.6 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.0

File hashes

Hashes for zope.hookable-5.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 d3c0632b51dc0f0743054e4ae22672439774b756b632244e745f05bbc4345771
MD5 6ce6adc80bf3bebf1b7bb1793959acd2
BLAKE2b-256 ffe66c2ef2652a9f4faac41333f1e58d457d9380fd27ade9ae7782437e693a06

See more details on using hashes here.

File details

Details for the file zope.hookable-5.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zope.hookable-5.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2151318d6c9167bdbf9def70c56807488ae95cc2741ec2461d3b30e6ecdf6865
MD5 b974ae847f105882a01d8e90c19e20df
BLAKE2b-256 07cd01cf06a29165ed9477553c1a9b2a004c28a043496a41a606eca014a19528

See more details on using hashes here.

File details

Details for the file zope.hookable-5.2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for zope.hookable-5.2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 22d47fcb3769bcdf071289a4e0ae576a00b65ff890c51995d7b2f8b68a9fa86c
MD5 0485fd7d2ad236fafd76a1ce150cd7e0
BLAKE2b-256 332316898a4e5ababcd8122b0df4c5af2c8c3219b6288397031c914aa6127863

See more details on using hashes here.

File details

Details for the file zope.hookable-5.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for zope.hookable-5.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 16d7ac04fe3bb7e8cfaf5303694ce861af9cecd84e559a1a82d2c7037fc489bc
MD5 0e9ae019229282830eca79b1e7cb904b
BLAKE2b-256 cc894adfced8f0e5f1c403b2a9ddd4435091b915e1047c4abef2db7808bb1ae8

See more details on using hashes here.

File details

Details for the file zope.hookable-5.2-cp310-cp310-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for zope.hookable-5.2-cp310-cp310-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 7dab7c76d0bb151eb21198c7edef834d3bf0812bc40e0183deea527531ae512b
MD5 3c1710bcabbde2cad900516753ddc9bb
BLAKE2b-256 cca6fbd28e9215d60360469ffaf3f59ecc4f570f9aaa388900023da43c370d4c

See more details on using hashes here.

File details

Details for the file zope.hookable-5.2-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: zope.hookable-5.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 17.2 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.0

File hashes

Hashes for zope.hookable-5.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 fdd147669c38ea64a3b745a01a217ac21a76b69777ca165fd2953d1c675b1779
MD5 ab77bf06db2c0767f672ec2250f1f267
BLAKE2b-256 9837beafdbdb0ef72e341f9c36a63ada62d0b67fa7806a0706cfbd0faa8992ed

See more details on using hashes here.

File details

Details for the file zope.hookable-5.2-cp39-cp39-win32.whl.

File metadata

  • Download URL: zope.hookable-5.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 16.6 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.0

File hashes

Hashes for zope.hookable-5.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 3a0f478514051788ff6e070086be44a3caee5962661f422c74562353770995d6
MD5 cf2bc7a0eaf8d653f2b08e730c0565d6
BLAKE2b-256 7c88ccce4d27ba55265240227f18677a579ca8b6759626231dcbb5a3e98e153c

See more details on using hashes here.

File details

Details for the file zope.hookable-5.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zope.hookable-5.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5e5a8412b91352b0adf2120492ffd5380452632ccd1cd625c937898d5d171d5f
MD5 117e4555c40e8334068cfcd5ced59203
BLAKE2b-256 3741db1676bac74faf4f7468b3285c3d89917ea57a3386d7817cee85e122d500

See more details on using hashes here.

File details

Details for the file zope.hookable-5.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for zope.hookable-5.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 5496d75a533cdac2dacbce4a3e694dda4b4cbc45d225c1ad914526c8961aa14b
MD5 416358abce41b5944542a514fecf832a
BLAKE2b-256 315228f467244e6eef95b3de13bc39d814334a704b648ae6c84f32d45e14bace

See more details on using hashes here.

File details

Details for the file zope.hookable-5.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for zope.hookable-5.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 802c5222a6f09d01fa5d999147c3e4ef74d4f8c33fb376a85990c211b9c52e49
MD5 25419afc2f6b864072f503f1a0c365c3
BLAKE2b-256 756aa57ae0a6733427515c1525293e0e0b113a19209c2117b093e4e71bab359b

See more details on using hashes here.

File details

Details for the file zope.hookable-5.2-cp39-cp39-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for zope.hookable-5.2-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 00615d623295aaaad569a2e77b9659359a0c8cffd8077aaa9c114b55c3c78440
MD5 aa02125db3a03fc6677d8ee7ca8800c9
BLAKE2b-256 7d01a5557ad72bb51cba68848a42789a6277c7c092f65f4858acc0539a5826c4

See more details on using hashes here.

File details

Details for the file zope.hookable-5.2-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: zope.hookable-5.2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 17.2 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.8.0

File hashes

Hashes for zope.hookable-5.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 3c6043bc00e3a49e32a3957207ce07d381f6d343b4b6ea243ccb4314b56a55d4
MD5 923066cac54dcebb2004e744fbb86e48
BLAKE2b-256 0e0fa2a2f486fddb0779f743d9d17d64a82d24fc4aaff476099c60c1ceade391

See more details on using hashes here.

File details

Details for the file zope.hookable-5.2-cp38-cp38-win32.whl.

File metadata

  • Download URL: zope.hookable-5.2-cp38-cp38-win32.whl
  • Upload date:
  • Size: 16.6 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.8.0

File hashes

Hashes for zope.hookable-5.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 b3e7a4661ddabb933d80c560099f4fca6db4b58a54a97dcaccef90bf6b7bc431
MD5 a222957456144563d14ea1867c5d1efc
BLAKE2b-256 ee366c4b63a8122cc01dc7b25b208c6312c8bd13080628a24686648d400efa24

See more details on using hashes here.

File details

Details for the file zope.hookable-5.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zope.hookable-5.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8abc311ebed511bbe46d95c339e7ec853275e377635b16ea10b6148890cf9b7e
MD5 7d616044698a716f28c3d59160779700
BLAKE2b-256 3703713bb82e0c29d2d38d4fdd3c513674ccfa88a9316e6d644718f20abcc67d

See more details on using hashes here.

File details

Details for the file zope.hookable-5.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for zope.hookable-5.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 48287c32e274672a6d3997415e6b5bea43808029b07255647e93746f3c5c33b7
MD5 b67d551cdbbb53209941e801216447f8
BLAKE2b-256 2e68e8bfecf2590f17b8bc8b141c3ba2b850c326b8fbabd37794623c64421512

See more details on using hashes here.

File details

Details for the file zope.hookable-5.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for zope.hookable-5.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 7aa7776c642cad6ea655a8c11ca8b0daa0e5513b5b91dd55b2a3512db259117f
MD5 9e42179478f43377abb8379ac1f032df
BLAKE2b-256 33377894923b378ef249229a85635828b65d9d4c38634719f1c6d70dcdb3800f

See more details on using hashes here.

File details

Details for the file zope.hookable-5.2-cp38-cp38-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for zope.hookable-5.2-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 71f00eebcd23aa26231f9130144fb146459bb4b665498c84cd0c332d45491cf5
MD5 80d4095af7b357a8a233cf0f7ce1c063
BLAKE2b-256 34970db40f758ec2ef1b503eda146ad643a71fe55eff2d4d8a4047ab18bd7a7e

See more details on using hashes here.

File details

Details for the file zope.hookable-5.2-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: zope.hookable-5.2-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 17.1 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.7.5

File hashes

Hashes for zope.hookable-5.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 e3a48050d820722907d9fad9f6e9e30f928e8a6d724aa173abd521dec8964e05
MD5 7572a4f804c69c45dfe27fd75805d457
BLAKE2b-256 ee857de7550b35b0af674e8768dcf8fc939342c9a05fa54f58fd9ea8335eec8b

See more details on using hashes here.

File details

Details for the file zope.hookable-5.2-cp37-cp37m-win32.whl.

File metadata

  • Download URL: zope.hookable-5.2-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 16.6 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.7.5

File hashes

Hashes for zope.hookable-5.2-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 b0c1c63664ee7389db4e437e24fa6025f334593b2f63ed47e4ae6b1e82257366
MD5 edf99de1c4e84e8229c4b5d162607370
BLAKE2b-256 e5b8ebbcee7ad186805c1bfdd6810192423f532790285eecc16940fa59e9e1d1

See more details on using hashes here.

File details

Details for the file zope.hookable-5.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zope.hookable-5.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ae6f86f1f0dcd999eaf008b4524314624e60aa793c31454df6f86b092494ab60
MD5 4cf03a2934b25ea007514d8503c7f3fa
BLAKE2b-256 93e7bff4c717fc128ea5f7a03c64f81ffd9716700f53a1e1108b659472ddb1b9

See more details on using hashes here.

File details

Details for the file zope.hookable-5.2-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for zope.hookable-5.2-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 73d3161798337f7416444d3265d6939e2abd3d0f4bf30dd7116bab04707c1cff
MD5 903f7946f18fb369bad309438be7faf9
BLAKE2b-256 480ec073c3f20d3c822cd6e988b4784001f110b584c64c933f315fc8caf7454d

See more details on using hashes here.

File details

Details for the file zope.hookable-5.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for zope.hookable-5.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 eb08b8f23a75af9a9003d8990247fd2fdac7e486dafae32d2a147e805545235b
MD5 80076ebbfedf0bf3379cee6f70e5b9f8
BLAKE2b-256 4cac45fee0eb407a322e389ae8a4c0ad9b02c2d39d96fc2d22c9c2bbb1d0e015

See more details on using hashes here.

File details

Details for the file zope.hookable-5.2-cp37-cp37m-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for zope.hookable-5.2-cp37-cp37m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 83c42469b5adb0240d61619076d0eb9a65da5e6acb8ff27dd56c7073321582a7
MD5 09ff3faa62d1ca81a7c5ae0e841724ce
BLAKE2b-256 30a033cc7f47a052ddcfe34693c63c0b3ea2d802f681b139b180610400e42295

See more details on using hashes here.

File details

Details for the file zope.hookable-5.2-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: zope.hookable-5.2-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 17.2 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.3 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.12 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.8

File hashes

Hashes for zope.hookable-5.2-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 120c9a4f10db108f93edc7195c2efd15bccf3dda5b7ca45d4af16bf7c04381ad
MD5 f341b7ab67f3a0a485a5df06ac50dde7
BLAKE2b-256 aa2e13b306a5108f4cd1493aa593ae68f7d4e66d7c5b7b31f4ac5069348499da

See more details on using hashes here.

File details

Details for the file zope.hookable-5.2-cp36-cp36m-win32.whl.

File metadata

  • Download URL: zope.hookable-5.2-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 16.6 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.3 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.12 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.8

File hashes

Hashes for zope.hookable-5.2-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 e45964866a1c59c2660573730ae2409c6168873c412b57cec44b221b374b7c0f
MD5 21e6ee012beeef91d1a027ff9c0e4371
BLAKE2b-256 46c442adee56c3d6f84015694860cbe3e921cbbcdece5e3b4736826fd54a3f17

See more details on using hashes here.

File details

Details for the file zope.hookable-5.2-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for zope.hookable-5.2-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 883338bfd1b14e56b13c406fb12ce793ade19460aeec7b02cd895351a08468e7
MD5 78adbc7e7356b66403a7bf931f267913
BLAKE2b-256 0c893f9ee12b450aee034b1e13517c07d63c3cbbf6e3b762442a0b532890363a

See more details on using hashes here.

File details

Details for the file zope.hookable-5.2-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for zope.hookable-5.2-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 3b3c9d5f419704f4d8e1327d4061c12a147a43025846bce0d4a6fc01447aeba9
MD5 0bb5d506d6fb4c48fb12d580ee707f17
BLAKE2b-256 0c754a0eefeb4d590bccf34b705d5bd875e88a0a379cd1bebe8e9806fd225251

See more details on using hashes here.

File details

Details for the file zope.hookable-5.2-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for zope.hookable-5.2-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 9f31beced1c28288286197e9f95173314ab4dd88bdc7a1d6aa7f3e45cf743942
MD5 204de233e13f00081eb9afb5984f6514
BLAKE2b-256 90f05fd49d5b783b5ead623a5345b37f89e3af42f041c4f35bc068d770289beb

See more details on using hashes here.

File details

Details for the file zope.hookable-5.2-cp36-cp36m-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: zope.hookable-5.2-cp36-cp36m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 14.1 kB
  • Tags: CPython 3.6m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.3 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.12 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.15

File hashes

Hashes for zope.hookable-5.2-cp36-cp36m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 a50320c718610a48cd6f1ebd1c2bd65aeb8501b0a929bbdc88a898a19a744d4c
MD5 ead99d4315b0005f96ad61aca6dd9c76
BLAKE2b-256 c18d08ae2ec3625b4ef671148148588fedd956495a27d976d19a8d99d8f714e3

See more details on using hashes here.

File details

Details for the file zope.hookable-5.2-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: zope.hookable-5.2-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 17.2 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.8.2 requests/2.25.1 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.64.1 CPython/3.5.4

File hashes

Hashes for zope.hookable-5.2-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 66d80ecc62fb9f1ad21e9efa1571d18d486ab772ffd674abaa39076ad43837e4
MD5 155f5fb49d58e9ff15f2efa87326fca5
BLAKE2b-256 341edaa17b0271d7347de37e923046c6b43b2c9d99b9ec48d78b9c1b0d12cbf9

See more details on using hashes here.

File details

Details for the file zope.hookable-5.2-cp35-cp35m-win32.whl.

File metadata

  • Download URL: zope.hookable-5.2-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 16.6 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.8.2 requests/2.25.1 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.64.1 CPython/3.5.4

File hashes

Hashes for zope.hookable-5.2-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 df68bd26bef4a338c062a8f6a0eca8d27582b212aa74ae58714d410f348cb314
MD5 cc3adb58a0d51957e3e643b3b03b6d32
BLAKE2b-256 7398575da4079518743f213159604d68ff21fb10e977e89e094e1df4a0b52869

See more details on using hashes here.

File details

Details for the file zope.hookable-5.2-cp27-cp27m-win_amd64.whl.

File metadata

  • Download URL: zope.hookable-5.2-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 15.0 kB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.8.3 requests/2.27.1 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.64.1 CPython/2.7.17

File hashes

Hashes for zope.hookable-5.2-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 af4ed40fd81ef292f0c196f40b59e65b3d19e48e40ccb1490e73a10125b31577
MD5 f6db1dfac588dbf6160a231649c8b8ad
BLAKE2b-256 d73dc561a0875a89f167b8a6e4813ba33ebb9513497760ba36669f98fb26cc5b

See more details on using hashes here.

File details

Details for the file zope.hookable-5.2-cp27-cp27m-win32.whl.

File metadata

  • Download URL: zope.hookable-5.2-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 15.3 kB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.8.3 requests/2.27.1 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.64.1 CPython/2.7.17

File hashes

Hashes for zope.hookable-5.2-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 74d425c708d690f0504711c5ecbcd2573cea4c355c42d2081a85c3bb76db7d6a
MD5 73a7d32735cf71904d9addb0540ebf94
BLAKE2b-256 41720c4cd1adc80d06f3e975a3475380352da4830ea21ac840b86ea6a0c9b3ce

See more details on using hashes here.

File details

Details for the file zope.hookable-5.2-cp27-cp27m-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: zope.hookable-5.2-cp27-cp27m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 14.0 kB
  • Tags: CPython 2.7m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.8.3 requests/2.27.1 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.64.1 CPython/2.7.18

File hashes

Hashes for zope.hookable-5.2-cp27-cp27m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 68bbd32e010b42db5d9878b98b84222f474c0641a42bd8b30bc3deffd05111c3
MD5 4db468053846cffcec474b622c14a58d
BLAKE2b-256 74f6737686f0baad2fa13a2c31d71119ffeb91a54ee5bb502d1f9baefffa0184

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