Skip to main content

The Boost::Histogram Python wrapper.

Project description

boost-histogram logo

boost-histogram for Python

Gitter Stack Overflow Actions Status Documentation Status DOI Code style: black PyPI version Conda-Forge Scikit-HEP Travis-CI

Python bindings for Boost::Histogram (source), a C++14 library. This is of the fastest libraries for histogramming, while still providing the power of a full histogram object. See what's new. Powers Hist, an analyst-friendly histogram library.

Installation

You can install this library from PyPI with pip:

python -m pip install boost-histogram

or you can use Conda through conda-forge:

conda install -c conda-forge boost-histogram

All the normal best-practices for Python apply; you should be in a virtual environment, etc.

Usage

import boost_histogram as bh

# Compose axis however you like; this is a 2D histogram
hist = bh.Histogram(
    bh.axis.Regular(2, 0, 1),
    bh.axis.Regular(4, 0.0, 1.0),
)

# Filling can be done with arrays, one per dimension
hist.fill(
    [0.3, 0.5, 0.2], [0.1, 0.4, 0.9]
)

# Numpy array view into histogram counts, no overflow bins
counts = hist.view()

Features

  • Many axis types (all support metadata=...)
    • bh.axis.Regular(n, start, stop, ...): Make a regular axis. Options listed below.
      • overflow=False: Turn off overflow bin
      • underflow=False: Turn off underflow bin
      • growth=True: Turn on growing axis, bins added when out-of-range items added
      • circular=True: Turn on wrapping, so that out-of-range values wrap around into the axis
      • transform=bh.axis.transform.Log: Log spacing
      • transform=bh.axis.transform.Sqrt: Square root spacing
      • transform=bh.axis.transform.Pow(v): Power spacing
      • See also the flexible Function transform
    • bh.axis.Integer(start, stop, underflow=True, overflow=True, growth=False): Special high-speed version of regular for evenly spaced bins of width 1
    • bh.axis.Variable([start, edge1, edge2, ..., stop], underflow=True, overflow=True): Uneven bin spacing
    • bh.axis.Category([...], growth=False): Integer or string categories
    • bh.axis.Boolean(): A True/False axis (known issue with slicing/selection in 0.8.0)
  • Axis features:
    • .index(value): The index at a point (or points) on the axis
    • .value(index): The value for a fractional bin (or bins) in the axis
    • .bin(i): The bin edges (continuous axis) or a bin value (discrete axis)
    • .centers: The N bin centers (if continuous)
    • .edges: The N+1 bin edges (if continuous)
    • .extent: The number of bins (including under/overflow)
    • .metadata: Anything a user wants to store
    • .options: The options set on the axis (bh.axis.options)
    • .size: The number of bins (not including under/overflow)
    • .widths: The N bin widths
  • Many storage types
    • bh.storage.Double(): Doubles for weighted values (default)
    • bh.storage.Int64(): 64-bit unsigned integers
    • bh.storage.Unlimited(): Starts small, but can go up to unlimited precision ints or doubles.
    • bh.storage.AtomicInt64(): Threadsafe filling, experimental. Does not support growing axis in threads.
    • bh.storage.Weight(): Stores a weight and sum of weights squared.
    • bh.storage.Mean(): Accepts a sample and computes the mean of the samples (profile).
    • bh.storage.WeightedMean(): Accepts a sample and a weight. It computes the weighted mean of the samples.
  • Accumulators
    • bh.accumulator.Sum: High accuracy sum (Neumaier) - used by the sum method when summing a numerical histogram
    • bh.accumulator.WeightedSum: Tracks a weighted sum and variance
    • bh.accumulator.Mean: Running count, mean, and variance (Welfords's incremental algorithm)
    • bh.accumulator.WeightedMean: Tracks a weighted sum, mean, and variance (West's incremental algorithm)
  • Histogram operations
    • h.ndim: The number of dimensions
    • h.size or len(h): The number of bins
    • +: Add two histograms (storages must match types currently)
    • *=: Multiply by a scaler (not all storages) (hist * scalar and scalar * hist supported too)
    • /=: Divide by a scaler (not all storages) (hist / scalar supported too)
    • .sum(flow=False): The total count of all bins
    • .project(ax1, ax2, ...): Project down to listed axis (numbers)
    • .to_numpy(flow=False): Convert to a Numpy style tuple (with or without under/overflow bins)
    • .view(flow=False): Get a view on the bin contents (with or without under/overflow bins)
    • .reset(): Set counters to 0
    • .empty(flow=False): Check to see if the histogram is empty (can check flow bins too if asked)
    • .copy(deep=False): Make a copy of a histogram
    • .axes: Get the axes as a tuple-like (all properties of axes are available too)
      • .axes[0]: Get the 0th axis
      • .axes.edges: The lower values as a broadcasting-ready array
      • .axes.centers: The centers of the bins broadcasting-ready array
      • .axes.widths: The bin widths as a broadcasting-ready array
      • .axes.metadata: A tuple of the axes metadata
      • .axes.size: A tuple of the axes sizes (size without flow)
      • .axes.extent: A tuple of the axes extents (size with flow)
      • .axes.bin(*args): Returns the bin edges as a tuple of pairs (continuous axis) or values (describe)
      • .axes.index(*args): Returns the bin index at a value for each axis
      • .axes.value(*args): Returns the bin value at an index for each axis
  • Indexing - Supports the Unified Histogram Indexing (UHI) proposal
    • Bin content access / setting
      • v = h[b]: Access bin content by index number
      • v = h[{0:b}]: All actions can be represented by axis:item dictionary instead of by position (mostly useful for slicing)
    • Slicing to get histogram or set array of values
      • h2 = h[a:b]: Access a slice of a histogram, cut portions go to flow bins if present
      • h2 = h[:, ...]: Using : and ... supported just like Numpy
      • h2 = h[::sum]: Third item in slice is the "action"
      • h[...] = array: Set the bin contents, either include or omit flow bins
    • Special accessors
      • bh.loc(v): Supply value in axis coordinates instead of bin number
      • bh.underflow: The underflow bin (use empty beginning on slice for slicing instead)
      • bh.overflow: The overflow bin (use empty end on slice for slicing instead)
    • Special actions (third item in slice)
      • sum: Remove axes via projection; if limits are given, use those
      • bh.rebin(n): Rebin an axis
  • NumPy compatibility
    • bh.numpy provides faster drop in replacements for NumPy histogram functions
    • Histograms follow the buffer interface, and provide .view()
    • Histograms can be converted to NumPy style output tuple with .to_numpy()
  • Details
    • Use bh.Histogram(..., storage=...) to make a histogram (there are several different types)
    • All objects support copy/deepcopy/pickle

Supported platforms

Binaries available:

The easiest way to get boost-histogram is to use a binary wheel, which happens when you run:

python -m pip install boost-histogram

Wheels are produced using cibuildwheel; all platforms supported by cibuildwheel are provided in boost-histogram:

System Arch Python versions
ManyLinux1 (custom GCC 9.2) 32 & 64-bit 2.7, 3.5, 3.6, 3.7, 3.8, 3.9
ManyLinux2010 32 & 64-bit 2.7, 3.5, 3.6, 3.7, 3.8, 3.9
macOS 10.9+ 64-bit 2.7, 3.5, 3.6, 3.7, 3.8, 3.9
Windows 32 & 64-bit 2.7, 3.5, 3.6, 3.7, 3.8, 3.9
  • manylinux1: Using a custom docker container with GCC 9; should work but can't be called directly other compiled extensions unless they do the same thing (think that's the main caveat). Supporting 32 bits because it's there.
  • manylinux2010: Requires pip 10+ and a version of Linux newer than 2010.
  • Windows: pybind11 requires compilation with a newer copy of Visual Studio than Python 2.7's Visual Studio 2008; you need to have the Visual Studio 2015 distributable installed (the dll is included in 2017 and 2019, as well).
  • PyPy: Supported on all platforms that cibuildwheel supports, in pypy2, pypy3.6, and pypy3.7 variants.
  • ARM and PowerPC on Linux is supported for newer Python versions via manylinux2014.

If you are on a Linux system that is not part of the "many" in manylinux, such as Alpine or ClearLinux, building from source is usually fine, since the compilers on those systems are often quite new. It will just take a little longer to install when it's using the sdist instead of a wheel.

Conda-Forge

The boost-histogram package is available on Conda-Forge, as well. All supported versions are available with the exception of Python 2.7, which is no longer supported by conda-forge directly. If you really need boost-histogram + Conda + Python 2.7, please open an issue.

conda install -c conda-forge boost-histogram

Source builds

For a source build, for example from an "sdist" package, the only requirements are a C++14 compatible compiler. The compiler requirements are dictated by Boost.Histogram's C++ requirements: gcc >= 5.5, clang >= 3.8, msvc >= 14.1. You should have a version of pip less than 2-3 years old (10+).

If you are using Python 2.7 on Windows, you will need to use a recent version of Visual studio and force distutils to use it, or just upgrade to Python 3.6 or newer. Check the pybind11 documentation for more help. On some Linux systems, you may need to use a newer compiler than the one your distribution ships with.

Boost is not required or needed (this only depends on included header-only dependencies). This library is under active development; you can install directly from GitHub if you would like.

python -m pip install git+https://github.com/scikit-hep/boost-histogram.git@develop

Developing

See CONTRIBUTING.md for details on how to set up a development environment.

Contributors

We would like to acknowledge the contributors that made this project possible (emoji key):


Henry Schreiner

🚧 💻 📖

Hans Dembinski

🚧 💻

N!no

⚠️ 📖

Jim Pivarski

🤔

Nicholas Smith

🐛

physicscitizen

🐛

Chanchal Kumar Maji

📖

Doug Davis

🐛

Pierre Grimaud

📖

Beojan Stanislaus

🐛

Popinaodude

🐛

Congqiao Li

🐛

alexander-held

🐛

This project follows the all-contributors specification.

Talks and other documentation/tutorial sources

The official documentation is here, and includes a quickstart.


Acknowledgements

This library was primarily developed by Henry Schreiner and Hans Dembinski.

Support for this work was provided by the National Science Foundation cooperative agreement OAC-1836650 (IRIS-HEP) and OAC-1450377 (DIANA/HEP). Any opinions, findings, conclusions or recommendations expressed in this material are those of the authors and do not necessarily reflect the views of the National Science Foundation.

Download files

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

Source Distribution

boost_histogram-0.11.1.tar.gz (996.1 kB view details)

Uploaded Source

Built Distributions

boost_histogram-0.11.1-pp37-pypy37_pp73-win32.whl (560.1 kB view details)

Uploaded PyPy Windows x86

boost_histogram-0.11.1-pp37-pypy37_pp73-manylinux2010_x86_64.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

boost_histogram-0.11.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (1.4 MB view details)

Uploaded PyPy macOS 10.9+ x86-64

boost_histogram-0.11.1-pp36-pypy36_pp73-win32.whl (560.2 kB view details)

Uploaded PyPy Windows x86

boost_histogram-0.11.1-pp36-pypy36_pp73-manylinux2010_x86_64.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

boost_histogram-0.11.1-pp36-pypy36_pp73-macosx_10_9_x86_64.whl (1.4 MB view details)

Uploaded PyPy macOS 10.9+ x86-64

boost_histogram-0.11.1-pp27-pypy_73-win32.whl (609.1 kB view details)

Uploaded PyPy Windows x86

boost_histogram-0.11.1-pp27-pypy_73-manylinux2010_x86_64.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

boost_histogram-0.11.1-pp27-pypy_73-macosx_10_9_x86_64.whl (1.4 MB view details)

Uploaded PyPy macOS 10.9+ x86-64

boost_histogram-0.11.1-cp39-cp39-win_amd64.whl (710.4 kB view details)

Uploaded CPython 3.9 Windows x86-64

boost_histogram-0.11.1-cp39-cp39-win32.whl (559.7 kB view details)

Uploaded CPython 3.9 Windows x86

boost_histogram-0.11.1-cp39-cp39-manylinux2010_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

boost_histogram-0.11.1-cp39-cp39-manylinux2010_i686.whl (1.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

boost_histogram-0.11.1-cp39-cp39-manylinux1_i686.whl (1.8 MB view details)

Uploaded CPython 3.9

boost_histogram-0.11.1-cp39-cp39-macosx_10_9_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

boost_histogram-0.11.1-cp38-cp38-win_amd64.whl (710.4 kB view details)

Uploaded CPython 3.8 Windows x86-64

boost_histogram-0.11.1-cp38-cp38-win32.whl (559.8 kB view details)

Uploaded CPython 3.8 Windows x86

boost_histogram-0.11.1-cp38-cp38-manylinux2010_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

boost_histogram-0.11.1-cp38-cp38-manylinux2010_i686.whl (1.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

boost_histogram-0.11.1-cp38-cp38-manylinux1_i686.whl (1.8 MB view details)

Uploaded CPython 3.8

boost_histogram-0.11.1-cp38-cp38-macosx_10_9_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

boost_histogram-0.11.1-cp37-cp37m-win_amd64.whl (724.8 kB view details)

Uploaded CPython 3.7m Windows x86-64

boost_histogram-0.11.1-cp37-cp37m-win32.whl (569.8 kB view details)

Uploaded CPython 3.7m Windows x86

boost_histogram-0.11.1-cp37-cp37m-manylinux2010_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ x86-64

boost_histogram-0.11.1-cp37-cp37m-manylinux2010_i686.whl (1.3 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

boost_histogram-0.11.1-cp37-cp37m-manylinux1_i686.whl (1.8 MB view details)

Uploaded CPython 3.7m

boost_histogram-0.11.1-cp37-cp37m-macosx_10_9_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

boost_histogram-0.11.1-cp36-cp36m-win_amd64.whl (724.6 kB view details)

Uploaded CPython 3.6m Windows x86-64

boost_histogram-0.11.1-cp36-cp36m-win32.whl (569.6 kB view details)

Uploaded CPython 3.6m Windows x86

boost_histogram-0.11.1-cp36-cp36m-manylinux2010_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ x86-64

boost_histogram-0.11.1-cp36-cp36m-manylinux2010_i686.whl (1.3 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

boost_histogram-0.11.1-cp36-cp36m-manylinux1_i686.whl (1.8 MB view details)

Uploaded CPython 3.6m

boost_histogram-0.11.1-cp36-cp36m-macosx_10_9_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

boost_histogram-0.11.1-cp35-cp35m-win_amd64.whl (724.7 kB view details)

Uploaded CPython 3.5m Windows x86-64

boost_histogram-0.11.1-cp35-cp35m-win32.whl (569.6 kB view details)

Uploaded CPython 3.5m Windows x86

boost_histogram-0.11.1-cp35-cp35m-manylinux2010_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ x86-64

boost_histogram-0.11.1-cp35-cp35m-manylinux2010_i686.whl (1.3 MB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

boost_histogram-0.11.1-cp35-cp35m-manylinux1_i686.whl (1.8 MB view details)

Uploaded CPython 3.5m

boost_histogram-0.11.1-cp35-cp35m-macosx_10_9_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.5m macOS 10.9+ x86-64

boost_histogram-0.11.1-cp27-cp27mu-manylinux2010_x86_64.whl (1.3 MB view details)

Uploaded CPython 2.7mu manylinux: glibc 2.12+ x86-64

boost_histogram-0.11.1-cp27-cp27mu-manylinux2010_i686.whl (1.3 MB view details)

Uploaded CPython 2.7mu manylinux: glibc 2.12+ i686

boost_histogram-0.11.1-cp27-cp27mu-manylinux1_i686.whl (1.9 MB view details)

Uploaded CPython 2.7mu

boost_histogram-0.11.1-cp27-cp27m-win_amd64.whl (783.0 kB view details)

Uploaded CPython 2.7m Windows x86-64

boost_histogram-0.11.1-cp27-cp27m-win32.whl (616.3 kB view details)

Uploaded CPython 2.7m Windows x86

boost_histogram-0.11.1-cp27-cp27m-manylinux2010_x86_64.whl (1.3 MB view details)

Uploaded CPython 2.7m manylinux: glibc 2.12+ x86-64

boost_histogram-0.11.1-cp27-cp27m-manylinux2010_i686.whl (1.3 MB view details)

Uploaded CPython 2.7m manylinux: glibc 2.12+ i686

boost_histogram-0.11.1-cp27-cp27m-manylinux1_i686.whl (1.9 MB view details)

Uploaded CPython 2.7m

boost_histogram-0.11.1-cp27-cp27m-macosx_10_9_x86_64.whl (1.3 MB view details)

Uploaded CPython 2.7m macOS 10.9+ x86-64

File details

Details for the file boost_histogram-0.11.1.tar.gz.

File metadata

  • Download URL: boost_histogram-0.11.1.tar.gz
  • Upload date:
  • Size: 996.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for boost_histogram-0.11.1.tar.gz
Algorithm Hash digest
SHA256 eb2205e7cac21c3742b19ea147359c588e07a4f3b719d58c6ad6009fee423fce
MD5 b211f85424abc45c3390399edf64c8f4
BLAKE2b-256 e8c96aaedbb84a330aa90a8ba4e6f748c821aa6c94aed8cdc3582e6268e14fe9

See more details on using hashes here.

File details

Details for the file boost_histogram-0.11.1-pp37-pypy37_pp73-win32.whl.

File metadata

  • Download URL: boost_histogram-0.11.1-pp37-pypy37_pp73-win32.whl
  • Upload date:
  • Size: 560.1 kB
  • Tags: PyPy, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for boost_histogram-0.11.1-pp37-pypy37_pp73-win32.whl
Algorithm Hash digest
SHA256 28f97f4ca8f69641cfe7ac0adaf40219f3bcb8baf4900c76bb8247f0bb8b207a
MD5 066d32b52e851d58a2d5aeb3f5c1f8bb
BLAKE2b-256 a6eeb43b752865427d81fa8a4c109d64f548a9c3145eb4bbdb21764a795f8259

See more details on using hashes here.

File details

Details for the file boost_histogram-0.11.1-pp37-pypy37_pp73-manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-0.11.1-pp37-pypy37_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 bb6e254da69709419fd169dd46e5187b3fc10df92c91f9d4b153dfe415a9dcdc
MD5 cc33c2a3bb136e77f6a9220ab985fe2d
BLAKE2b-256 8e033ff8c1515956e7b6709b00752c23403395510bf62e72d0045e0e15ce778d

See more details on using hashes here.

File details

Details for the file boost_histogram-0.11.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-0.11.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 610886dd0f1db42301fe0297e6a3e3e502bfe9c7025a226caa5ed6faf19d7c24
MD5 ac1ad136b21eae2ed85ed998eae389a4
BLAKE2b-256 48ade3d8cff6578b9152d8b1265dd7dc432ba859f9c92e641edf63aa06b35637

See more details on using hashes here.

File details

Details for the file boost_histogram-0.11.1-pp36-pypy36_pp73-win32.whl.

File metadata

  • Download URL: boost_histogram-0.11.1-pp36-pypy36_pp73-win32.whl
  • Upload date:
  • Size: 560.2 kB
  • Tags: PyPy, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for boost_histogram-0.11.1-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 5cc7a2adb4b6ef44dfab3c868dc4cad25fccb37a322124145ebf04fecb52e481
MD5 a2c7a8f5a00db9b90d0602ef0230c552
BLAKE2b-256 63109606332fc88d7afaa89cbd5f302e39983f556feb8fed9064bb71f57191f1

See more details on using hashes here.

File details

Details for the file boost_histogram-0.11.1-pp36-pypy36_pp73-manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-0.11.1-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 4f0c2e71991cd58d3728b2721dcabb80b8324c45085abf39952f20d8aaeb45a4
MD5 0913ea137d256c95b522e268db757de8
BLAKE2b-256 dde4a2f43fb1395089fb491d9d383a03f4a13cf4a465a184cccd60d58f25d0d1

See more details on using hashes here.

File details

Details for the file boost_histogram-0.11.1-pp36-pypy36_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-0.11.1-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9a1a234e2832920ac6908ce7439cb007e20cb4b025eee179c692d93e0d84fb19
MD5 8a0cd675bbda7f3a4fbb421e6faf9a96
BLAKE2b-256 083aeb92435264e9a13f3cf16ea2a493496a6cdcb94b26c9f83160a31fd724d7

See more details on using hashes here.

File details

Details for the file boost_histogram-0.11.1-pp27-pypy_73-win32.whl.

File metadata

  • Download URL: boost_histogram-0.11.1-pp27-pypy_73-win32.whl
  • Upload date:
  • Size: 609.1 kB
  • Tags: PyPy, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for boost_histogram-0.11.1-pp27-pypy_73-win32.whl
Algorithm Hash digest
SHA256 e2966ce3b9a6f294083bd2b9d6c8b18a6fe2b248564aa78e5df23d01c6f00ceb
MD5 26b0ae03eaff9a574005f1391c580dca
BLAKE2b-256 d11c6e210a2bc4b62b6ac113a92d09962827744d95bcd7e0dd964dd446a3298c

See more details on using hashes here.

File details

Details for the file boost_histogram-0.11.1-pp27-pypy_73-manylinux2010_x86_64.whl.

File metadata

  • Download URL: boost_histogram-0.11.1-pp27-pypy_73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: PyPy, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for boost_histogram-0.11.1-pp27-pypy_73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 c185bd6c79266cbf78d4a0c554ab011ce0eab5d95830214c4c989d77dbb5b604
MD5 3a9496e0b34a749587e34bb9982650a6
BLAKE2b-256 7376622cd3b1f175f230e63e630cdef967c9fd871ff2979f423cc274263b9b93

See more details on using hashes here.

File details

Details for the file boost_histogram-0.11.1-pp27-pypy_73-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: boost_histogram-0.11.1-pp27-pypy_73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for boost_histogram-0.11.1-pp27-pypy_73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c1b1509f0c21571dc1dfaa6fe7522a7f72f4f2110677863bdd9cc8f6a75aeb87
MD5 ccb55510cec2eabd9538b921448cf5b9
BLAKE2b-256 ecdddfca87e75c101de3131c1f7ca0e6f8d44b889130ec09af9399731dbfaf0a

See more details on using hashes here.

File details

Details for the file boost_histogram-0.11.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: boost_histogram-0.11.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 710.4 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for boost_histogram-0.11.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 756c0dc2528eca60bfeb44ccf9b28c21618b4f9475ed89da3c861e4050f53971
MD5 02a2cd90941500562fc7897fa11ddc79
BLAKE2b-256 56f4d45b2882fe1720f83cfdb67fc12f1254d8ee78968f88d9d1fa57b6b6d930

See more details on using hashes here.

File details

Details for the file boost_histogram-0.11.1-cp39-cp39-win32.whl.

File metadata

  • Download URL: boost_histogram-0.11.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 559.7 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for boost_histogram-0.11.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 b861df64b8add4942a2e4502ae15fdab249a57e2bcf969e5aa4b62f3a6365b19
MD5 fbf95a7ba3ce2a8dc15cd8e884c61b04
BLAKE2b-256 730c019eab31d7db65c16a02de67fe7710efdf068db05b0dc6524d0920c314bf

See more details on using hashes here.

File details

Details for the file boost_histogram-0.11.1-cp39-cp39-manylinux2010_x86_64.whl.

File metadata

  • Download URL: boost_histogram-0.11.1-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for boost_histogram-0.11.1-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 6060edb3bfcd28a79b22185a55b2721e17ca0400cc35df768602712002f26245
MD5 84ffd1faa74c85794bab4ff48f122e0b
BLAKE2b-256 f52928b2ce5d46b40e4a684dd1a8441cf65dfe9a520c8bc1d30d8fd65b259bcb

See more details on using hashes here.

File details

Details for the file boost_histogram-0.11.1-cp39-cp39-manylinux2010_i686.whl.

File metadata

  • Download URL: boost_histogram-0.11.1-cp39-cp39-manylinux2010_i686.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for boost_histogram-0.11.1-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 3512fa2151a667c6c60b66bf947a40cd7ede981dc4b2b2bf274dac320a079d32
MD5 2c029d8471f81d2acdec552d455ce48a
BLAKE2b-256 4ee5ed560e9541a3d3a48c603b7ce8e1fdac0a7f472b18b1b2cde7abd1c87a7e

See more details on using hashes here.

File details

Details for the file boost_histogram-0.11.1-cp39-cp39-manylinux1_x86_64.whl.

File metadata

  • Download URL: boost_histogram-0.11.1-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for boost_histogram-0.11.1-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 838e1bb88dc940fe531b0fe4b41b72723105cc669434d7008bebba5d76f07b3b
MD5 5bc62f6189de94f2f9f9f7cacc8b0687
BLAKE2b-256 43455d207b2e357216fcf4cd39526dab16840a5aa6d019120045efb03f915ab1

See more details on using hashes here.

File details

Details for the file boost_histogram-0.11.1-cp39-cp39-manylinux1_i686.whl.

File metadata

  • Download URL: boost_histogram-0.11.1-cp39-cp39-manylinux1_i686.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for boost_histogram-0.11.1-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 8ed52aa9375fa95cb705afcb9f6ff8f5185d114bc8c410eab3085af54999b91b
MD5 eaff16fadd0f655f721bcc32bcb79905
BLAKE2b-256 c364c361a29d4501702a20f53f538adc51ac5b13a4a41ed30f7560e283de3c89

See more details on using hashes here.

File details

Details for the file boost_histogram-0.11.1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: boost_histogram-0.11.1-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for boost_histogram-0.11.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ea21e364c460cccc435501afc50185d9615abafb6afed1067f2f2afbc984cb23
MD5 4f13dc13874c9d9dfcfc890e28cc18fa
BLAKE2b-256 91327c032fe30ef39e01abf183500befe37e1c30b9d7ed2e22179e02857f0c9b

See more details on using hashes here.

File details

Details for the file boost_histogram-0.11.1-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: boost_histogram-0.11.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 710.4 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for boost_histogram-0.11.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 f8b60f4f8ede3393d369c13f77be50d39fd655a688e70a81be5ff4994fe6dc91
MD5 5db3586a70daa6df19480be65d78f175
BLAKE2b-256 9fd9b58d2cb51c20a345c9c1ae37dedabebc80508567d1c54cb9541425d4babe

See more details on using hashes here.

File details

Details for the file boost_histogram-0.11.1-cp38-cp38-win32.whl.

File metadata

  • Download URL: boost_histogram-0.11.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 559.8 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for boost_histogram-0.11.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 f5ecf38ab56afeab07e2df1cde4672a28065d83631716bd59bda00ef9810a77d
MD5 8d911c2fd35d819827845b12fd0a594e
BLAKE2b-256 c49909f9b9d827092e652e052ffbb5648eb877c307aa58d429f81ee4bf331215

See more details on using hashes here.

File details

Details for the file boost_histogram-0.11.1-cp38-cp38-manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for boost_histogram-0.11.1-cp38-cp38-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 80af31dec73da4925456b3923ba3db32ebc469048859e6fb5f291decb06de977
MD5 2db5c835e2389ae5ea2698bbab56825d
BLAKE2b-256 ffa2620e331bee56c51956678254a1ed8e2e308521699bc3622eab26a1e19255

See more details on using hashes here.

File details

Details for the file boost_histogram-0.11.1-cp38-cp38-manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for boost_histogram-0.11.1-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5e04d5dcb28f1a4ab8247efcb9200e9be60cbdb35286e95c0a264c43fa9c11d1
MD5 f48ef373e4b84b31ed53c5830e6cee88
BLAKE2b-256 46ee2f50331f5de0c3ddfe9e5c4bac75ba0e81fc0f5362f1d0091edd7db9b88e

See more details on using hashes here.

File details

Details for the file boost_histogram-0.11.1-cp38-cp38-manylinux2010_x86_64.whl.

File metadata

  • Download URL: boost_histogram-0.11.1-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for boost_histogram-0.11.1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 86e4b2169ac5df6aaa4d5ab488576b2a4a8a157762bcb2a0c1008416eddc120d
MD5 4a8fc0170572a68e2621737488a8babd
BLAKE2b-256 44acbf688a0dc4cf62798714ae87dc516c09ac5eab9d5ab436073d2a170ac1ee

See more details on using hashes here.

File details

Details for the file boost_histogram-0.11.1-cp38-cp38-manylinux2010_i686.whl.

File metadata

  • Download URL: boost_histogram-0.11.1-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for boost_histogram-0.11.1-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b28debc8e0f82ded855a2fa244b6c75b4a1306bb78e1631794acd2136eae37ac
MD5 5e10e34222b0bd64ff1b7c9a04a6a19e
BLAKE2b-256 64f024bbb6c168c14f6c9e16349e07b34cb3fadfe4a64445d87507814a4ce39a

See more details on using hashes here.

File details

Details for the file boost_histogram-0.11.1-cp38-cp38-manylinux1_x86_64.whl.

File metadata

  • Download URL: boost_histogram-0.11.1-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for boost_histogram-0.11.1-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ff169a886d9fe391b8cacf69ed271314f9356d20704a8dcc1579d789589d807b
MD5 8ce5a7d132b2362731e28dc320e18512
BLAKE2b-256 350bd2e79b2dd104ef92fe51756eca115d09d9f966f2a5878fd332f5f6565d0e

See more details on using hashes here.

File details

Details for the file boost_histogram-0.11.1-cp38-cp38-manylinux1_i686.whl.

File metadata

  • Download URL: boost_histogram-0.11.1-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for boost_histogram-0.11.1-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 b7b4077ce3361f6cadc80c3285257c9d9738404c066e6af0867fbd4b639b5e70
MD5 8e0fff428833a3de66473b4fcfff686c
BLAKE2b-256 453af9642599828b4f9e79a7d78867ed89220100c7c0a0a72fc34a41d1bffb9f

See more details on using hashes here.

File details

Details for the file boost_histogram-0.11.1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: boost_histogram-0.11.1-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for boost_histogram-0.11.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a04a9b179e0084fb517ca7d21a078df1dceaa87804854444411af42c3338393c
MD5 d3bd78794fd8a19be2264545f7b9b3d7
BLAKE2b-256 9631b8c641f4d5cb2b0a0a85caa2380910bd40de4f1c64ac569898dfaae1b345

See more details on using hashes here.

File details

Details for the file boost_histogram-0.11.1-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: boost_histogram-0.11.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 724.8 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for boost_histogram-0.11.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 64f372e6db80c84edf9da86aadfca5c4c4a9c0ccb60c3f259588259428c9edb2
MD5 5e5d0d65063081bdefd558f31ee04a6a
BLAKE2b-256 95e094007c288168feb7d8f444509aad46cd31941d9496a5830eb2f58e4c2da6

See more details on using hashes here.

File details

Details for the file boost_histogram-0.11.1-cp37-cp37m-win32.whl.

File metadata

  • Download URL: boost_histogram-0.11.1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 569.8 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for boost_histogram-0.11.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 6647dea592b85f96ec08ab187d3e122e0c4f1fe46a1b31d72659c847be20a9a7
MD5 31db5cc980214a2a0fe61f8c1632530d
BLAKE2b-256 85dff216a57c80fce251cd8329d8db4ed90337e924c01177b236c4678ef2de6e

See more details on using hashes here.

File details

Details for the file boost_histogram-0.11.1-cp37-cp37m-manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for boost_histogram-0.11.1-cp37-cp37m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d9c0481054c779e9af67011e6a01b48a8b1e27b499ff3c48bfdaf9b2b0ca2730
MD5 bec3f2e2530dceab313f01b15cfffbb9
BLAKE2b-256 85d570190b976f2580bfcc1c50cecfa41864e2cf55e94ffbb4ff4c439c12c34b

See more details on using hashes here.

File details

Details for the file boost_histogram-0.11.1-cp37-cp37m-manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for boost_histogram-0.11.1-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 45948484424449385c6ab744bf1050a1f952d2d7bd2cdc9e530f2eb2c22d1c5a
MD5 94e78b368908338f68b1849b8f0b997b
BLAKE2b-256 5a2c246eaf7643d8027e677bf16f300c392d3b623aef37ed984036e0eecf1e2c

See more details on using hashes here.

File details

Details for the file boost_histogram-0.11.1-cp37-cp37m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: boost_histogram-0.11.1-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for boost_histogram-0.11.1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 116bafbfebd22335f4ec2e7acd9512577c3c34ecb717b310e913dec162ef2438
MD5 1b2ca74f1233da03fa17d961298bafa1
BLAKE2b-256 8b2c56943a071a3e8a4ab9d954df7102bf5781111b1b5d7f6217b2651778a2fc

See more details on using hashes here.

File details

Details for the file boost_histogram-0.11.1-cp37-cp37m-manylinux2010_i686.whl.

File metadata

  • Download URL: boost_histogram-0.11.1-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for boost_histogram-0.11.1-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 6a6cca832fd662b9cdf2d9c5c3fc4b6e18b3e88276ca5dee98a6403cb363c337
MD5 46466d571fc897d4ee32b5efe1d452b4
BLAKE2b-256 85d3c668e502b069ce3106c8f2a4498d4bb1e00244022ca3f7226fac48500bb7

See more details on using hashes here.

File details

Details for the file boost_histogram-0.11.1-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: boost_histogram-0.11.1-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for boost_histogram-0.11.1-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a91458397c5df7d7a35322e34a70fa60d09e720266f7a42a6f4c59fcf099f4a1
MD5 97542829185f9f5f7ed338432d1f0e63
BLAKE2b-256 0b33afb30bb65358cabad3e3b5766d803996c97cdfef416b28cee06433fa1b4e

See more details on using hashes here.

File details

Details for the file boost_histogram-0.11.1-cp37-cp37m-manylinux1_i686.whl.

File metadata

  • Download URL: boost_histogram-0.11.1-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for boost_histogram-0.11.1-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 f275c8e87eec8203f1e07343329391f9006658d36b9a3da1b134ab9575f18311
MD5 d8daff78058153665970bbb00b50a9ce
BLAKE2b-256 9965d7accaa43034bd06ebab966b406a45fa33e5f36be033e5404b67da320a57

See more details on using hashes here.

File details

Details for the file boost_histogram-0.11.1-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: boost_histogram-0.11.1-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for boost_histogram-0.11.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9e7901b1f452bcf9c1909042a3ffea25a8dad3006fa4f2e9379f35060dd59ec1
MD5 f77dfac3fa2f2065513dfe4bde47d782
BLAKE2b-256 6d4487c09b1c2bcac68881d08f9a1b73cf3069f76394c17cea7c0eed0e934790

See more details on using hashes here.

File details

Details for the file boost_histogram-0.11.1-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: boost_histogram-0.11.1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 724.6 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for boost_histogram-0.11.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 a58c2a254a9df86f22552d15842114faaeb5093e4e2c5bfd3e496e38e8c2f733
MD5 5d20899da9b4d99d83e7627223b0059c
BLAKE2b-256 a7db809c4a993a9b168e709347e43578db7c645605d383bdd79bc70ea4945774

See more details on using hashes here.

File details

Details for the file boost_histogram-0.11.1-cp36-cp36m-win32.whl.

File metadata

  • Download URL: boost_histogram-0.11.1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 569.6 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for boost_histogram-0.11.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 458a8890d2f604292150e63e88bc647562865b844a78d3eaa893ce0d2c6f875f
MD5 86e88c785ea64e39bd6cb080d2b7998d
BLAKE2b-256 a51d1c3d0ddd5d38b2dc8692ef7f151be0de9bca8e2876faac29a59e074f83c7

See more details on using hashes here.

File details

Details for the file boost_histogram-0.11.1-cp36-cp36m-manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for boost_histogram-0.11.1-cp36-cp36m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 89d29b94984f1ebbd2436db4fdab4c32bbf9214fb2e374fb6915ada1c00ce01f
MD5 ecdb1ab60581edc1a3e4f9fc2749279f
BLAKE2b-256 720aba2ec215ce3046534e7a145a4eab95d7fdb7a79ff172be289597510fd58c

See more details on using hashes here.

File details

Details for the file boost_histogram-0.11.1-cp36-cp36m-manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for boost_histogram-0.11.1-cp36-cp36m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bb9f9d77ddc80fc307114f00efdabc6afb23f2f5acde091a2e81579aa50cf521
MD5 f34f4de3ac4879607183c10bdae5db8c
BLAKE2b-256 506b7e1a614e0296f8e22dc42f60ce23bac243c7818d4ab60a8873d6f942c9bd

See more details on using hashes here.

File details

Details for the file boost_histogram-0.11.1-cp36-cp36m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: boost_histogram-0.11.1-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for boost_histogram-0.11.1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 07f63a72ee04f9a11a2156900435db87fe65f7fc2f60270d857c472fd30d52f8
MD5 8e43c61e750afc35e89a6673f18a0378
BLAKE2b-256 bf8b909a1b078d789b1898f3de6e6e414a204da1e11d6879125da574c5e06e02

See more details on using hashes here.

File details

Details for the file boost_histogram-0.11.1-cp36-cp36m-manylinux2010_i686.whl.

File metadata

  • Download URL: boost_histogram-0.11.1-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for boost_histogram-0.11.1-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 e5b4886b37a46b6f1654bfb6349dabde36e66bd543e1738a1a8bd255ea136424
MD5 7d71107849932c22ca71f374cc3eb481
BLAKE2b-256 a99c5d570be0f6d762756ed569e4dbd1f1f3034bfcec12f2e3c576848a52e169

See more details on using hashes here.

File details

Details for the file boost_histogram-0.11.1-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: boost_histogram-0.11.1-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for boost_histogram-0.11.1-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 98f28352bdb39f1a2d5bb8cfb6450804c48167dd44659a234a6f189d47a2edad
MD5 ef11fd8021c8e088a3eb04da9521ba21
BLAKE2b-256 80124eb4d3b305c3ea2a2b58cb37b2d0d14e2f98eebbdab7331a33805cc7b6fa

See more details on using hashes here.

File details

Details for the file boost_histogram-0.11.1-cp36-cp36m-manylinux1_i686.whl.

File metadata

  • Download URL: boost_histogram-0.11.1-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for boost_histogram-0.11.1-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 ebe694ea1952ad95d7071794b8650cbba7b7f81754f820ff7c1b225b599aa5a9
MD5 27d56ed9b68e46fc51ff6ae1ed1be4c6
BLAKE2b-256 2f72ed4760665f468dc61269d890c563dfa5a2bed8ef73d6aa59a243fd65506f

See more details on using hashes here.

File details

Details for the file boost_histogram-0.11.1-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: boost_histogram-0.11.1-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for boost_histogram-0.11.1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b0056c6df413c856282c0bfabb9c7bf100efe1e31f0e6989a214c238f106002f
MD5 b0632e1d8d763414766c9afc1aae160e
BLAKE2b-256 b00913bf316776197485e1bc1ed956b7b2ed825ef913ba2798798f1ee35245b7

See more details on using hashes here.

File details

Details for the file boost_histogram-0.11.1-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: boost_histogram-0.11.1-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 724.7 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for boost_histogram-0.11.1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 41ac629aabe1afa185599f53ee8a76f6a005b78b65244b3db3d9b50ef3d5c622
MD5 54d1005de88ed794291aebb12a7c7000
BLAKE2b-256 a2ca562c87c4a1063ab645d96ee14048da14be08539d165bbd0b2786194e4112

See more details on using hashes here.

File details

Details for the file boost_histogram-0.11.1-cp35-cp35m-win32.whl.

File metadata

  • Download URL: boost_histogram-0.11.1-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 569.6 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for boost_histogram-0.11.1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 065d85d7b8470d0547df179193c2cc3c04d492a6fa026f0661d05d0c110687ce
MD5 3ed592d91a8bbee06dd7498f9de58674
BLAKE2b-256 97ea2d9201ad20dd308fdb6dd3058244cb14478dd0d24fcf78d17056caea170d

See more details on using hashes here.

File details

Details for the file boost_histogram-0.11.1-cp35-cp35m-manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for boost_histogram-0.11.1-cp35-cp35m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b866f01e9c5ef850849bca77f42f56cc16e01fe618ee0416eb910af954aa20ba
MD5 a1e2a6b969f35518108a8a8b268a5de1
BLAKE2b-256 7036a47bfc47063cb1d76f7e784a83776d17a62324279604d22e63a939f30776

See more details on using hashes here.

File details

Details for the file boost_histogram-0.11.1-cp35-cp35m-manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for boost_histogram-0.11.1-cp35-cp35m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6f59d55da2a17b6252d9a0ec91748b425f1a6a5c74f0d9173404f9fe15270444
MD5 5e9dd1f60f55abb1ceff6368748f4f60
BLAKE2b-256 f05272c28584c6ff8700f520918a5bc6010bdbd9e837f2cc0a680ab96625a185

See more details on using hashes here.

File details

Details for the file boost_histogram-0.11.1-cp35-cp35m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: boost_histogram-0.11.1-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for boost_histogram-0.11.1-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 500981901060b16430aff3dfb7b061df491528167850454a6ad193f6c53badbf
MD5 14e2813f624f724e52290c0b66ca8d82
BLAKE2b-256 34f7871b6114be8a4f3f5f2c043b57ad66fed8e23d51dc1ac324640e16339808

See more details on using hashes here.

File details

Details for the file boost_histogram-0.11.1-cp35-cp35m-manylinux2010_i686.whl.

File metadata

  • Download URL: boost_histogram-0.11.1-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for boost_histogram-0.11.1-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 3f0c194b8532df43232385319034baacf26f5bf27ac041db643de88963fc6580
MD5 d805501d397638c3f20beaee703f107d
BLAKE2b-256 cbc44b78d3637c92e24e7d836f9598545938804de7d26803522836664425bb2f

See more details on using hashes here.

File details

Details for the file boost_histogram-0.11.1-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

  • Download URL: boost_histogram-0.11.1-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for boost_histogram-0.11.1-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c18930805724ad4d7142ca8e0d13eb99cf4e155fe6f6a7109c3f565c9096d597
MD5 a5cfcce5861587d5a910c992b0d78aba
BLAKE2b-256 494f689a9dd4896e9571261a7551ffcf93b1a18f1570b80fafaf6789c3f69e3c

See more details on using hashes here.

File details

Details for the file boost_histogram-0.11.1-cp35-cp35m-manylinux1_i686.whl.

File metadata

  • Download URL: boost_histogram-0.11.1-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for boost_histogram-0.11.1-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 0ecd0c54e942b1168163f04405366e88decf1e720ffb398001dea65d05640ab9
MD5 d9cfe7892c7892d40cd06772cc4dbcd8
BLAKE2b-256 0b65afa31f2f80d57ec702949f490ffe0323e0bf1dde12969d53da84698dd183

See more details on using hashes here.

File details

Details for the file boost_histogram-0.11.1-cp35-cp35m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: boost_histogram-0.11.1-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.5m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for boost_histogram-0.11.1-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 de6118e36e870cf2d8d5185886203f2ba11eb99716346c5039420823ca04a128
MD5 c6b3bbcff66666c9acf8209e4cb16fce
BLAKE2b-256 115455f20c6381c80de17b5fe5cdefd8a60e9630f792add3075abe668a0f7dfe

See more details on using hashes here.

File details

Details for the file boost_histogram-0.11.1-cp27-cp27mu-manylinux2010_x86_64.whl.

File metadata

  • Download URL: boost_histogram-0.11.1-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for boost_histogram-0.11.1-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 1842f2dd1d2ddfff85ccc87c45b28dda348372766a1e3729b887d3866ed79724
MD5 36711a4148153d917fd674ac421f2828
BLAKE2b-256 23851babc437e41fe2ff259d1efc821f7b046865e2732af1e46e92cac30d1f4a

See more details on using hashes here.

File details

Details for the file boost_histogram-0.11.1-cp27-cp27mu-manylinux2010_i686.whl.

File metadata

  • Download URL: boost_histogram-0.11.1-cp27-cp27mu-manylinux2010_i686.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for boost_histogram-0.11.1-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 71ab8cf31b9830ebc1abf4a07ef647b9832954c9b3cec1b9572d7b1b663c9a51
MD5 b7a4fcb1988a47891ed74ca885f96f09
BLAKE2b-256 b83b9d08a1fbc066d53fa7b6f16e166678fa5976b2123901ddafece1620ab49c

See more details on using hashes here.

File details

Details for the file boost_histogram-0.11.1-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

  • Download URL: boost_histogram-0.11.1-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for boost_histogram-0.11.1-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 2b99fe60bb4218e21d321b8a37c150627d154b077c5674480b3817e48de29e41
MD5 4398c062eebfa2fc2a88fdd60ef76652
BLAKE2b-256 0d20ce398a3ac23d50c19e2c04e393630bd2c01a02686f3723947fd44d4ea554

See more details on using hashes here.

File details

Details for the file boost_histogram-0.11.1-cp27-cp27mu-manylinux1_i686.whl.

File metadata

  • Download URL: boost_histogram-0.11.1-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for boost_histogram-0.11.1-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 5955d10ebf538064cdbdb391f3f65da4af887d689a21f13956c3d0c5a2f850b5
MD5 a6d66b42db9a08e332398ef3323aef3a
BLAKE2b-256 2557f888b914fe69c92f2a5f8d015ee75ba9a070e4605e6cf1627623c98498bb

See more details on using hashes here.

File details

Details for the file boost_histogram-0.11.1-cp27-cp27m-win_amd64.whl.

File metadata

  • Download URL: boost_histogram-0.11.1-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 783.0 kB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for boost_histogram-0.11.1-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 c7837743912f6fb9efe8161626abe008f10107257e05ba55f3dc53af91ada1d4
MD5 dbd72f44328679eb02db7616aba1654c
BLAKE2b-256 020dab1d9cc62a3b3a9680041c14346a840deaaad8c50077d69568445584bd56

See more details on using hashes here.

File details

Details for the file boost_histogram-0.11.1-cp27-cp27m-win32.whl.

File metadata

  • Download URL: boost_histogram-0.11.1-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 616.3 kB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for boost_histogram-0.11.1-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 55bf2c59493d0cf02294f5a5fb4f9782cda7628d4565e64fc10f5c037058ed2d
MD5 221502aecfe43c7727141c0dac5a6458
BLAKE2b-256 edfbf6e344e8da94de417b6c84e9d96676e3db65ce99aa24d72c7a13a5fad61c

See more details on using hashes here.

File details

Details for the file boost_histogram-0.11.1-cp27-cp27m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: boost_histogram-0.11.1-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for boost_histogram-0.11.1-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 be483298d1cda9e9ad8822d14162d96ba9e4b508a6cbe8327976a79b0efe02a3
MD5 24d830ccf279ab9bc02dc8a1206e8842
BLAKE2b-256 e1066e1f20faf43b4d769cc0eaf52193863716affdd1e774ea92fec3ec045043

See more details on using hashes here.

File details

Details for the file boost_histogram-0.11.1-cp27-cp27m-manylinux2010_i686.whl.

File metadata

  • Download URL: boost_histogram-0.11.1-cp27-cp27m-manylinux2010_i686.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for boost_histogram-0.11.1-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 4f50a07f1d4c489ed96765b1c20d4e9f3e4fc3952cafe77d2b365738439c3da6
MD5 51ead706304c17696693bfd3dea209ec
BLAKE2b-256 e9e4e3979ce9b4212957a49017522aea5e84692c81dbfbdb7ffea67a2b0e3ad7

See more details on using hashes here.

File details

Details for the file boost_histogram-0.11.1-cp27-cp27m-manylinux1_x86_64.whl.

File metadata

  • Download URL: boost_histogram-0.11.1-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for boost_histogram-0.11.1-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a9a22d164e8313f747feb997796bd8f65efcbdbea7d237dc70ba69efdc130fd7
MD5 3b021a96e4f9f4ef1a392f1eb6e600b3
BLAKE2b-256 9328af08151084cc83f50c253bacc93ff98be09e4634e4ff4637d6b78333e69b

See more details on using hashes here.

File details

Details for the file boost_histogram-0.11.1-cp27-cp27m-manylinux1_i686.whl.

File metadata

  • Download URL: boost_histogram-0.11.1-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for boost_histogram-0.11.1-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 ebb6e06793a9f85e8daf92d8c5ca2c895291f19f9ca7f86931b82f4b87ffcb4f
MD5 e7b365fd7592800a2bcf2a865347ecfe
BLAKE2b-256 f3b6500577a6eec199463674f90adc85d6df7d345c4d191fab3a2cee34095005

See more details on using hashes here.

File details

Details for the file boost_histogram-0.11.1-cp27-cp27m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: boost_histogram-0.11.1-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 2.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.0 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for boost_histogram-0.11.1-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5f5984e902bb96107dc251d25af197242c97c22d95d5f96a955b8ac61d288807
MD5 8acd9bf5adf0a763392be4dbb0cc6513
BLAKE2b-256 5b14e01918afc9ab3c1def188d90bbd51cbcea8037213e03482a2a5d19f47d78

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