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.

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

These are the supported platforms for which wheels are produced using cibuildwheel:

System Arch Python versions
ManyLinux1 (custom GCC 9.2) 32 & 64-bit 2.7, 3.5, 3.6, 3.7, 3.8
ManyLinux2010 32 & 64-bit 2.7, 3.5, 3.6, 3.7, 3.8
macOS 10.9+ 64-bit 2.7, 3.5, 3.6, 3.7, 3.8
Windows 32 & 64-bit 2.7, 3.5, 3.6, 3.7, 3.8
  • manylinux1: Using a custom docker container with GCC 9.2; 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).

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 direclty. 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.

Numpy is downloaded during the build (enables multithreaded builds). 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

📖

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.

Project details


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

Uploaded Source

Built Distributions

boost_histogram-0.10.0-cp38-cp38-win_amd64.whl (683.3 kB view details)

Uploaded CPython 3.8 Windows x86-64

boost_histogram-0.10.0-cp38-cp38-win32.whl (552.4 kB view details)

Uploaded CPython 3.8 Windows x86

boost_histogram-0.10.0-cp38-cp38-manylinux2010_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.8

boost_histogram-0.10.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.10.0-cp37-cp37m-win_amd64.whl (660.7 kB view details)

Uploaded CPython 3.7m Windows x86-64

boost_histogram-0.10.0-cp37-cp37m-win32.whl (558.3 kB view details)

Uploaded CPython 3.7m Windows x86

