Skip to main content

Scalable persistent object containers

Project description

BTrees: scalable persistent components

https://travis-ci.org/zopefoundation/BTrees.svg?branch=master https://ci.appveyor.com/api/projects/status/github/zopefoundation/BTrees?branch=master&svg=true https://coveralls.io/repos/github/zopefoundation/BTrees/badge.svg?branch=master Current version on PyPI Supported Python versions

This package contains a set of persistent object containers built around a modified BTree data structure. The trees are optimized for use inside ZODB’s “optimistic concurrency” paradigm, and include explicit resolution of conflicts detected by that mechanism.

Please see the Sphinx documentation for further information.

BTrees Changelog

4.7.0 (2020-03-17)

  • Add unsigned variants of the trees. These use the initial “U” for 32-bit data and “Q” for 64-bit data (for “quad”, which is similar to what the C printf function uses and the Python struct module uses).

  • Fix the value for BTrees.OIBTree.using64bits when using the pure Python implementation (PyPy and when PURE_PYTHON is in the environment).

  • Make the errors that are raised when values are out of range more consistent between Python 2 and Python 3 and between 32-bit and 64-bit variants.

  • Make the Bucket types consistent with the BTree types as updated in versions 4.3.2: Querying for keys with default comparisons or that are not integers no longer raises TypeError.

4.6.1 (2019-11-07)

  • Add support for Python 3.8.

4.6.0 (2019-07-30)

  • Drop support for Python 3.4.

  • Fix tests against persistent 4.4.

  • Stop accidentally installing the ‘terryfy’ package in macOS wheels. See issue 98.

  • Fix segmentation fault in bucket_repr(). See issue 106.

4.5.1 (2018-08-09)

  • Produce binary wheels for Python 3.7.

  • Use pyproject.toml to specify build dependencies. This requires pip 18 or later to build from source.

4.5.0 (2018-04-23)

4.4.1 (2017-01-24)

Fixed a packaging bug that caused extra files to be included (some of which caused problems in some platforms).

4.4.0 (2017-01-11)

  • Allow None as a special key (sorted smaller than all others).

    This is a bit of a return to BTrees 3 behavior in that Nones are allowed as keys again. Other objects with default ordering are still not allowed as keys.

4.3.2 (2017-01-05)

  • Make the CPython implementation consistent with the pure-Python implementation and only check object keys for default comparison when setting keys. In Python 2 this makes it possible to remove keys that were added using a less restrictive version of BTrees. (In Python 3 keys that are unorderable still cannot be removed.) Likewise, all versions can unpickle trees that already had such keys. See: https://github.com/zopefoundation/BTrees/issues/53 and https://github.com/zopefoundation/BTrees/issues/51

  • Make the Python implementation consistent with the CPython implementation and check object key identity before checking equality and performing comparisons. This can allow fixing trees that have keys that now have broken comparison functions. See https://github.com/zopefoundation/BTrees/issues/50

  • Make the CPython implementation consistent with the pure-Python implementation and no longer raise TypeError for an object key (in object-keyed trees) with default comparison on __getitem__, get or in operations. Instead, the results will be a KeyError, the default value, and False, respectively. Previously, CPython raised a TypeError in those cases, while the Python implementation behaved as specified.

    Likewise, non-integer keys in integer-keyed trees will raise KeyError, return the default and return False, respectively, in both implementations. Previously, pure-Python raised a KeyError, returned the default, and raised a TypeError, while CPython raised TypeError in all three cases.

4.3.1 (2016-05-16)

  • Packaging: fix password used to automate wheel creation on Travis.

4.3.0 (2016-05-10)

  • Fix unexpected OverflowError when passing 64bit values to long keys / values on Win64. See: https://github.com/zopefoundation/BTrees/issues/32

  • When testing PURE_PYTHON environments under tox, avoid poisoning the user’s global wheel cache.

  • Ensure that the pure-Python implementation, used on PyPy and when a C compiler isn’t available for CPython, pickles identically to the C version. Unpickling will choose the best available implementation. This change prevents interoperability problems and database corruption if both implementations are in use. While it is no longer possible to pickle a Python implementation and have it unpickle to the Python implementation if the C implementation is available, existing Python pickles will still unpickle to the Python implementation (until pickled again). See: https://github.com/zopefoundation/BTrees/issues/19

  • Avoid creating invalid objects when unpickling empty BTrees in a pure-Python environment.

  • Drop support for Python 2.6 and 3.2.

4.2.0 (2015-11-13)

  • Add support for Python 3.5.

