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

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

Uploaded Source

Built Distributions

boost_histogram-0.9.0-cp38-cp38-win_amd64.whl (702.1 kB view details)

Uploaded CPython 3.8 Windows x86-64

boost_histogram-0.9.0-cp38-cp38-win32.whl (563.1 kB view details)

Uploaded CPython 3.8 Windows x86

boost_histogram-0.9.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.9.0-cp38-cp38-manylinux2010_i686.whl (1.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.8

boost_histogram-0.9.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.9.0-cp37-cp37m-win_amd64.whl (677.1 kB view details)

Uploaded CPython 3.7m Windows x86-64

boost_histogram-0.9.0-cp37-cp37m-win32.whl (566.7 kB view details)

Uploaded CPython 3.7m Windows x86

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

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.7m

boost_histogram-0.9.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.9.0-cp36-cp36m-win_amd64.whl (677.3 kB view details)

Uploaded CPython 3.6m Windows x86-64

boost_histogram-0.9.0-cp36-cp36m-win32.whl (566.3 kB view details)

Uploaded CPython 3.6m Windows x86

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

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.6m

boost_histogram-0.9.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.9.0-cp35-cp35m-win_amd64.whl (677.2 kB view details)

Uploaded CPython 3.5m Windows x86-64

boost_histogram-0.9.0-cp35-cp35m-win32.whl (566.4 kB view details)

Uploaded CPython 3.5m Windows x86

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

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.5m

boost_histogram-0.9.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.9.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.9.0-cp27-cp27mu-manylinux2010_i686.whl (1.4 MB view details)

Uploaded CPython 2.7mu manylinux: glibc 2.12+ i686

boost_histogram-0.9.0-cp27-cp27mu-manylinux1_x86_64.whl (1.9 MB view details)

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu

boost_histogram-0.9.0-cp27-cp27m-win_amd64.whl (733.5 kB view details)

Uploaded CPython 2.7m Windows x86-64

boost_histogram-0.9.0-cp27-cp27m-win32.whl (630.4 kB view details)

Uploaded CPython 2.7m Windows x86

boost_histogram-0.9.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.9.0-cp27-cp27m-manylinux2010_i686.whl (1.4 MB view details)

Uploaded CPython 2.7m manylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7m

boost_histogram-0.9.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.9.0.tar.gz.

File metadata

  • Download URL: boost-histogram-0.9.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/47.1.1 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.3

File hashes

Hashes for boost-histogram-0.9.0.tar.gz
Algorithm Hash digest
SHA256 b87f110ca9e889845ad66461b15ec75b814999a0b2cf8b42efacf571c503ece4
MD5 c4fae3f3d0fe03974a896556ed6536ff
BLAKE2b-256 b9468182b79f48f716c210638f2c70d37508f1e04144054afd97f9d891cab50a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.9.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 702.1 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/47.1.1 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.3

File hashes

Hashes for boost_histogram-0.9.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 2f3597190f9e21ee2ec4b81303312d3785fc18373a7d32b8aa4c0fa7ab252396
MD5 af7f4ee9e1a0ccd59d5a7c00cfb37d3a
BLAKE2b-256 ab8c4a30b796a51d8c26800212c7414a085e96c328dc213d6c3693693424d103

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.9.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 563.1 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/47.1.1 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.3

File hashes

Hashes for boost_histogram-0.9.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 2bfb20f2a7a81c88d717398d6c061c1a360404b837c3ee4b06d7a014a3569c4f
MD5 814307112bcf6048f9c9b8704f5ec274
BLAKE2b-256 ac45e9cedcc3712b1c090b6d1cb8b35d84e633aaf1788852859dc235ec32f150

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.9.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/47.1.1 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.3

File hashes

Hashes for boost_histogram-0.9.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 522d3b7f2b83ba3e43c99ed2394a19747e0a28fb30d22b4664c99692a96b66e0
MD5 c5003cb53811e9698aae2686901bb1e3
BLAKE2b-256 4e5ce89a8fbd538f0b1b9c1b52bd12655927217d3e7f1fe9b0b91a158bbd1e00

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.9.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/47.1.1 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.3

File hashes

Hashes for boost_histogram-0.9.0-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 50ba8aa5feafe57033cd4117053eb91d8e902d181e7a0625195db76aca0c8313
MD5 9b9b47646222c44b757dd30362d7e2c1
BLAKE2b-256 a982f4bbd40edce5af635a94176904ee4cd011bc5bcf68311f1aecb5c5ba67c7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.9.0-cp38-cp38-manylinux1_x86_64.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/47.1.1 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.3

File hashes

Hashes for boost_histogram-0.9.0-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 0879c210c58a58b8f03bcb3e8860cbeaff7f907e92bf4401124b691991f9b8cb
MD5 7f5df6f9030b08319d5e52c74a0d5f5c
BLAKE2b-256 b6a3f02a58cdd7b61ba909f43e2369ab449a780511f427d289b7e633bf1c43ab

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.9.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/47.1.1 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.3

File hashes

Hashes for boost_histogram-0.9.0-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 3fdcc21f12cf4b26e473f19e44018bd08fd4ffc33a6bcf80bcd0521d30068328
MD5 2aa9dca5c3e79261b7805faf5db30199
BLAKE2b-256 709505c3875671a36edc5f372bb678ffb1db0b86c2c5b06263fc6183a414373a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.9.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/47.1.1 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.3

File hashes

Hashes for boost_histogram-0.9.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ce93bef886821f54f5ed3ff6d3532d93d3442754fe8e689f678c20095aa74e16
MD5 680f0e43655360af8ddc56e6fb645952
BLAKE2b-256 b19762647624fb6eeb28082784593c4a454d1c026e9429bf12e909f0e9c15c68

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.9.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 677.1 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/47.1.1 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.3

File hashes

Hashes for boost_histogram-0.9.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 8ff8d9c7852c2ab0d48baa1a80f1d40277aabeec06cc04fe80ac95c8e804d695
MD5 becc1c221431735045c6718ec02cc444
BLAKE2b-256 0f92daaa3861150d6a519b9136abd2a920f62bff6f35b4e7834aa928a89048ab

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.9.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 566.7 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/47.1.1 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.3

File hashes

Hashes for boost_histogram-0.9.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 4d60a1319e1de7b1e0ec0b57444ece31b8b992bc773a1292fe18db2fc1c1dc3b
MD5 c6f402c55da2b07f5cf731b1f5522dbe
BLAKE2b-256 eef09fce7483ea8b8e1ddcfe7dcd4b4e3a4a58fdf62e9cc4f4fc4b1c5353eecc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.9.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/47.1.1 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.3

File hashes

Hashes for boost_histogram-0.9.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e2b8e857254bb078199e7a5ef9f73a7ac14c442ad11363e2f40d9092d110c12d
MD5 8768c981b3293a298f4de8bd724ff51f
BLAKE2b-256 8e1fb945e05e5b9d02f7f85ab89757df05c4fac2a7cdcd6956edc9a4e4279dbd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.9.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/47.1.1 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.3

File hashes

Hashes for boost_histogram-0.9.0-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 15bfcae8afb7920067527cb6193e639fdd6e8822a59f78e7dd597a345f38b32c
MD5 b8ecbb1f1d1ea9d8629330848a644bdc
BLAKE2b-256 256593f5796dd2a71f7e6d35fd403c38e82555e6a9576f29f43f4c348e7368f1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for boost_histogram-0.9.0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 21d3205f1e1bb7fed6163e353bfeb1be346d5b58b14564bbd0baa9bab66364e2
MD5 99e011ac83a71a9f2be6ad40c1711f1c
BLAKE2b-256 15ec250c8d3e04d5b0e4c90c9ebfb9a456ae9ff0bb29a0b708ae4368a69e72dd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.9.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/47.1.1 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.3

File hashes

Hashes for boost_histogram-0.9.0-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 03e951613a0126c2612691a4037bf36726d3abdabe10bfc7736ea588ce85a8da
MD5 e0ba9f95d99a4c286c5f15058a2d4151
BLAKE2b-256 16da7de0168f275ba9714c97e9db9eb58cce8a6bb045cdac13647a3cad7c1230

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.9.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/47.1.1 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.3

File hashes

Hashes for boost_histogram-0.9.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b114c83c2dc1632845942054bd437f7ecb7866e71eacb2d22c1abad245cf9afe
MD5 4d40a30f9de2bff49abd3239e90076cf
BLAKE2b-256 76bed26536c4d79577fed476ad3cd461fdf7beafe7a7b87214369cb50c7d008f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.9.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 677.3 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/47.1.1 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.3

File hashes

Hashes for boost_histogram-0.9.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 033ec57e35005b02f49d7b1f5755965197c7a4dae2757600b8dd279ecf4e9ea2
MD5 a5bf6daf0b23352253abaa0321328943
BLAKE2b-256 a68ca178c8c99bd7b330920135afcb2035b3fbd0e77297a6121d571219cdad82

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.9.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 566.3 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/47.1.1 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.3

File hashes

Hashes for boost_histogram-0.9.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 80b12edc86f086408f389518fd8299d86f974a2f4079c45809c7b13bf0031c58
MD5 1b85a4f099fe11d6d058b6ea1812155c
BLAKE2b-256 15c85c12773f9721fd7eb234f6d68c9545752a9e299f1e6519f9b65aac4d6a25

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.9.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/47.1.1 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.3

File hashes

Hashes for boost_histogram-0.9.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 6025d3a5f810e99599168431a75f4c05393da3088bce556e6c7b0f03efa556f1
MD5 81253e3128bd32e08b4126c33fa461aa
BLAKE2b-256 4fb7a087914134098bd2cae09f72af778799a4bdae5fd0293cc52ae5945d83bc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.9.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/47.1.1 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.3

File hashes

Hashes for boost_histogram-0.9.0-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 4cf60a8a9d9f20c1dda2063c0fec6a194b5948dbfc8b6cde77deb73ee879ee71
MD5 af0238f2f60a69957a6c3c16f71677d7
BLAKE2b-256 93bcfc960af6628a48cf79be541e34749053ef1dd7703886c48084612a0e1edf

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for boost_histogram-0.9.0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 241dc73773460fbc8f1dba1c036bfab0b7079ab8f7baa1d9f0c52bba18a786d4
MD5 5f5e60106f45efccf184c705a2523124
BLAKE2b-256 c26fe82e95f18f38a4d3bbd70870ce8ff605c0b8d8945d3313d352bc61509b3f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.9.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/47.1.1 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.3

File hashes

Hashes for boost_histogram-0.9.0-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 5aa4f7b1436752c47a7cdafc08c0fa3a35f130f7ccd7338a5562a163ef60e0e9
MD5 8d4c10c19ef82391f997ecdc6be4c086
BLAKE2b-256 1dc2de94d96c9bef440aa64f23d7648438434371a83ada32ca990a49481796df

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.9.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/47.1.1 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.3

File hashes

Hashes for boost_histogram-0.9.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6a82c1ed040c6ede602ce6a629183cfbf6a8622de8553709cf8ff519dcfb8cce
MD5 b49fde4baddfecab9277ded4df85c210
BLAKE2b-256 91a2fe40fdea56fe7c6753aecb0310ff261cf6e552d09dc4b0fc61bc04e99653

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.9.0-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 677.2 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/47.1.1 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.3

File hashes

Hashes for boost_histogram-0.9.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 57f28b24813d624e9cfb49910834d77ffa30f837a8c5334f003526153055d1ed
MD5 7923318e5408dd9d27e43c0ae35c3953
BLAKE2b-256 dfc249563b554d3883f6279ee9a6f4a25560d0717451b295dbdde5f62fd0e7c9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.9.0-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 566.4 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/47.1.1 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.3

File hashes

Hashes for boost_histogram-0.9.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 98f1f39372192ac4b93eae295a3e289b8447d9d83554fef7400342c8daae0904
MD5 6be679de183a08eac6f3699ca2eddccc
BLAKE2b-256 b1814e0a11d5b813574494946578b6947c12d11cf79f42141d5ae86623fe63a6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.9.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/47.1.1 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.3

File hashes

Hashes for boost_histogram-0.9.0-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e7930955c2c80a2957eb9afce56f4570c8d4e1162732092d5c532034cae1d033
MD5 85151be76c4d69978b6216e74d281f04
BLAKE2b-256 8a27b4db6da21b6285653ae22e254323532366aa62181bafc1f4d491b347ffbe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.9.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/47.1.1 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.3

File hashes

Hashes for boost_histogram-0.9.0-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b8675a974da4e8fddc94531a4fde9a17fad9df6895277ac0c42c8a2554e21c36
MD5 e932817f0f80a2f51ccb61749ed227c3
BLAKE2b-256 2361415c08070d4153140d7de704a751c7d6e51140ac7870518166270c2176cc

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for boost_histogram-0.9.0-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d8dd4142b833734567454eecac3eba115ac27677d1f035d1b2554f1bc98947b2
MD5 3c79caca35bb6bc5d2c5f89bb96290aa
BLAKE2b-256 0becce7f9a052cdff385c9ca525d20564b247cd63c1e014085e50072a3f1792d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.9.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/47.1.1 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.3

File hashes

Hashes for boost_histogram-0.9.0-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 2a0c804915421df67582d494ab07df3c1d2a5d6fca0d9a4821dd76ba32a334d8
MD5 03a9e100fa6a61ba1dd034de00b24f54
BLAKE2b-256 5790db76219d8dd6a2dbbdd3fb0cc04624999fe8d32f7b862e629bfe8bf49030

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.9.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/47.1.1 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.3

File hashes

Hashes for boost_histogram-0.9.0-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d114178c4fb89e27cfb19f1451ab97f2e2e77f9028742416b3ec9ad79901b7e3
MD5 ea6d2f87ca7b3df5527d985e650fa3ee
BLAKE2b-256 f6fee13b42f7d9aba17252aa442c065c69cad0b2308fb988c6d53973c15fbeef

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.9.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/47.1.1 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.3

File hashes

Hashes for boost_histogram-0.9.0-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 1d52a924f23d9ec8d58beaf3a1ad3ba50f05f34c62ac1992b6d97806dce9bf73
MD5 d41bf93306a3d850d40aaf6c4fbfcbee
BLAKE2b-256 b574cbec4a2fa1f4c1bf820d59c7795ddd5518291b0a02840ac5c141139a2c36

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.9.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/47.1.1 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.3

File hashes

Hashes for boost_histogram-0.9.0-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ca146c87739b886df4a454cbc4bff83d1885a26f4c871148cdaa7f5709d39739
MD5 18f207b100efd9ca3ff4c6351b32d40e
BLAKE2b-256 2f9b64c6ca441e91f8cc541f658318a764a756d5657c20a1e071a72beba042c8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for boost_histogram-0.9.0-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 f58609d5750d7d21c798feb97afff99464710b237cc11fe986de9fbc3fee9b70
MD5 a0db72b10b6ef537cbf9165f554c9662
BLAKE2b-256 7cee7977be0f34c4bd66197253e99514b6b6d24e5950886edc3a4b6c1a43d9a2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.9.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/47.1.1 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.3

File hashes

Hashes for boost_histogram-0.9.0-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 22e11047c9e3d34181b08601ee490e56eacda85c5442ea8f907e18647ef8aae2
MD5 7900ab304c1a0e162d22bd80b9b767a1
BLAKE2b-256 b017ac6a459778baf7c61110a8546326de1bab75767022eb5023850a85b5ba2b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.9.0-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 733.5 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/47.1.1 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.3

File hashes

Hashes for boost_histogram-0.9.0-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 bd8fd4149590240e67fc4f2cd98504dcad2b9d1001b469b6d8f4e06e1718d9c5
MD5 f0ae31fa81abe1c2d0375e6d3fd71fff
BLAKE2b-256 4b50cc13eeff9c94ca4beae57b71198bb9a8a7cf06693abbda9e5d66bc4d7b6c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.9.0-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 630.4 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/47.1.1 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.3

File hashes

Hashes for boost_histogram-0.9.0-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 b33339d9eb3185dc3abf419e7dbec72db08ee05148bee28230760b62b3410007
MD5 e4e52673931392783da50c8fc59572f7
BLAKE2b-256 6482507f3039ff9239dfec9fc528bca1a07f40279b201d63cbb32ee169860366

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.9.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/47.1.1 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.3

File hashes

Hashes for boost_histogram-0.9.0-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 abefa14dd69411bcd67759edf001319687fa03cecd0b281a84ddec7b1df95902
MD5 70fc4538e650e4f0571b7895376e6c88
BLAKE2b-256 3027920772a3dcda409971d546a3fab7f0131fdb2f66c9016363299da235a75d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.9.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/47.1.1 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.3

File hashes

Hashes for boost_histogram-0.9.0-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 72ce28a44260cdef4f38e36f1f0f302fc3d2d63aa852754deb46f45458970a87
MD5 4d7dc30b7b39638c6ca72507f2c282cf
BLAKE2b-256 6051f80f47a2a791e64921de4fdc1a260cb28f88233b55c0147954521d12fad9

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for boost_histogram-0.9.0-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d065651612f675f4ba41bc46021f2181870b203afcdb9b5dcdc827d4bb74025f
MD5 3466a589efb068e06668d733a5edf61d
BLAKE2b-256 2799c541de09464f534e39380759b880d48ba30d71c1551b6594cf2c4442f4da

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.9.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/47.1.1 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.3

File hashes

Hashes for boost_histogram-0.9.0-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 7be7598cf1fb9c6d6e1a8eed48826101a79c7db96700b98074d103ead6544c2f
MD5 c8fa48c8b5e49417db1270c5ad209275
BLAKE2b-256 0e62b486b80e68a73bb489f9289c351099a37437aa217ee94a5fc5b9c6cff9f2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.9.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/47.1.1 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.3

File hashes

Hashes for boost_histogram-0.9.0-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f34e42204d034dc3da3fdcb98bd18a85e8a9e8caee5e87a37c07b9774dcd3cab
MD5 16c8ff399840228be2aff1289b421a02
BLAKE2b-256 930033cb6520db19d85da5d37b8f72b0f65a5d01dd6d91e48f0f7e03620bae14

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