boost_histogram-0.10.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.10.0-cp37-cp37m-manylinux2010_i686.whl (1.4 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.7m

boost_histogram-0.10.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.10.0-cp36-cp36m-win_amd64.whl (660.9 kB view details)

Uploaded CPython 3.6m Windows x86-64

boost_histogram-0.10.0-cp36-cp36m-win32.whl (558.2 kB view details)

Uploaded CPython 3.6m Windows x86

boost_histogram-0.10.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.10.0-cp36-cp36m-manylinux2010_i686.whl (1.4 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.6m

boost_histogram-0.10.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.10.0-cp35-cp35m-win_amd64.whl (660.7 kB view details)

Uploaded CPython 3.5m Windows x86-64

boost_histogram-0.10.0-cp35-cp35m-win32.whl (558.3 kB view details)

Uploaded CPython 3.5m Windows x86

boost_histogram-0.10.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.10.0-cp35-cp35m-manylinux2010_i686.whl (1.4 MB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.5m

boost_histogram-0.10.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.10.0-cp27-cp27mu-manylinux2010_x86_64.whl (1.4 MB view details)

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

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

Uploaded CPython 2.7mu manylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7mu

boost_histogram-0.10.0-cp27-cp27m-win_amd64.whl (719.1 kB view details)

Uploaded CPython 2.7m Windows x86-64

boost_histogram-0.10.0-cp27-cp27m-win32.whl (615.9 kB view details)

Uploaded CPython 2.7m Windows x86

boost_histogram-0.10.0-cp27-cp27m-manylinux2010_x86_64.whl (1.4 MB view details)

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

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

Uploaded CPython 2.7m manylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7m

boost_histogram-0.10.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.10.0.tar.gz.

File metadata

  • Download URL: boost-histogram-0.10.0.tar.gz
  • Upload date:
  • Size: 1.3 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.4

File hashes

Hashes for boost-histogram-0.10.0.tar.gz
Algorithm Hash digest
SHA256 e8dee77221ee87743c3e0800fca473ee15639d2cd4efc1d5efd6c0509c907bb4
MD5 603f9634852c40208fa43ec7f19f6e5d
BLAKE2b-256 577daef42883cbc19cc8449bcb28e70a376ed0085ca3f462181196c0536362cf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.10.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 683.3 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.4

File hashes

Hashes for boost_histogram-0.10.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 33bac35ac54a592530edc95e9259e8fe637bcffb4d257f16a392107cb8c5bd1d
MD5 f00c0dfd9c2b1fb6cb260636c66a1548
BLAKE2b-256 b858aaf82bc86a483a0fe046a6cf4d43d3955d2ebbf5446428736e38d5d4b471

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.10.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 552.4 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.4

File hashes

Hashes for boost_histogram-0.10.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 35d27335b97c76947ed8f0a4da1ad7f2844bd54f3e11d34d5ab0ec7697a0e557
MD5 4b4999d4523c8e3722a617382e022a51
BLAKE2b-256 bf80554a05ad404bf1a3bb2a8849060c36cf9ab49ba4675ad768772a5bc1a678

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for boost_histogram-0.10.0-cp38-cp38-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 593784cc9f5b0308b320ab001fdbdf861bab708839233739044b681b18031b11
MD5 c206032f50b47e7c70b8fcc36154c903
BLAKE2b-256 6fcd8769b559cff0f6708d7ee718e585ead5348afb268a706a542791a0fc80ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for boost_histogram-0.10.0-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ba6226fb0f26b02f57e61f2855ee5d9b82b3450c7ee644be539f6fb027b8855c
MD5 7a37e5d2a6e6345998503c14fdbc2676
BLAKE2b-256 71038d80065c3dc276b6fb965c674b56d89184bb6eaaa2f705eef40495b6976b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.10.0-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.4

File hashes

Hashes for boost_histogram-0.10.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 56acb32e9071eb592bc97379a6d0fb8834051a537758ddb6e8b3d06c276e932f
MD5 24427ab856c89c6d8ef35c0726b42aca
BLAKE2b-256 27da409b72e5c2fea9b440a92b1a17080e92a02d3d9dc2d039bf1c114c63c37d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.10.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.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.4

File hashes

Hashes for boost_histogram-0.10.0-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 1fc702a46ee528e4deacd24f8ce53aa1f2c9e0d2477a1dc53d47cf2b20c3f0ce
MD5 18425d145c87ca39814cc40bf9a3c7f1
BLAKE2b-256 1dd7f5d75a69406d7a654af14030ec58963cde66fa044694316ea87bf423b06f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.10.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.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.4

File hashes

Hashes for boost_histogram-0.10.0-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 93633f7a3a0abf4e24f1f7c351261c570bf7cbdb4b4c6b17a14dfb49b27432df
MD5 164a4ec940e86a5121122b051d438bd0
BLAKE2b-256 90c4cc1484ed2c1a73e87a6b6d8f2d5757dff98b6f15692efeb6ae620b9a3401

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.10.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.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.4

File hashes

Hashes for boost_histogram-0.10.0-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 d336cdffaa211b3c68739a101ff43ee85923b132cfe8dec20b704c6ccba2dd74
MD5 550c7ecdb2afeb7c8ee680680bc14f10
BLAKE2b-256 0520a6b626391185b371f9292a4158aa5fbaa552a1ba5f68d9878b6cd42b179f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.10.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.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.4

File hashes

Hashes for boost_histogram-0.10.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d0f2d211531dd988a7da2c440f15bbe295502a55186907dbd1f84f4b13383981
MD5 d18bd754e5addb9d000d4f740173e7bb
BLAKE2b-256 8031229cf2501dd5b8fa6984dbce51c5dce3a350433c294b70c67ade4dcd3fe0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.10.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 660.7 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.4

File hashes

Hashes for boost_histogram-0.10.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 539e1decdbef5be223dc31a29336d3b2ff1aa563fde0ee63921425592f31da86
MD5 b1ce4c2a802d631a252064aba47f1907
BLAKE2b-256 400165cf0e75b3485b84c592f4f6e8fa9f74c4ca35ab8391e2d68a2e5bcf0fea

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.10.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 558.3 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.4

File hashes

Hashes for boost_histogram-0.10.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 5d133eb73a49e6e8a396088c8650c04301e8f9d2f25b9170f443e773306dd84f
MD5 00f4f5d1c1cec5fb54410ef06b9f8c42
BLAKE2b-256 3462464abebe01265d87c469b19721bd708957e71991e502d349061f21bcd06c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for boost_histogram-0.10.0-cp37-cp37m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9459137ee486ed4c817e0c0b925ebe2e8910922cd9985ad3b68df3e935e58147
MD5 75ef6bf5b0be873fa715c342ecf46e63
BLAKE2b-256 a3442e90feab970714ddc1ac0af68b8624c2eebab67819c253611a56261b55f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for boost_histogram-0.10.0-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3fa85ce6e1d4ca4e89c05a9eb56d8c938bdf35d35c939f42f1694680d646a454
MD5 f7000377389f7125605d56636817a430
BLAKE2b-256 d13e432990c8b9b7688359215b3e374804ce35ff995cd6ed4dbd38435829b969

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.10.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.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.4

File hashes

Hashes for boost_histogram-0.10.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 28f116d4c682f431681f1cfe9b15435c2c381f45882297d13a3a9d2045526c41
MD5 bb0a1dd1d61d1db066e174eef4c28e9f
BLAKE2b-256 1647bc82d9e1efeee2109101bd66a3bbfe25808f950f1b3bb01cb7523f4814e4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.10.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.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.4

File hashes

Hashes for boost_histogram-0.10.0-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b5bc9a182cb2989051202c000adcc75f897a14473edd299623cf170284c60caf
MD5 89b9a384d328eb954d8fc9991d5042ac
BLAKE2b-256 ffb19bff1c9f328d711b9a683c0dc40b0ccb1365366557c274e94d3b847ad46c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.10.0-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.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.4

File hashes

Hashes for boost_histogram-0.10.0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 2ca40d95a02f3cc5693c1181c6ac0762fa2789f3db17d28a879199567d7ebd8c
MD5 cb9258d4dafdb58017f249801596d3da
BLAKE2b-256 7e2190ff8d3cf928e8980fe928b877b6783741729a250a735c6a76f7993efde9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.10.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.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.4

File hashes

Hashes for boost_histogram-0.10.0-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 f869bb810a14eb1b17795e81c6cdf60ccbadf54efce81129501b75872873c693
MD5 845c250fd0d166128b90ee90abf310ca
BLAKE2b-256 8db17833bbc79fa869972f280004abc39b40aaefddc5def4859acf348fdc47d0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.10.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.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.4

File hashes

Hashes for boost_histogram-0.10.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 969c9aa0b89a63b4e6f6afff34759a16a3fd6fcaa339fc9370f398baa71dbe39
MD5 222571f4ba07adf82031dc370a56aec7
BLAKE2b-256 05d0a9ee10cf2bef686f94217d117cd530cca5cf3de60ada73dc341e1abf68fe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.10.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 660.9 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.4

File hashes

Hashes for boost_histogram-0.10.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 e7276d47c6b6a47611f5e83dd439a070d7dcf91f11ac616af7f6e3174833a2d3
MD5 40dd734a7af88beee70a3447fa3a3e9e
BLAKE2b-256 bddc55510a730a1ad407c8880a14fee6c4bcae0fd4fb810e1984fdfb7a23157e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.10.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 558.2 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.4

File hashes

Hashes for boost_histogram-0.10.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 731b80f710bb89b8bd38b98c3e0f0167c25d93ea4745a2e8099d64b23922f0af
MD5 37d2d85dd58345bda8913e4c7340ca18
BLAKE2b-256 6ad42753a9f8d1561f0fa41560bf19ed34a1148cb783d773e511331c7fef9ba4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for boost_histogram-0.10.0-cp36-cp36m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 10e19adea47e944ec39d2e9c39f4d249db212af5e3cda07ae4336fe838b4d553
MD5 a6e4ae6a8978168858603c133b0e700a
BLAKE2b-256 ac143897f0440dcb3e8e0c608c579ddf624dbc54edf6a3f4899a9bb083c96476

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for boost_histogram-0.10.0-cp36-cp36m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4e44ab9b47d8c56b1d4d5262dbe2d53232067d1500da2a15d7ce469a8cbf7a05
MD5 56bcc21ef962857d7adcbbba1a415983
BLAKE2b-256 2f63a61bfa2986227e0628d6329c30812a2984bc7f54a2acdd11c0c84c66462b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.10.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.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.4

File hashes

Hashes for boost_histogram-0.10.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 705e6afedcb3e4e6ef6af191f27818c28a9b4d2004cc70233c0d8d768f010b3a
MD5 d7a9cc8a8d0c6be2dbaa7968a6005de6
BLAKE2b-256 b012d739a7f62d6f8921d79a03150142f36e47d403fdab1a195ece23ff5ef34c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.10.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.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.4

File hashes

Hashes for boost_histogram-0.10.0-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 27f860f271ac2acc6491ff57f6473700ec17fbe5c29a339760250ce36a9fcd39
MD5 d142fa6a7c7557c0188c55146cc16c4b
BLAKE2b-256 d942d0c1c1c1be40a2f1578ce96d85c1f887d5befd84cc086a69be6cd1c60e60

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.10.0-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.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.4

File hashes

Hashes for boost_histogram-0.10.0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 8f6d29e7c330e1de1c706b7e38be807b306888c7d7204bb67ccc6f77a982a4c9
MD5 57d0e10b9e0e183d44ab016ac1696ab1
BLAKE2b-256 608fc9532589a1329e69c6f1834711490fa35289662ee463f0958a62bcf2d426

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.10.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.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.4

File hashes

Hashes for boost_histogram-0.10.0-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 a073ae9b37738750acdbcb0ade6430780ab22936b838d09288b76d989b16d6aa
MD5 2f8fbda8461ec1824e00adcf4b811656
BLAKE2b-256 fe073c3cc4be586e43be952735d7725bfe6306a015426c6e24719ffe7c1d2d46

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.10.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.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.4

File hashes

Hashes for boost_histogram-0.10.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4277b3918c32ec53275e588deb8581d13a6cde64b53a5bf1928e7014c7cb7f6c
MD5 f689d8db295c7d5839a1dff279a7223f
BLAKE2b-256 bd40dcd69bf7480d3ccb76b0d7a6323c92106f0ec383f7412b1ad685a3f0daaf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.10.0-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 660.7 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.4

File hashes

Hashes for boost_histogram-0.10.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 2016136066d2b6c5290b202e4a78110a67180b66b0dea0a90dd44b4d49e15cc8
MD5 5d1e65e9e070e1b7577f3bf5208ab261
BLAKE2b-256 c9a3565565f584d4850370aa8d248c505d18e5863e85b4988976f6f04f8daf85

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.10.0-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 558.3 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.4

File hashes

Hashes for boost_histogram-0.10.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 6d0ec6d6944ded926f799f3afce748cf6f3530b04c75adffe4c1af7a6cf5012c
MD5 c312d494e166026910937b3e6a5d2bf2
BLAKE2b-256 3656756bbce65ba5b07223e3c88e381fdd283972098e0c7277e93f3bff0fe7d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for boost_histogram-0.10.0-cp35-cp35m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b7d470e7994912398084df8417b725653884228f5c7b3f76dd1bb5a7bf250ee7
MD5 1dc6c626a255ae55e67d7ec9f44a7b25
BLAKE2b-256 43b8df7f7efbf6733adcead7cd677d550c485b814b3c9780f1eac5e2073aac93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for boost_histogram-0.10.0-cp35-cp35m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f43224df5a95636ec450f5737a8c68bd45c6848120fd31ee27e9a278cf547512
MD5 6a713421afbf26a1af7197215296e5b0
BLAKE2b-256 8c2c9d6b3a6e3f50e1036ee0f147092a41c36a2740227a36e2e6b29e159f1b71

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.10.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.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.4

File hashes

Hashes for boost_histogram-0.10.0-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 326b37b1408541530f976425c2a7c0f3d920a76568e993d5ae9890b40c8ffb4f
MD5 754bc961aacb2dd1eaf7eba5f96842ea
BLAKE2b-256 542ba59ccd408cbcf702a1b2fb5929581b622f9b73716c55973c7fcfb6c91d2b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.10.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.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.4

File hashes

Hashes for boost_histogram-0.10.0-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 8eddf2284b905aeb0eb05744c59520929f192e3163108f49ac74046b8b6e919f
MD5 bf3f8f091cff1d53bc2f70a47c9160e3
BLAKE2b-256 40da537c6757534321eeec13cfe32e6533362dda7b6339ab3b28cd6e669c8e92

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.10.0-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.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.4

File hashes

Hashes for boost_histogram-0.10.0-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 15b6de34ea518168d578a490eea61ab471aea46ee8927f0bb06c85187a293d02
MD5 ba6a7e072a67683c5e346be775c202fc
BLAKE2b-256 40628f0e264197bd77fa8d67d99332251f8d16b45a3c52babcef06623612f97d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.10.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.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.4

File hashes

Hashes for boost_histogram-0.10.0-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 fde7cdaddc5f5e641da1f31e8f5804e53b7d2163baff61075035202ed970ff6f
MD5 05c678c3d3f0290c7b0f3470f7602caf
BLAKE2b-256 d85ffdcdcda82aca10e475d09e1057f826ba30b109c248a0b8b4de0c27dd476c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.10.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.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.4

File hashes

Hashes for boost_histogram-0.10.0-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c41d85184a1ee9b47824772ac36d65ad2c77b2afd4b614f4debf4abfe64490df
MD5 4ea2c01d43b4a804830ef161e3e657a2
BLAKE2b-256 93268d912cd9e61fbaf79810cd280db343b9674b4539af128049bc2f4d4d54f1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.10.0-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.4

File hashes

Hashes for boost_histogram-0.10.0-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 b5b63ef60630292f132650e8b99a0be647688127a976fa8948fa117b27fe133a
MD5 110f63917f4e8227874e347e465684b0
BLAKE2b-256 2b21cef8768f27797950742f9bbfb47c3eaa0ed24453f59c744693ce0defa07c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.10.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.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.4

File hashes

Hashes for boost_histogram-0.10.0-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 39ce61569f81d40754105a7cea81e7a1dd047c8458ce8fce6a87f4559e45194e
MD5 315477ab10feeaca842f58ad8d635eb9
BLAKE2b-256 f6ab0121fd219e6fee3e5604106ea451844d8ee9b945f765edbbd2f91694c127

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.10.0-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.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.4

File hashes

Hashes for boost_histogram-0.10.0-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d3c2e696fb0c65916a939cb1e0d9ced9533b613d56d4c9fcf15907e69addccfe
MD5 cc62501066398b372e7ebad4e702c2a1
BLAKE2b-256 a154e3eda79050adaa6caafc4d572630d04dd1178229aa1946a5861c406f6632

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.10.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.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.4

File hashes

Hashes for boost_histogram-0.10.0-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 45ee4b66191522b8eed3d0a2c49783a55ebb5a39fb0f157fb3d21282e7e50cdd
MD5 b49f910d5f075655836d123d6c407296
BLAKE2b-256 9e2497cba8157586303dc7c81b1639ae0ef53e1aca2cbf591e97dab055208963

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.10.0-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 719.1 kB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.4

File hashes

Hashes for boost_histogram-0.10.0-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 6cb75d67eebbc129b5d33ab41b74158e2e8609212d271a812c5e5750fafb6d64
MD5 d28325b08e4c3ae3d91929bfd5969fed
BLAKE2b-256 aa7fdc8747a21164ba720b5b8cd75ca4ec438e614588218dbb91181938c9683e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.10.0-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 615.9 kB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.4

File hashes

Hashes for boost_histogram-0.10.0-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 5f08d4301c711d36c11e32f3177d1a9af216ccd50ac12ab81f774e20ce8f9f39
MD5 7f3eb03c0ec92a1736c02c67213cbea2
BLAKE2b-256 87e9f5efee2440b4c52d4760b4cbe1053a592d34b4a0d972502c0f479392af08

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.10.0-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.4

File hashes

Hashes for boost_histogram-0.10.0-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 071d7d3f56ddeae2da4bfd06aece5a270f719d09345551b2fbed0c5703da99a1
MD5 48f3a194946725799be5ac6b50216183
BLAKE2b-256 d286d048ed44ea6c9eee743f213024e16a011e1c1c3a73426cfbb9f954696345

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.10.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.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.4

File hashes

Hashes for boost_histogram-0.10.0-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 3c164214dbb4ac2149990619277f0abe48aec83d63e397bb55a093dfb04a9b6e
MD5 8ce133d9b148d03b84748cfd65a9ac36
BLAKE2b-256 c7f684a4c2278844fdb4c79f77bd7750b0ffb5e2003f955dc15931d3f6a2dd3c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.10.0-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.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.4

File hashes

Hashes for boost_histogram-0.10.0-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a039b02913b1cbaf97131e012f74df1a82ad7f588ca0cce2355434e114e8fea0
MD5 c9512eb03ae1a9ee8211dc8b02823c80
BLAKE2b-256 edfe3a411c745cc090a47bde371aef19fa13bf4af59f2d02a71726b54cfeb984

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.10.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.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.4

File hashes

Hashes for boost_histogram-0.10.0-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 e60bd17af384fe5470ed58cf78e242d1a36024422557f4eb5d1678c3ec8c0bc1
MD5 d83774958043acbe1c02a8b8b8dad97b
BLAKE2b-256 1d14e338bc3b56c741a1ba70e89c5475ce9c4440d3d2ed1cd3e4513b7babf760

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.10.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.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.4

File hashes

Hashes for boost_histogram-0.10.0-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 aa04697461c4a42b40a1dcf8a6c594aba36bbbed4ae22cfc5183862800aa67d7
MD5 11da3fa5d2007166dcdad43047b2aedc
BLAKE2b-256 9ffc6061200853b1118aaeee61c7d4be22f8b439d059d6fc5a288d5bc812a122

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