Skip to main content

The Boost::Histogram Python wrapper.

Project description

boost-histogram logo

boost-histogram for Python

Actions Status Travis-CI Documentation Status Code style: black

PyPI version Conda-Forge PyPI platforms DOI

GitHub Discussion Gitter Scikit-HEP

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 PyPy 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 7.3: 2.7, 3.6, 3.7
ManyLinux2014 ARM64 & PowerPC 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 7.3: 2.7, 3.6, 3.7
Windows 32 & 64-bit 2.7, 3.5, 3.6, 3.7, 3.8, 3.9 (32 bit) 7.3: 2.7, 3.6, 3.7
  • 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

🐛

Chris Burr

📖

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.12.0.tar.gz (1.0 MB view details)

Uploaded Source

Built Distributions

boost_histogram-0.12.0-pp37-pypy37_pp73-win32.whl (561.0 kB view details)

Uploaded PyPy Windows x86

boost_histogram-0.12.0-pp37-pypy37_pp73-manylinux2010_x86_64.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

boost_histogram-0.12.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (1.5 MB view details)

Uploaded PyPy macOS 10.9+ x86-64

boost_histogram-0.12.0-pp36-pypy36_pp73-win32.whl (560.7 kB view details)

Uploaded PyPy Windows x86

boost_histogram-0.12.0-pp36-pypy36_pp73-manylinux2010_x86_64.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

boost_histogram-0.12.0-pp36-pypy36_pp73-macosx_10_9_x86_64.whl (1.5 MB view details)

Uploaded PyPy macOS 10.9+ x86-64

boost_histogram-0.12.0-cp39-cp39-win_amd64.whl (818.8 kB view details)

Uploaded CPython 3.9 Windows x86-64

boost_histogram-0.12.0-cp39-cp39-win32.whl (559.1 kB view details)

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

boost_histogram-0.12.0-cp39-cp39-manylinux2010_i686.whl (1.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.9

boost_histogram-0.12.0-cp39-cp39-macosx_10_9_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

boost_histogram-0.12.0-cp39-cp39-macosx_10_9_universal2.whl (2.8 MB view details)

Uploaded CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64)

boost_histogram-0.12.0-cp38-cp38-win_amd64.whl (732.3 kB view details)

Uploaded CPython 3.8 Windows x86-64

boost_histogram-0.12.0-cp38-cp38-win32.whl (558.9 kB view details)

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