4.1.4 (2015-06-02)

  • Ensure that pure-Python Bucket and Set objects have a human readable __repr__ like the C versions.

4.1.3 (2015-05-19)

4.1.2 (2015-04-07)

4.1.1 (2014-12-27)

  • Accomodate long values in pure-Python OLBTrees.

4.1.0 (2014-12-26)

  • Add support for PyPy and PyPy3.

  • Add support for Python 3.4.

  • BTree subclasses can define max_leaf_size or max_internal_size to control maximum sizes for Bucket/Set and BTree/TreeSet nodes.

  • Detect integer overflow on 32-bit machines correctly under Python 3.

  • Update pure-Python and C trees / sets to accept explicit None to indicate max / min value for minKey, maxKey. (PR #3)

  • Update pure-Python trees / sets to accept explicit None to indicate open ranges for keys, values, items. (PR #3)

4.0.8 (2013-05-25)

  • Fix value-based comparison for objects under Py3k: addresses invalid merges of [OLI]OBTrees/OBuckets.

  • Ensure that pure-Python implementation of OOBTree.byValue matches semantics (reversed-sort) of C implementation.

4.0.7 (2013-05-22)

  • Issue #2: compilation error on 32-bit mode of OS/X.

  • Test PURE_PYTHON environment variable support: if set, the C extensions will not be built, imported, or tested.

4.0.6 (2013-05-14)

  • Changed the ZODB extra to require only the real ZODB package, rather than the ZODB3 metapackage: depending on the version used, the metapackage could pull in stale versions of this package and persistent.

  • Fixed Python version check in setup.py.

4.0.5 (2013-01-15)

  • Fit the repr of bucket objects, which could contain garbage characters.

4.0.4 (2013-01-12)

  • Emulate the (private) iterators used by the C extension modules from pure Python. This change is “cosmetic” only: it prevents the ZCML zope.app.security:permission.zcml from failing. The emulated classes are not functional, and should be considered implementation details.

  • Accomodate buildout to the fact that we no longer bundle a copy of ‘persistent.h’.

  • Fix test failures on Windows: no longer rely on overflows from sys.maxint.

4.0.3 (2013-01-04)

  • Added setup_requires==['persistent'].

4.0.2 (2013-01-03)

  • Updated Trove classifiers.

  • Added explicit support for Python 3.2, Python 3.3, and PyPy. Note that the C extensions are not (yet) available on PyPy.

  • Python reference implementations now tested separately from the C verions on all platforms.

  • 100% unit test coverage.

4.0.1 (2012-10-21)

  • Provide local fallback for persistent C header inclusion if the persistent distribution isn’t installed. This makes the winbot happy.

4.0.0 (2012-10-20)

Platform Changes

  • Dropped support for Python < 2.6.

  • Factored BTrees as a separate distribution.

Testing Changes

  • All covered platforms tested under tox.

  • Added support for continuous integration using tox and jenkins.

  • Added setup.py dev alias (installs nose and coverage).

  • Dropped dependency on zope.testing / zope.testrunner: tests now run with setup.py test.

Documentation Changes

  • Added API reference, generated via Spinx’ autodoc.

  • Added Sphinx documentation based on ZODB Guide (snippets are exercised via ‘tox’).

  • Added setup.py docs alias (installs Sphinx and repoze.sphinx.autointerface).

Download files

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

Source Distribution

BTrees-4.7.0.tar.gz (173.5 kB view details)

Uploaded Source

Built Distributions

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

BTrees-4.7.0-cp38-cp38-win_amd64.whl (914.9 kB view details)

Uploaded CPython 3.8Windows x86-64

BTrees-4.7.0-cp38-cp38-win32.whl (763.0 kB view details)

Uploaded CPython 3.8Windows x86

BTrees-4.7.0-cp38-cp38-manylinux2010_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

BTrees-4.7.0-cp38-cp38-manylinux2010_i686.whl (2.7 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

BTrees-4.7.0-cp38-cp38-manylinux1_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.8

BTrees-4.7.0-cp38-cp38-manylinux1_i686.whl (2.7 MB view details)

Uploaded CPython 3.8

BTrees-4.7.0-cp38-cp38-macosx_10_15_x86_64.whl (801.2 kB view details)

Uploaded CPython 3.8macOS 10.15+ x86-64

BTrees-4.7.0-cp38-cp38-macosx_10_9_x86_64.whl (878.4 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

BTrees-4.7.0-cp37-cp37m-win_amd64.whl (909.9 kB view details)

Uploaded CPython 3.7mWindows x86-64

BTrees-4.7.0-cp37-cp37m-win32.whl (760.0 kB view details)

Uploaded CPython 3.7mWindows x86

BTrees-4.7.0-cp37-cp37m-manylinux2010_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

BTrees-4.7.0-cp37-cp37m-manylinux2010_i686.whl (2.5 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686

BTrees-4.7.0-cp37-cp37m-manylinux1_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.7m

BTrees-4.7.0-cp37-cp37m-manylinux1_i686.whl (2.5 MB view details)

Uploaded CPython 3.7m

BTrees-4.7.0-cp37-cp37m-macosx_10_9_x86_64.whl (868.2 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

BTrees-4.7.0-cp36-cp36m-win_amd64.whl (909.7 kB view details)

Uploaded CPython 3.6mWindows x86-64

BTrees-4.7.0-cp36-cp36m-win32.whl (759.6 kB view details)

Uploaded CPython 3.6mWindows x86

BTrees-4.7.0-cp36-cp36m-manylinux2010_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64

BTrees-4.7.0-cp36-cp36m-manylinux2010_i686.whl (2.5 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ i686

BTrees-4.7.0-cp36-cp36m-manylinux1_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.6m

BTrees-4.7.0-cp36-cp36m-manylinux1_i686.whl (2.5 MB view details)

Uploaded CPython 3.6m

BTrees-4.7.0-cp36-cp36m-macosx_10_6_intel.whl (1.6 MB view details)

Uploaded CPython 3.6mmacOS 10.6+ Intel (x86-64, i386)

BTrees-4.7.0-cp35-cp35m-win_amd64.whl (909.6 kB view details)

Uploaded CPython 3.5mWindows x86-64

BTrees-4.7.0-cp35-cp35m-win32.whl (759.6 kB view details)

Uploaded CPython 3.5mWindows x86

BTrees-4.7.0-cp35-cp35m-manylinux2010_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ x86-64

BTrees-4.7.0-cp35-cp35m-manylinux2010_i686.whl (2.5 MB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ i686

BTrees-4.7.0-cp35-cp35m-manylinux1_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.5m

BTrees-4.7.0-cp35-cp35m-manylinux1_i686.whl (2.5 MB view details)

Uploaded CPython 3.5m

BTrees-4.7.0-cp35-cp35m-macosx_10_6_intel.whl (1.6 MB view details)

Uploaded CPython 3.5mmacOS 10.6+ Intel (x86-64, i386)

BTrees-4.7.0-cp27-cp27mu-manylinux2010_x86_64.whl (2.9 MB view details)

Uploaded CPython 2.7mumanylinux: glibc 2.12+ x86-64

BTrees-4.7.0-cp27-cp27mu-manylinux2010_i686.whl (2.4 MB view details)

Uploaded CPython 2.7mumanylinux: glibc 2.12+ i686

BTrees-4.7.0-cp27-cp27mu-manylinux1_x86_64.whl (2.9 MB view details)

Uploaded CPython 2.7mu

BTrees-4.7.0-cp27-cp27mu-manylinux1_i686.whl (2.4 MB view details)

Uploaded CPython 2.7mu

BTrees-4.7.0-cp27-cp27m-win_amd64.whl (860.9 kB view details)

Uploaded CPython 2.7mWindows x86-64

BTrees-4.7.0-cp27-cp27m-win32.whl (740.5 kB view details)

Uploaded CPython 2.7mWindows x86

BTrees-4.7.0-cp27-cp27m-manylinux2010_x86_64.whl (2.9 MB view details)

Uploaded CPython 2.7mmanylinux: glibc 2.12+ x86-64

BTrees-4.7.0-cp27-cp27m-manylinux2010_i686.whl (2.4 MB view details)

Uploaded CPython 2.7mmanylinux: glibc 2.12+ i686

BTrees-4.7.0-cp27-cp27m-manylinux1_x86_64.whl (2.9 MB view details)

Uploaded CPython 2.7m

BTrees-4.7.0-cp27-cp27m-manylinux1_i686.whl (2.4 MB view details)

Uploaded CPython 2.7m

BTrees-4.7.0-cp27-cp27m-macosx_10_9_x86_64.whl (871.7 kB view details)

Uploaded CPython 2.7mmacOS 10.9+ x86-64

File details

Details for the file BTrees-4.7.0.tar.gz.

File metadata

  • Download URL: BTrees-4.7.0.tar.gz
  • Upload date:
  • Size: 173.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.0.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.8.2

File hashes

Hashes for BTrees-4.7.0.tar.gz
Algorithm Hash digest
SHA256 ea817f8368588dd7a7c07a54169497845dd67f094e8da644715bebaab5fd726d
MD5 d5f66b94ba54902d387d070934e75223
BLAKE2b-256 58d52335d466e4dc1ba3299555898488cf922a88aade7bcd6ff6f5616e29acdf

See more details on using hashes here.

File details

Details for the file BTrees-4.7.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: BTrees-4.7.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 914.9 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.8.0

File hashes

Hashes for BTrees-4.7.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 276999256c7967551bc01c367fcb9fa134c8e9fa60bdb46541bd863d49cf5fd2
MD5 d64a49db51459077125ddc5305a31b8a
BLAKE2b-256 91c79cfbfffd5f5e078d8236b5de6cf799bb76989053a77d5169ddab58acfed7

See more details on using hashes here.

File details

Details for the file BTrees-4.7.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: BTrees-4.7.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 763.0 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.8.0

File hashes

Hashes for BTrees-4.7.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 30203e687359f0c15a63041edd8cfae4745cb68ed412bc450b4635d82963b34d
MD5 783d7e358f4861d92e1d6c76b3eca054
BLAKE2b-256 c55033b17ca9e4539eb392fc89b6fb4c77473456b27f65aa664393a9fd4bdb11

See more details on using hashes here.

File details

Details for the file BTrees-4.7.0-cp38-cp38-manylinux2010_x86_64.whl.

File metadata

  • Download URL: BTrees-4.7.0-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/2.7.15

File hashes

Hashes for BTrees-4.7.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 fa09c3d37a29cbb42808d203804b0d8fc6a1f9c308113d766d9ea77c72b43030
MD5 c6dcfb566385b1837fa205a27d576c34
BLAKE2b-256 b23a4d6bbedde50ac67b44fc234b51447d23d40bf2d4a4f590de7441e8920f7a

See more details on using hashes here.

File details

Details for the file BTrees-4.7.0-cp38-cp38-manylinux2010_i686.whl.

File metadata

  • Download URL: BTrees-4.7.0-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/2.7.15

File hashes

Hashes for BTrees-4.7.0-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f15d064b77031ca432a6596b1840748e497ec2987cf3436905da1844bb8ddcd4
MD5 f7119d2c0180907a5075bac873a56eaa
BLAKE2b-256 b01144702450d15a7664d6a757c01627991eb961681e8f478942ae551db3f014

See more details on using hashes here.

File details

Details for the file BTrees-4.7.0-cp38-cp38-manylinux1_x86_64.whl.

File metadata

  • Download URL: BTrees-4.7.0-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/2.7.15

File hashes

Hashes for BTrees-4.7.0-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b79beadcc554153fdc7b71a056707e42d39df10fc1db83c6138fbfdac1a59c97
MD5 2ce2bfa2cc8febf390891984fa64c104
BLAKE2b-256 515afc327061eedf47fbc8b6e5ee2b4bfe429324840c845304eb3014831fb7b3

See more details on using hashes here.

File details

Details for the file BTrees-4.7.0-cp38-cp38-manylinux1_i686.whl.

File metadata

  • Download URL: BTrees-4.7.0-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/2.7.15

File hashes

Hashes for BTrees-4.7.0-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 cb4ddcf21c1c0272d8a8f6b8e173e6983c2c5367eb793ce0c78aa0bfcce75ec5
MD5 efe2218adbaf4900a1810ad9a7054de9
BLAKE2b-256 59b8de82afe3e425ef8a49324f9361e707d77bc2bcde2c7c80c4fc1230ece5c1

See more details on using hashes here.

File details

Details for the file BTrees-4.7.0-cp38-cp38-macosx_10_15_x86_64.whl.

File metadata

  • Download URL: BTrees-4.7.0-cp38-cp38-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 801.2 kB
  • Tags: CPython 3.8, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.0.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.8.2

File hashes

Hashes for BTrees-4.7.0-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 73ca3d46fe3282b1d3cb2d1b62c6688b86de2b078548af6bf77d5d250d26a157
MD5 148f6b0c47dbf5b8a6fa22e6c3d57ba1
BLAKE2b-256 f7614b4fce3809cb7173579d114311c06c48173cc1a70be65f2c823b21b1d554

See more details on using hashes here.

File details

Details for the file BTrees-4.7.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: BTrees-4.7.0-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 878.4 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/2.7.10

File hashes

Hashes for BTrees-4.7.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5a7f57bc04698f0d660623f245dd81a3638a40eb2a846e994abc1103e76cc0cd
MD5 99aa1a1b0da48b537bdf2b82af57ee46
BLAKE2b-256 4de1708cc9faf71e954458d7d65771f4b7bd553aee4a68e6a04d4f99722e9de7

See more details on using hashes here.

File details

Details for the file BTrees-4.7.0-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: BTrees-4.7.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 909.9 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.7.5

File hashes

Hashes for BTrees-4.7.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 53e7fb9339a7966677238ad5ff6c7feaf33a8b9b3f81f955e12de9273deaa8f9
MD5 79d874fcb382709879b8268a2fe98c7b
BLAKE2b-256 6f0710f48c45360c738ddd59e2d8df9be192f9f1faee0df8f32adecaf8a8e6e1

See more details on using hashes here.

File details

Details for the file BTrees-4.7.0-cp37-cp37m-win32.whl.

File metadata

  • Download URL: BTrees-4.7.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 760.0 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.7.5

File hashes

Hashes for BTrees-4.7.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 e6270af1137f7dddcdeda86607ccdb304399113ca8ac160b9eef530949fa1ed9
MD5 2d7bba85f68a023e7cf7834a9fdea4ce
BLAKE2b-256 633e37b2b150f59aa876f01704066b9e0966bf8c6bf90c29b9820b6a2bb17722

See more details on using hashes here.

File details

Details for the file BTrees-4.7.0-cp37-cp37m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: BTrees-4.7.0-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/2.7.15

File hashes

Hashes for BTrees-4.7.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e1ef2c0c5d5ab6a970517788f7db86a95ebd1c51897309cbe2a73699dbc4730d
MD5 78a89d191c27149e0e6a8961ebdb891c
BLAKE2b-256 76e8ead38126fe1139c4e625c5580f018fea2d806984348e1851d8105c5cccd2

See more details on using hashes here.

File details

Details for the file BTrees-4.7.0-cp37-cp37m-manylinux2010_i686.whl.

File metadata

  • Download URL: BTrees-4.7.0-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/2.7.15

File hashes

Hashes for BTrees-4.7.0-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 39fd4404f9135320d3fb4c7893c4db8a26e15dfb5a3d62bc054e699107876706
MD5 bc067ab61d5fba55c3b42428d11a9aec
BLAKE2b-256 4e00f96051b933e2a6e9bcc6705b3144ab53840fa00e812c5e693c056c2ad253

See more details on using hashes here.

File details

Details for the file BTrees-4.7.0-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: BTrees-4.7.0-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/2.7.15

File hashes

Hashes for BTrees-4.7.0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 29c3c517d32ba72acbc851b77f3335dd32a8c8d451db1bae53d6141f1ac90b90
MD5 e040046c495c67103b1978b90206b5e0
BLAKE2b-256 7907243a01bae94e3a0f7e149f920e165514f1e9e1adad8bd659d1262720e770

See more details on using hashes here.

File details

Details for the file BTrees-4.7.0-cp37-cp37m-manylinux1_i686.whl.

File metadata

  • Download URL: BTrees-4.7.0-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/2.7.15

File hashes

Hashes for BTrees-4.7.0-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 8fbb6ceb4932a418435a4ed50ea88a4688c78256ba107ae5f4806b7ae0827acd
MD5 8fb24249fd78b58dd507602ceb1ea002
BLAKE2b-256 70d9538f5ff84b7ff2a91060307660562e799574bebe205bd00176ae8d7d015a

See more details on using hashes here.

File details

Details for the file BTrees-4.7.0-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: BTrees-4.7.0-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 868.2 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/2.7.10

File hashes

Hashes for BTrees-4.7.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 db9cf998e7c2304a7d06c33412af7184368f3c2abf75e077208879316516724a
MD5 92b80bc56880260486521c0f2d0b7d07
BLAKE2b-256 cab627fb0d00108c0429766ea4dda0545d60c474eb71102b60942ef381965b54

See more details on using hashes here.

File details

Details for the file BTrees-4.7.0-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: BTrees-4.7.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 909.7 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/40.6.2 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.6.8

File hashes

Hashes for BTrees-4.7.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 3f77b9b1be0bf0d36fd8f2494b37833d3c03fb6a2ea40047298a773ddbe51c6f
MD5 36051ac926fc6ca3e0e6c09abc191222
BLAKE2b-256 4b21d5772568d9e385eacfaa3c6740dd85f162c097e6eaeafe0149ac9d27af7f

See more details on using hashes here.

File details

Details for the file BTrees-4.7.0-cp36-cp36m-win32.whl.

File metadata

  • Download URL: BTrees-4.7.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 759.6 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/40.6.2 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.6.8

File hashes

Hashes for BTrees-4.7.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 5aa84afcfca0c38476812ab56dba72f03f38e7297ca746fc714307e918411287
MD5 1253da6a91b31eaf1a4545600aad28de
BLAKE2b-256 f6f86b8adaf05c00183c8488c0c0a2f742760ba0e88e70dffba45d4c6dd3e7bd

See more details on using hashes here.

File details

Details for the file BTrees-4.7.0-cp36-cp36m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: BTrees-4.7.0-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/2.7.15

File hashes

Hashes for BTrees-4.7.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 27f490b9efdf34f62809fe9b8cfbf168fe52255d38f9ec4e75a967b5c30fea62
MD5 2c747885ac27263003c10c1a9c74839c
BLAKE2b-256 36ac03e002baf046a52ef173b4b7c64f3969063440f011122f0d1fd450da9df4

See more details on using hashes here.

File details

Details for the file BTrees-4.7.0-cp36-cp36m-manylinux2010_i686.whl.

File metadata

  • Download URL: BTrees-4.7.0-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/2.7.15

File hashes

Hashes for BTrees-4.7.0-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a71cf6ac801c52e7c36c534157d1ff73efd08796d4ec9b53bc0ac90e5af42afc
MD5 a92bb24a48bfb96523eaedffcce5505c
BLAKE2b-256 ab05c60e9e5694d095501935a6ae76868caf80065d6820b4573a182109d77c96

See more details on using hashes here.

File details

Details for the file BTrees-4.7.0-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: BTrees-4.7.0-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/2.7.15

File hashes

Hashes for BTrees-4.7.0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 729336b16bce9965d6d36b4e865ca069edf6a33aa8550ae37ace02e3a11c7f69
MD5 108540e9f6bb426c4c37ac668f3a43d6
BLAKE2b-256 6f487ada6149fc019d9d8664273c0a1904cf14104a20f45acde6b8fc443e3bed

See more details on using hashes here.

File details

Details for the file BTrees-4.7.0-cp36-cp36m-manylinux1_i686.whl.

File metadata

  • Download URL: BTrees-4.7.0-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/2.7.15

File hashes

Hashes for BTrees-4.7.0-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 f9f38cf9c1ed6db15a57b7cf861fcc0bbb4fac35e14c2db3a93d616c01bf2f11
MD5 33deb5b50f4cf1432e74e193cf0a56c3
BLAKE2b-256 b61548001add1ad230d612cb3e585ccbd176018f39fe4fe505e22af9b5e9f5c0

See more details on using hashes here.

File details

Details for the file BTrees-4.7.0-cp36-cp36m-macosx_10_6_intel.whl.

File metadata

  • Download URL: BTrees-4.7.0-cp36-cp36m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.6m, macOS 10.6+ Intel (x86-64, i386)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/2.7.10

File hashes

Hashes for BTrees-4.7.0-cp36-cp36m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 4fd040d13d1858f752c92069bdb31d892316e8f5d9d65e963a0bdd32277441a4
MD5 4ce2b9e32b618ca35661d12ac1c31d8e
BLAKE2b-256 dbaba28cd085fea2a68a5e8c6674c590b73a1bd9bc45b99729619860bc37df49

See more details on using hashes here.

File details

Details for the file BTrees-4.7.0-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: BTrees-4.7.0-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 909.6 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/28.8.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.5.4

File hashes

Hashes for BTrees-4.7.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 94b73db6079b520c6604dcb3809b6e72580a598f8810c9b894ac7b2b40c14b9e
MD5 9fdc85003d293b6bfd52865751d0f989
BLAKE2b-256 d4a809134e521d2fd8775273a7e832326a9f1984186bb85529962fbdded9b29a

See more details on using hashes here.

File details

Details for the file BTrees-4.7.0-cp35-cp35m-win32.whl.

File metadata

  • Download URL: BTrees-4.7.0-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 759.6 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/28.8.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.5.4

File hashes

Hashes for BTrees-4.7.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 c009b9ac8603bb43c4d4abbd4684d1a11e75237642fcbc01a252cb3fe6e59dd2
MD5 395c7edd4d525eb796d5d7cd400a158d
BLAKE2b-256 639e69307866291ff319b5795e0aa636eb8115d47a5ea2a97559ff761c91cc28

See more details on using hashes here.

File details

Details for the file BTrees-4.7.0-cp35-cp35m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: BTrees-4.7.0-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/2.7.15

File hashes

Hashes for BTrees-4.7.0-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 4519eb77790e99e73c2a2a421f081408f99bbc7dbe75ca426870aa918650a9ad
MD5 635bf3e4c5e1335670f97d707af0d2ca
BLAKE2b-256 c9c0aa8354dc6a1e76ed20a1d8d7ee3666d0473c59a746b5ea86151b74fdd8e7

See more details on using hashes here.

File details

Details for the file BTrees-4.7.0-cp35-cp35m-manylinux2010_i686.whl.

File metadata

  • Download URL: BTrees-4.7.0-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/2.7.15

File hashes

Hashes for BTrees-4.7.0-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 1a1100563744a7687701c1c5d875a1d813db769f1a37e086956079f2c4a3c20d
MD5 9ab588902b44164d0a18c53fa0b4d418
BLAKE2b-256 a02d576f674ca84e18fef0328d0cb814b84e8d17ee7fdc5e865a87ebf02b0c54

See more details on using hashes here.

File details

Details for the file BTrees-4.7.0-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

  • Download URL: BTrees-4.7.0-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/2.7.15

File hashes

Hashes for BTrees-4.7.0-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 68aa6594848b063eeb36637aa0db23492bbc59290c7c294d7113379f12e2439e
MD5 2e220af39b196c9e9a30281bd51e9111
BLAKE2b-256 d617d268eded33d36723158c6857d35f11d6f542ebff547c3cbcbf6d4e3465bc

See more details on using hashes here.

File details

Details for the file BTrees-4.7.0-cp35-cp35m-manylinux1_i686.whl.

File metadata

  • Download URL: BTrees-4.7.0-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/2.7.15

File hashes

Hashes for BTrees-4.7.0-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 2628aa02a15e70960c3b94558fe47194957b96521df156b7ac9df51032dfbf4d
MD5 d44dfd71c45ffaec0b09afb5293995ac
BLAKE2b-256 000593fdacaf7f1336c2fa81a1a9f17675c11f784dcc839115baef917c593c6c

See more details on using hashes here.

File details

Details for the file BTrees-4.7.0-cp35-cp35m-macosx_10_6_intel.whl.

File metadata

  • Download URL: BTrees-4.7.0-cp35-cp35m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.5m, macOS 10.6+ Intel (x86-64, i386)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/2.7.10

File hashes

Hashes for BTrees-4.7.0-cp35-cp35m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 31b3b28f03d8ae70d0df05cf1dde9d568eb33a7fe15c0d6522796ef7082ac340
MD5 9c235a9e18a4edbb138d097eabc9a503
BLAKE2b-256 af708fb9b515c6cf00eb55fb813ec0b1aa3ca7250d9765e327c19caa56af0fa0

See more details on using hashes here.

File details

Details for the file BTrees-4.7.0-cp27-cp27mu-manylinux2010_x86_64.whl.

File metadata

  • Download URL: BTrees-4.7.0-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/2.7.15

File hashes

Hashes for BTrees-4.7.0-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 20f2bee804b02a63c1bcc073dc42928efbd83e27d2d7524a007e56772fadb42c
MD5 f65921ae4056e97c8c3bf1cc2e848c13
BLAKE2b-256 afdd65ca1949ff1b9cf678e22167656ea2f144d32606eb197d3e39d81c885134

See more details on using hashes here.

File details

Details for the file BTrees-4.7.0-cp27-cp27mu-manylinux2010_i686.whl.

File metadata

  • Download URL: BTrees-4.7.0-cp27-cp27mu-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/2.7.15

File hashes

Hashes for BTrees-4.7.0-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 7a5965f0860f009d73d60fea7b7a648e09065bd1f72227a2d876ae41cafdfdfb
MD5 deb5abed715750c903f34f33e37552e0
BLAKE2b-256 f13405acc815e6be31c17c55e5d7a4bf634fc64b006d5fcab0d1673c92943189

See more details on using hashes here.

File details

Details for the file BTrees-4.7.0-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

  • Download URL: BTrees-4.7.0-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/2.7.15

File hashes

Hashes for BTrees-4.7.0-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 897b700ad43910c9b1c098e3adb6f085ac0f766fe1d7d19f075813f6fd877501
MD5 7f6ac716599f567bec8744fcea3c7211
BLAKE2b-256 4861a3169993c6ead4a1bedbc4a98911488e029ae96e6d83f8191168103a68e0

See more details on using hashes here.

File details

Details for the file BTrees-4.7.0-cp27-cp27mu-manylinux1_i686.whl.

File metadata

  • Download URL: BTrees-4.7.0-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/2.7.15

File hashes

Hashes for BTrees-4.7.0-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 8bf29dff068f7e8037022c8229fcede588cd2f886eb630441c5c695d6dfaf68e
MD5 5f616486f8ad4ad2435d4138d3fb656a
BLAKE2b-256 30de9d6162a4ab6fba78931d85f9993e728e808dfa58a0a7571bd31c60437dbb

See more details on using hashes here.

File details

Details for the file BTrees-4.7.0-cp27-cp27m-win_amd64.whl.

File metadata

  • Download URL: BTrees-4.7.0-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 860.9 kB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/2.7.17

File hashes

Hashes for BTrees-4.7.0-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 99dd97f18f5ada5da176e70520d2f95c4a1679014a9c181031f6943781f63eed
MD5 0fa4dc69b44176790d1ebaf491009f58
BLAKE2b-256 117eec2318e73f0190675e75931d91bed7e09214d61fd6701312bd08e28c9d89

See more details on using hashes here.

File details

Details for the file BTrees-4.7.0-cp27-cp27m-win32.whl.

File metadata

  • Download URL: BTrees-4.7.0-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 740.5 kB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/2.7.17

File hashes

Hashes for BTrees-4.7.0-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 e7caecd5c3a910298a11505686b09a0bda8578852c4e7170b674d8fb21982a82
MD5 af00a2471c2f8602323a47e6fa0210ad
BLAKE2b-256 1abbfae593e99f0f121761b38492ee04f9544013131040537bd43c76800c7765

See more details on using hashes here.

File details

Details for the file BTrees-4.7.0-cp27-cp27m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: BTrees-4.7.0-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/2.7.15

File hashes

Hashes for BTrees-4.7.0-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 6ad1817cfcc1fa6b85a968cd02c1aca47dffc9d6cb872f2a67b0a46c52dd4334
MD5 9ed93d545bfad3e6d29374b8e29fe4f9
BLAKE2b-256 9f2683d225075d5df236d717b5231bd6802b4ed6bb172c6c6656cb7d51d3f15d

See more details on using hashes here.

File details

Details for the file BTrees-4.7.0-cp27-cp27m-manylinux2010_i686.whl.

File metadata

  • Download URL: BTrees-4.7.0-cp27-cp27m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/2.7.15

File hashes

Hashes for BTrees-4.7.0-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 267bb7e3f3294eaaee4fbdf571f6d7ba1832595c3de3abe10de1efe55bb774ff
MD5 77e8bb1cc06ca15e8fc53e3363239df0
BLAKE2b-256 6ab4172237bd5d6eabaeddd7c8b484d5c9159ce5e9026f0f04dfa367a3554d0e

See more details on using hashes here.

File details

Details for the file BTrees-4.7.0-cp27-cp27m-manylinux1_x86_64.whl.

File metadata

  • Download URL: BTrees-4.7.0-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/2.7.15

File hashes

Hashes for BTrees-4.7.0-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 9fb1a9175e321d74ae976ea457a387aff46c3c49b4e5ce9d564d311d2c4b0a3b
MD5 48f04176c703949293f1023da7b31382
BLAKE2b-256 af22d0491748b25b44fd89c1ece90ede73e44e126d2ad7fd6906440fe6fbbe38

See more details on using hashes here.

File details

Details for the file BTrees-4.7.0-cp27-cp27m-manylinux1_i686.whl.

File metadata

  • Download URL: BTrees-4.7.0-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/2.7.15

File hashes

Hashes for BTrees-4.7.0-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 307228f661cf31c04fb175f4335f7974da17b85022bff3eb5929b2ce8c5ae090
MD5 31c66ce4e678dd1092bb8fee31cb210a
BLAKE2b-256 febbca7fc306f7195451acd6eb62206d721eb9447a189b890e5dfd8e278059bd

See more details on using hashes here.

File details

Details for the file BTrees-4.7.0-cp27-cp27m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: BTrees-4.7.0-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 871.7 kB
  • Tags: CPython 2.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/2.7.10

File hashes

Hashes for BTrees-4.7.0-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8a342ba2a73a65295a9215c45e065483d5eb577d9cb2641b12d2f0a9a884b257
MD5 6966dd82eb333c29bc5bab8afdb18470
BLAKE2b-256 d401ef40fa28f822504d2039f3ea68204e65bb4a50204c59368ab96ae1d1d641

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