boost_histogram-0.12.0-cp38-cp38-manylinux2010_i686.whl (1.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

boost_histogram-0.12.0-cp38-cp38-manylinux1_i686.whl (1.9 MB view details)

Uploaded CPython 3.8

boost_histogram-0.12.0-cp38-cp38-macosx_10_9_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

boost_histogram-0.12.0-cp37-cp37m-win_amd64.whl (742.7 kB view details)

Uploaded CPython 3.7m Windows x86-64

boost_histogram-0.12.0-cp37-cp37m-win32.whl (569.0 kB view details)

Uploaded CPython 3.7m Windows x86

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

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

boost_histogram-0.12.0-cp37-cp37m-manylinux2010_i686.whl (1.4 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

boost_histogram-0.12.0-cp37-cp37m-manylinux1_i686.whl (1.9 MB view details)

Uploaded CPython 3.7m

boost_histogram-0.12.0-cp37-cp37m-macosx_10_9_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

boost_histogram-0.12.0-cp36-cp36m-win_amd64.whl (742.5 kB view details)

Uploaded CPython 3.6m Windows x86-64

boost_histogram-0.12.0-cp36-cp36m-win32.whl (568.5 kB view details)

Uploaded CPython 3.6m Windows x86

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

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

boost_histogram-0.12.0-cp36-cp36m-manylinux2010_i686.whl (1.4 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

boost_histogram-0.12.0-cp36-cp36m-manylinux1_i686.whl (1.9 MB view details)

Uploaded CPython 3.6m

boost_histogram-0.12.0-cp36-cp36m-macosx_10_9_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

boost_histogram-0.12.0-cp35-cp35m-win_amd64.whl (742.7 kB view details)

Uploaded CPython 3.5m Windows x86-64

boost_histogram-0.12.0-cp35-cp35m-win32.whl (568.6 kB view details)

Uploaded CPython 3.5m Windows x86

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

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

boost_histogram-0.12.0-cp35-cp35m-manylinux2010_i686.whl (1.4 MB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

boost_histogram-0.12.0-cp35-cp35m-manylinux1_i686.whl (1.9 MB view details)

Uploaded CPython 3.5m

boost_histogram-0.12.0-cp35-cp35m-macosx_10_9_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.5m macOS 10.9+ x86-64

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

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

boost_histogram-0.12.0-cp27-cp27mu-manylinux2010_i686.whl (1.4 MB view details)

Uploaded CPython 2.7mu manylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7mu

boost_histogram-0.12.0-cp27-cp27m-win_amd64.whl (863.2 kB view details)

Uploaded CPython 2.7m Windows x86-64

boost_histogram-0.12.0-cp27-cp27m-win32.whl (619.9 kB view details)

Uploaded CPython 2.7m Windows x86

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

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

boost_histogram-0.12.0-cp27-cp27m-manylinux2010_i686.whl (1.4 MB view details)

Uploaded CPython 2.7m manylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7m

boost_histogram-0.12.0-cp27-cp27m-macosx_10_9_x86_64.whl (1.4 MB view details)

Uploaded CPython 2.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: boost_histogram-0.12.0.tar.gz
  • Upload date:
  • Size: 1.0 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.12.0.tar.gz
Algorithm Hash digest
SHA256 1d804e49419531f414dd422609bc7aa34a1498c66575b1e02e3d90663f444841
MD5 2f9af15e971740ffba2c890b4a1514cc
BLAKE2b-256 96cedf94743c94654175fb556ebc74c200d83e4658aa5df362cc743fdd374009

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.12.0-pp37-pypy37_pp73-win32.whl
  • Upload date:
  • Size: 561.0 kB
  • Tags: PyPy, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.12.0-pp37-pypy37_pp73-win32.whl
Algorithm Hash digest
SHA256 b0640153f74b64d2f9b92320d9a7f6839651e002fb2fc8f70dca3e22a8e96b80
MD5 fa383296badc98a2d596b84dc8d59c2d
BLAKE2b-256 23fd76064663a66ce4d16a472183baf2c5a4b363f2af446a470cc2d0808f818a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for boost_histogram-0.12.0-pp37-pypy37_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 03e5bb50b5798481802208a7ae9733ac93ff1d9506db2b72e23a3c39585b9994
MD5 6eb1603774eaa190cf9498f44695289a
BLAKE2b-256 36d1e5d42298b7931222c01f7f19beea734978424ff3977678f4020314f73265

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for boost_histogram-0.12.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e09f1c0916e18106da466a78066d9af0e50593c0ce2bfb4da8f4c06150396493
MD5 7f41123e435436b785f7e74d76437f3f
BLAKE2b-256 593d5a7c8350e53e206538381a2250c795682ed59e5fd40c6d2bfc169f68319a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.12.0-pp36-pypy36_pp73-win32.whl
  • Upload date:
  • Size: 560.7 kB
  • Tags: PyPy, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.12.0-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 51551a6426a9681a160d4b6f7236b4a31462a48eeb10a55b0f9bd8670ab0e57e
MD5 14740c4ffd64199b434f9c53178f7bf3
BLAKE2b-256 ccef846deaa67794c9a52a2edd2d9693d1f143ffe29ee2fd0d8f7b11cb11de34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for boost_histogram-0.12.0-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 ea2c0182961699e812e2d6fc15c1b6fcb601908abbf1e560d9c1dc2b8cc68111
MD5 46645bef011faf63e8f6cc1db93eba42
BLAKE2b-256 efee86dacdcf755c2530f2f6cbee007244d0b494964da0342ae205e5f0c365b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for boost_histogram-0.12.0-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e58c2995a81badb1351294a1ad551d5c8a6420d19ae264b1444e6284dec4c446
MD5 9bf7ae5d00a04587cb8398fe428243b3
BLAKE2b-256 a6bffa1273ca6c932c47c88a61ec9f12d3680b665e3e97c1b2dea4a62835df7e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.12.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 818.8 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.12.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b0300cacdb0b1efcbf5b47e2eec054917298416985a8e4db5fdfa62fc9a9d309
MD5 370942cca0900ee708d7fc3f36fb16cf
BLAKE2b-256 5ef5944ca8d07f6ea30d7b865d869b877c7d8272e795bc04f3e1dd6f18c9e72a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.12.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 559.1 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.12.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 2e0a31edd64b82e9e03901f923b4b96766aa61f791eb6a3bfb5fd1ae4f90ba0c
MD5 66bbcdcbebd0d8d03aa7e4ab2fe60add
BLAKE2b-256 57b218ffad25ed8959f614ce6245ec555d0b54376d6423ab86cd9088f887d83c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.12.0-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.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.12.0-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 6aeb43f832eca7832276146b5443579d8ec4821039c9d8cf88827e8b8e1e8a64
MD5 8c1fbdfc145e0abe78a5242283674c96
BLAKE2b-256 7538583c519fdb02c8cace9c573760b16d108de376c9eea6702800da17450e49

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.12.0-cp39-cp39-manylinux2010_i686.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.12.0-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 7cec7ae2896e332a728fa9077ae5781edcaefdffe33473571e864d5ffbea2035
MD5 4d187dca4ff8c04babafccaa24ad9c79
BLAKE2b-256 f3db159e198404037371742dc220f1464cc5365cc2f426f1bcd9b9beed1db8fe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.12.0-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.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.12.0-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 862a0c30ddbe53ca49a6b4529f025cb73919dab110ae19e0ddadc422d626a3a5
MD5 7eb99a788596d0bb58da8e63dc8761d4
BLAKE2b-256 25d9fc6b20b9b3ff8b5292ce246bde04c8b46f7abb4ae26a20c780f6230b22d4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.12.0-cp39-cp39-manylinux1_i686.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.12.0-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 f7fa002bb97e7c71484e8f7be3d493be0c4b90d9fade46ea91fd4ba34d4fa7fc
MD5 32a1579ce62c7a931b3d094c96d2bb14
BLAKE2b-256 ae019db97ae0bf6477b92399eae4283869b4cf19e786d90da328fc0614aa98ff

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.12.0-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.12.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 822a592cff1e64c82c7508be2d9ce7d9903b2963e55ff3343bddc2565d42949d
MD5 90105bbf0c6ca33b256c455e421ac97b
BLAKE2b-256 2c4d54068f4296c3a54b3755496561097a76540c85df12f6e88e1aed28a5206b

See more details on using hashes here.

File details

Details for the file boost_histogram-0.12.0-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

  • Download URL: boost_histogram-0.12.0-cp39-cp39-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.9, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.12.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 83d40fbb23de0f7529ff93738895d38c693968c1783c588c6e55d9a31f5ac249
MD5 df03dced489031c4ad3fb6b36c377839
BLAKE2b-256 1789a3580cf41984921e3974abf63b5bbc878589e9ebce84f63a7c16b6aaa62f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.12.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 732.3 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.12.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 0e76a78c17a699849acd015a6ec6ed0626b873ed3cadeaa9dfab0591201f94ad
MD5 b243de6d1b293605acc248f2f054986e
BLAKE2b-256 9030b3925b9131aaaf2ba537a205309619bae06451e14172e2bbe129971c1a85

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.12.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 558.9 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.12.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 fc9e1c48ca0edc819de2bdc3382467934ff7c1bc86ceeb4dc7d321268ef9b8f2
MD5 9116c9ce10c90f86d3a4f21194d7e6ca
BLAKE2b-256 488c0c96900e9e5e334689234fc68299ef8604772c23e9e30b5591ceb03ee5f2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.12.0-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.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.12.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 7f91591ae133e3a6fe7bcc5be5454a89b48d6628a337606491c03e8f9f94624e
MD5 f0f720da50f5ed54b72e406616def07d
BLAKE2b-256 253fa681d625302c682a53eb511b151cef6045195a83585056ce5394986230cc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.12.0-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.12.0-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c303f16304731a20c258a133e633cbf614a4f86a5aa1a80ed8557480da8a01f0
MD5 14428e1fc3dc747b4c8d81dfec840e21
BLAKE2b-256 9fc2ae218b35bee00e81f336f3a93b0b10697458e23a1730c4a11fe5bf63c86b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.12.0-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.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.12.0-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b0a1ecd9868a654064fba294c70c1fe7e7ccd2302fb8790c4d0de501da45a04c
MD5 74881d0362ca387be241ab78aabe5d2e
BLAKE2b-256 b0c9f84c4a7928732daec5ea5888add0fca7971f3df53434d0ff9a7395da75ba

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.12.0-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.12.0-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 61155c6b96076e119e23cf52245bbc1992b5b4b35b1ca5796d57aab8917e1303
MD5 7bbd08fab0a07696bea088d569ab7cf8
BLAKE2b-256 14373c001a66617c27b715206df5b2f7824877a508d37bdc572fb1ff48edd415

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.12.0-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.12.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 73e08eef90ebedfbc152ba06f8518f04e85600dc1d492e0f90bc118c167b0e11
MD5 9db6726dd54b73a79dda4501709caae9
BLAKE2b-256 8524afb3ca766d30e2e453f1a859048ea15288b3dda8fb6a5d03f650aadabc39

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.12.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 742.7 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.12.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 59e10c9d6f80927ce9d2ef19f19c8ef79b39c7eda39e6248892a5e9d78a1f1d3
MD5 73390bbd27b39986a3adbdfa3d95c1f4
BLAKE2b-256 9324608d629af4c9ef951cd775b98ac849e01a793c94e247967fe68112fee955

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.12.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 569.0 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.12.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 4fb200f6f6a7b706b844cbdc78be70600132eacb5e24e93e43fa1e8bae2dadc4
MD5 885d04d3ae6b33cef410ccda5a3558b6
BLAKE2b-256 35d51bb2dbc46d25209451d8b3908cf76dce8edb0447e33fc740b2c877cae4e8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.12.0-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.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.12.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 cbd642c4457826252b6d64377f10abf6a0f61aec15a6c5ac08c22c80188b83d0
MD5 e2315bd86126a2637c76b018c1a587e9
BLAKE2b-256 fdd14e9bcd0b0c5ca4d0477ca1a03abb313000fc4b72424e46431c455a9b545a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.12.0-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.12.0-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 efe151abdc21777d79eba68e6f03e350eefddf23ccff0ce0dbaf9ca617d68eb5
MD5 d7332ee29b94b4f7481de90115092899
BLAKE2b-256 0a2920eaf1300e4950f7018dc78c365a91a57a2419b1c038147487c889cbbc0a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.12.0-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.12.0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 cb33a2f9347bb3abe2f44aa3ac4a50e61dc2d227fb8738f2741b1ac33b8e5648
MD5 05134786d4f622de40fa04c394ba47a4
BLAKE2b-256 6fb02c5bb344ca80893f17af74d47346fa8e1b97f70e186d6498e5e07b4fa092

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.12.0-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.12.0-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 54edc13250d6e96c0b3359426ad345b96cc32b004b4896a2aef8c7bdb7a82c3e
MD5 1cdba22d8a3e0f9ecda4b7e6ef39d6e6
BLAKE2b-256 7a38431a1ac99f14e4a238553cd9c568087986d43b92d55e66dec89b0a45aa4e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.12.0-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.12.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a88d3d0f378f9293357ababd51924a8dc3208ca472d13e0c61db40e3ef81ed43
MD5 90de79a871760ae2da68440000f12470
BLAKE2b-256 580ac5a51130f2cceda2ce338331f76c8ef54027c191eed1175362156883a012

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.12.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 742.5 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.12.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 6c8a12d2d5c6a09b5f2df9aa177a2892ff7ba2a11de09f5338259f540bce210b
MD5 0e98352d0784d8c00e0e1afbea97d7de
BLAKE2b-256 ddacadc0024b343960ad5abd21912b7c365480dc6423f76241207c2ede7ea071

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.12.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 568.5 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.12.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 3cb1a7800d195c6e4a22ab92ed86ab3542a13808629c505ec55f2787060e2474
MD5 683bbaeaaa48e75b420970f4b0d74067
BLAKE2b-256 06f7a5f2ce01854c2e35c1f0583228b9ddff98be208ed834ee29b1bfd31266ae

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.12.0-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.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.12.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 33866734fa9429a2b1f981d52afa6a79d50eb6430c615535f48aeb76718500c7
MD5 a54f55ec706f86ec5afc9af8557dd37d
BLAKE2b-256 899f1974ee41a19f298c1adf0e703f66b51ba91b80ebca35edb33bcd9f9f59ef

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.12.0-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.12.0-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 3ed422e72e148fb705205c5df8d926aaf9d048ece3ef97b884ff756bb4746316
MD5 ccd651fdfc6aae82c7af7c67f2799b12
BLAKE2b-256 9538b1bb16cb3d0a44b8410d2be53216752c572addd30d399889948d206d5696

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.12.0-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.12.0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c7d17ef0fdc60cd1604a38e5ad54df214111819c2a076772d59f1522ad013570
MD5 2aa6c667d8bbe2d24ecf1603089c0ff2
BLAKE2b-256 94b9c7fa844fc244e61c2354a85d470c92feae48c95ae54eaa7c19e4cf605e49

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.12.0-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.12.0-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 329832c27f5dc9711a6eb7c2435679db7662af3503da5f48f9efdea1d107472e
MD5 45b1f0e04cf7f1c42cf9919ac41768f6
BLAKE2b-256 38f9f2251d0bdbe0fde99df435a5493aa3590360b9da1314a8ef3ca8e0b51f75

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.12.0-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.12.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 505b45981227d76729ddf66ce24057bae98e81349b85e127f0d8665a7e2f8675
MD5 7a3f61f836ff33deb3bac7072364c34d
BLAKE2b-256 193cec379453ea97c17911ee8b7812bf6aae965314bb382dfd0b2197b3dab191

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.12.0-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 742.7 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.12.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 1fb6abe103b967e42bf4a258a5a69fde85364acc2efd83ea25b89752d282ba05
MD5 5a9a26a171b3bc0a3312927e77c24dc4
BLAKE2b-256 1c6fe3bea4645498b2c0992da1da6aabf63b904451312591deb2747716e32d36

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.12.0-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 568.6 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.12.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 c2d7e40e6966489d001785c6455a2f8e37ab7a032c7ebebd1fc4de0200dc4576
MD5 fa9bd2d8c965524c325d47f614ae4853
BLAKE2b-256 f86faeb942e4fe5a973d59d51d1d17252761fa5bb9377b97265c2672b835ec1c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.12.0-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.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.12.0-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 1cd2b40470eecd30f35da8bbec01e1f687c5db7c4b055df8c6b2ddc2cb5dc06c
MD5 943fe3b2dc4f67f71cd573daacaf77f2
BLAKE2b-256 f82eddbbdfc6a4374e5b125ac97e92079ff9b9dd321b9d01a5d8f36f73160a8c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.12.0-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.12.0-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f236dc55f0b7fe4fca719615fb57332498da3d140287eada4f0d476b0c3544f7
MD5 af9283e7b4cfc45edb0a8760f9d7c38e
BLAKE2b-256 c7cdfdf563316a6532b185f03b5d7673ef25b39db43fb49b58f762989c17a783

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.12.0-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.12.0-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 2525e1232ab449abb17d8bc9a68f2853ecf6d6d30630d2cfd003041a059110e2
MD5 1208b9b62e881ad301f68999959706c8
BLAKE2b-256 143ab911dd4190cd522ed9f4e136d6e7aaf59854461a99f0309ea0194d0c9e36

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.12.0-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.12.0-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 094fb8f8a841db665493e444d32fd27da4e42ed039e8675fd37fb6dbacd582c6
MD5 1a00f5a17a8225b8fff68e1dd8a0a181
BLAKE2b-256 2f704daf38ba4b925dc83e5e54562d51b75e89502e4c61f7da4986419d8e9eba

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.12.0-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.5m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.12.0-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 182276d97a2f2d87c8f5737acbd529c62550f7fe648b330b83e56ecd95049343
MD5 1990bf249b6a60f7073e7e27c070161b
BLAKE2b-256 810cd79281995c545fac71493d584df97ea26bd3905e183fe248601cb5d3be49

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.12.0-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.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.12.0-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 eecd52a05b9450bbc5bec46a286ca7cb85e245cabdb87bd42f4e46d7823f15d3
MD5 4e720b60f5adbf94cadd00505024fb4f
BLAKE2b-256 0078cb0722b787fa978cdbcc2b8b92b314d9ba54f890f830c1d6980952e17515

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.12.0-cp27-cp27mu-manylinux2010_i686.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.12.0-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a52f0fe3c34bf777ad33ec84c865f70d715f6a4efc10fb93cb34866f0e2ad1e7
MD5 fe6b1a069de1761639daa512f919f3f7
BLAKE2b-256 920fb90819e522f53a5f5c1846a399b8b7c2dbe86b3a66d91de4c7c029daccad

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.12.0-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.12.0-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 bf9743b6b2d99f6a524f4b1edf7efda60e6fd1ad24dc4d27408e77af2f45fe0e
MD5 a267a77148e16a6198b4b3f9a9fdab1e
BLAKE2b-256 adcabc9bce311ac4a0818d70e9836897b01fcee7ce817df3b23dd1b4fe320cb1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.12.0-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.12.0-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 b1b2f6eef0c8e909fdcc6761ea93184ab93215d8241ced154484565ed0a09b81
MD5 90101b4d2bb948637d67d7545b9510d8
BLAKE2b-256 62120fafce4eb7770921edf85f423583c7cc181cf650fe31be0d0bf510e0959c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.12.0-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 863.2 kB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.12.0-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 40b743daa262d7d88024ebb0d7300a0a56cac1ef93b5835e9eab53abb903d76f
MD5 140692335aaf1b0f3cf8645da00928cb
BLAKE2b-256 bd563ca2fa7e47a900e76d8a0d42138cdf334a3670cdfd85e27018aa3713c781

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.12.0-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 619.9 kB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.12.0-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 e7fd7ac3983788a3664fce345cffa9c70dabe50414a378f397bbffdc3341eb86
MD5 db3d4af3b3156269d4cebd50f9bb1290
BLAKE2b-256 b2495f77237f859d1572b32a225e546d399aeb52f009267509dc66e3f58d9ccc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.12.0-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.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.12.0-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 ac3484fc9804c9fee9ef709ae321595da407bbaaad112d9eacea31b3c7255b52
MD5 7f3907bcb8f67477cb2112f63e97043b
BLAKE2b-256 8d90ccb1ceb7207f5abedabb3aa7678b244a97807a119984e76293d1244b1288

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.12.0-cp27-cp27m-manylinux2010_i686.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.12.0-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 9eb5534b5342adda84c428120bdf9d0955d58a0ea63ad13249f73c658a076a92
MD5 76d9ddd43243c689c844768e387a1088
BLAKE2b-256 c5a09d125677d9924d58c78a8df133bfaf89b57338b41f3d1c19420c32577062

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.12.0-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.12.0-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 5d3ac16c97263811a524ba911685112915e81fa35b6b217848c360cedf288ccf
MD5 2c5ca9721ef60746b783768ac0de8786
BLAKE2b-256 45835db63ec2f772299441d82c7a0738a77c5ebbb1eab378a10fd1d987957a47

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.12.0-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.12.0-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 55086975cc28d9893f4175f3da9eb404bfe69b8aba9465e7db93fcab3b7a6e95
MD5 41259dc9cf48188bd2476ec0d4546c1c
BLAKE2b-256 a38da2608861e513d996ee3aa267478d97a0f2ee0128fb5ce1dc27220d159a4e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.12.0-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 2.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.12.0-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2995c1e89b0f93cda78941b7a6b35bfe3e4c71fb62371ed22136411b4702bf27
MD5 57e05093ca9257ff9d2b11e3cd7db037
BLAKE2b-256 9321b254b74d281a5c4c566be3de763ede241aab5f821be1cbd68af06f1fcbba

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