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 should become one of the fastest libraries for histogramming, while still providing the power of a full histogram object.

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([.3, .5, .2],
          [.1, .4, .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
  • 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.rank: 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[::bh.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)
      • bh.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.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 Windows + Python 2.7, which cannot built due to the age of the compiler and conda-forge policies. Please use Pip if you really need Python 2.7 on Windows. You will also need the VS 2015 distributable, as described above.

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

Uploaded Source

Built Distributions

boost_histogram-0.8.0-cp38-cp38-win_amd64.whl (704.7 kB view details)

Uploaded CPython 3.8 Windows x86-64

boost_histogram-0.8.0-cp38-cp38-win32.whl (565.7 kB view details)

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

boost_histogram-0.8.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.8.0-cp37-cp37m-win_amd64.whl (679.7 kB view details)

Uploaded CPython 3.7m Windows x86-64

boost_histogram-0.8.0-cp37-cp37m-win32.whl (569.3 kB view details)

Uploaded CPython 3.7m Windows x86

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

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.7m

boost_histogram-0.8.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.8.0-cp36-cp36m-win_amd64.whl (679.9 kB view details)

Uploaded CPython 3.6m Windows x86-64

boost_histogram-0.8.0-cp36-cp36m-win32.whl (568.9 kB view details)

Uploaded CPython 3.6m Windows x86

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

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.6m

boost_histogram-0.8.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.8.0-cp35-cp35m-win_amd64.whl (679.8 kB view details)

Uploaded CPython 3.5m Windows x86-64

boost_histogram-0.8.0-cp35-cp35m-win32.whl (568.9 kB view details)

Uploaded CPython 3.5m Windows x86

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

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.5m

boost_histogram-0.8.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.8.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.8.0-cp27-cp27mu-manylinux2010_i686.whl (1.4 MB view details)

Uploaded CPython 2.7mu manylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7mu

boost_histogram-0.8.0-cp27-cp27m-win_amd64.whl (736.2 kB view details)

Uploaded CPython 2.7m Windows x86-64

boost_histogram-0.8.0-cp27-cp27m-win32.whl (633.1 kB view details)

Uploaded CPython 2.7m Windows x86

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

Uploaded CPython 2.7m manylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7m

boost_histogram-0.8.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.8.0.tar.gz.

File metadata

  • Download URL: boost-histogram-0.8.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.8.0.tar.gz
Algorithm Hash digest
SHA256 906c980e5872e8d8af6f7a4bc1f4687f2b9cbb486f46365f6ae862f85804ebf8
MD5 c0c1ee8595af1bf1930a20ef5b8a63e0
BLAKE2b-256 34701bbd9ed6479c1d26d78dfd60437b4bf3093b2afafddd8ce0e9b0b3050222

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.8.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 704.7 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.8.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 f4a753b36ff8aa2223f3eab90f4e8b3311fb95b7f1dcf130fbd58f47ad46fde1
MD5 3a56480f3db0bc3074c11e79f6d7d89b
BLAKE2b-256 139cd79a997a431e9ad9edc7a4dff4f5487894d6b381aa528282bb703c73f1c4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.8.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 565.7 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.8.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 e0c8a1cb2aafec0dc6b8e2319182d33c15a1863c1af89e2a6789e35eda34f3d0
MD5 b16dc40503225ea411b4e2b649e0977b
BLAKE2b-256 2aea826e701201df443677b2a56d4427c365c2b2ca814c40aa9228d780197df3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.8.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.8.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 aa41b1750ebe2e2a648bd1422e877a5e2382260c191dead88a68fb28bf047a9d
MD5 b192c49347f37e9447e99d110b77f903
BLAKE2b-256 59724755f3e2cbe685c28f7668308a8019f0b8156d868e2dea1fbf0898f687e1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.8.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.8.0-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 0470c78a663bc4d082cea9aefd33a6a7ec19a40ed4f7ac1108b89b19f3aa5e7c
MD5 2b1ad5f01e5c5bb636370928a941438e
BLAKE2b-256 aac5902862eed29d3ce2c134190d54056dd69199e4c4f29aec06178c20307cfc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.8.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.8.0-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 eb1e6c37ac71ea72c9874a0745e88f566c281c2b5a0ca6b87acb8cf87b88db90
MD5 a85ddf125d39e5458b2a5cbeb03e3103
BLAKE2b-256 936bf4f32b93eb5cd1a94f0bf612ad4feb377b3225bc12b10abf2482646ec6cc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.8.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.8.0-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 7af81a3f9186379de27a163437828f97e9041a2e2f85b2f67406ab454c672a23
MD5 b931e44967eb73f72667ea8c261621e3
BLAKE2b-256 5f097c59a3b05dc5ee3927fe0ca94813e71cb67c17a0868cf8afca36107f4f2b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.8.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.8.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 32955ed7f7dca86256bfafa65ed959c96a1eb66a6b5be5ef981175f0ed2d3549
MD5 5e4a96e140775eb36ca8031b3e6424f7
BLAKE2b-256 6ea6c8c2ed0b71c035a0c624e4b283454d98a7bb0370a5ac5350015b0bc05364

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for boost_histogram-0.8.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 31491b26974d514d95b3eb5bfe1e53069ef1d8e8b1f16cc3f957a7c4b3d80084
MD5 c5b9aaa94c36cadf8be1d3bc95a4646a
BLAKE2b-256 ed9c689013f33ebf261f785cde7f6068b901ea7d69ce8713f5e6102063dc6e58

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for boost_histogram-0.8.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 2686b82b6a9d63bad69af20ada2f0da1cac99f38b387803c1ffc9d94b00bbb67
MD5 f5e7e712d9516e6511c05762ddb003f3
BLAKE2b-256 3d57712f7f6f8aeac218fa85d3e4f3241113e7ae8caf0fd08d82136e1d41d386

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.8.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.8.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 64297c4863a672b4d21327fa0bcd3059fdea19123cb9a2fce1589692ed6763a3
MD5 bbf93105c3c01cfa82776363b0645ccb
BLAKE2b-256 4c1f84ea1d8e3d2f87bcc4fc14319169557daa4ee0273c2f8ea2bb1f3e26ade9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.8.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.8.0-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 79770899a816502147e7a4a2213cecd7b74f2ccac9a14a93a6261b02498e7815
MD5 27390bef62666e861dde467cc93c5edd
BLAKE2b-256 bcb2e9cf8a279636662f052afdc12f27ebe7b726c7acf76116e3d1e5e2ab0e4a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.8.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.8.0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 879141ff53909dc744dd713d3aeea3788f0c2aaa89cfac8359bd7b3fe6a24a94
MD5 547c0ae2b0f3d0972bc36af392073f25
BLAKE2b-256 13fc3fa3dd7ab7dd7b1ffb2bd97d4689e7d61faec0578b39c676cd4161817392

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.8.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.8.0-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 0f7e75b37bc42ab8768b973fe959cf926a08a106c4fd45ea061961e6be14f215
MD5 164e7dda3a92b82d64139bcd68c719ab
BLAKE2b-256 52c5863daff28c7517f886fcbe1b497fae675ea854d159e69c86ff632b2592e1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.8.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.8.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e30f3cccacbdf802534ec437ab13e70af31dfe7aa7a0e8fe335e0176dd760003
MD5 c97603d3c8b39b08cb78e4fd120d7b0b
BLAKE2b-256 2b602ed13d68a4538cc371bf2d548732a4a14993c258c031347027544c77ad98

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for boost_histogram-0.8.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 ebf8f5edb55ba19b745b47403052dcebd5560263f73e602c76088026efbc52d8
MD5 f4edac993f13a98f5d89bc5031fd052b
BLAKE2b-256 2ec5c6bb44547d3f4293f19cbe5b573c472b146fb6ca688378f42b53006934a8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.8.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 568.9 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.8.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 5cba187ae06aa9fa28e3b175d46a6bcfd0837c584e9bc078cc2b974b062e717d
MD5 357f1e9b19f43099364a201017dddf7d
BLAKE2b-256 82925cd53654b3e66e1392c9b32522a651ad26d996717ab78c9458f91a452415

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.8.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.8.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 4fd3349502880d000488eca27e39d3a4e877cf5e0656f929289b4ddbaabef796
MD5 aca3fd134f6e11026bca461a485a1011
BLAKE2b-256 0ae82c580b3da09516ad292e6dab181620f733033b890273dadf6d067a2e27e7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.8.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.8.0-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 af9d0af074310a4393d175300e00e01127d30714ffd5a3139491c48bd7a8f447
MD5 96aa0acd8ca846f895b658f64d21979c
BLAKE2b-256 78230e7c17aa3fcaf347a11c92d0464242a3fa9ec182b61cba06ad1893459c67

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.8.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.8.0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e9d904b10168b005f6d3a4194de2dbe78604bc1c637831a27fdcad205f6ef2d3
MD5 1104ce0d4395a65f834a5354363ca2d4
BLAKE2b-256 8cdbf4fe8d180149f0bd3a62673afe5e187e91cb15efb110d80e4f8cb02e170b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.8.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.8.0-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 54f94ed4a86d0af8e0bbacc7296ecc59b7e425c7c1f473514f9ea95cae1418d2
MD5 8a6c9f4e2726364c3fa8aa02484761be
BLAKE2b-256 e99714a3e0a1dd3206532bec37ad7d640cd3fe626a2484bf99136bd2d4b59301

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.8.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.8.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 990ecd7fa9516d317da88fa5ca14ce771b269b89ac6b4ba7c2eb05c4a4154444
MD5 fca3991d7dda28c5eb3009c93ac8b166
BLAKE2b-256 a6a0c0f5152f00284b9719a866a2b626da02959a12d323225ce26a9219e18510

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.8.0-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 679.8 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.8.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 0389bf7a0869d568c99c9009bf83b8de333d42d0f553b0d98100a025f4e9a6c8
MD5 ce49813e16faa8c8a57ed2cf297c7b16
BLAKE2b-256 6e000a44ac3feb2100939e67d0b99c2f90b424bab31f0ccbf6cf83738639f7ba

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.8.0-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 568.9 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.8.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 87adce487edc9b6cb0df32fe90ee84c2055107108ad619a1c54f666df5e677e4
MD5 9da0ab4f37af6a1ac8497c4d57552911
BLAKE2b-256 ad716f0a9275165e27a31593ae64a3a878c2cd77a9755eb5360bdaf0d2e5772d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.8.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.8.0-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 c381ce5289195f4d4bd8c8f81b3cdffd241a4d81f2fdc14ef7943d4b343b63fb
MD5 b3ae3f60f1b6a3b71cf8ea1620f11fdc
BLAKE2b-256 de03a855ce6be3c8b396614159b04ff3d602c7ce545e6df0e18f75de09f3e8e1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.8.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.8.0-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 14700bd5e4c628e116885ccaebb959bf398bc7f50efb127ae8484835dd14aabd
MD5 045de753dd6d49dfbbeceef6afc09271
BLAKE2b-256 5699335fa92095be5c088dd5cff5f3ffea7232ab04f7b72b2c8e0600ca67df25

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.8.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.8.0-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b9da1b4f121020e1d3acd36b1e5d791822b10380a87d59a8ebb238798bd8b462
MD5 7f8262ae286f1ecfeb4eb553adf19523
BLAKE2b-256 93325e5af870a767e82f1c4992e052319c8f1ade57d827014116bdbea41a9033

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.8.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.8.0-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 11a488eddcf599258b295c76024817d90f62416b48301899c13aac44426e0c68
MD5 48ca5a26d43ddee36ab39b421ad9248e
BLAKE2b-256 775a984b1442348cf1690cce3dc50a7fc5b6c10b08ed7aee52ba673972dd14eb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.8.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.8.0-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e7ddf16449afbd13e52d3a8965bb3aba4f9d9f855aeda8dcfd6ca4b9d78c12a0
MD5 a42711817bb27eec8054b645c2ecaeb9
BLAKE2b-256 eb102e556e4b77f4848c99a794a351db1dc3475f6fc324f9594844bb4240298c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.8.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.8.0-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 8d164b3d3006adb6feac49caea792ce95284147ee53e599feabaf12edff229b9
MD5 4e4a35442c2876a38aa1bed44277e5df
BLAKE2b-256 6da5a6227e196fa024f58e0441c3a3fd207ff1e9f268c941adb7e37a28492022

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.8.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.8.0-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 1d51461af4cedf737861b77b29bade8459543981cfe4a0e2de1c9f004c9a77d8
MD5 b89d7195392cba5c354e2ca890faa53b
BLAKE2b-256 ad1bace2d953b560414cebd9c20bad8db38b609e17da4c553f9369aa76b4e190

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.8.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.8.0-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 5acb85cbf765966a4f67c0a0b53e954109d3e9f042d1af7c66d0d78d39f25d26
MD5 eb4ed7210a699135e44bd085fa518e32
BLAKE2b-256 0b992ca4af0c31cd5e717ba7202a191f4286c09de752b85db9666bd9437f9288

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.8.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.8.0-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 a139d7dd2347bb823efa94fafa9f10960de57b84b2a12be8a4ffb96897244870
MD5 7d0b8119e32a1613bc9a228effd608af
BLAKE2b-256 52f6d6ab57c3079d84881d04276f5d711bf85f9c874516e47b3ef18597c90a23

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.8.0-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 736.2 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.8.0-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 3a4ae0707503e6a83308187d00bd392d000161686c75a6fea997f6c2bbf2b8a2
MD5 639bc584479cd744f0030228e9175406
BLAKE2b-256 f5ff2719208e6073dea4b04ad42e6a17e40338f771974857ec8fd8546e72aec4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.8.0-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 633.1 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.8.0-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 b59ae1504ede0011af724dd456dbb658591aa706d9c32562f61a3163837b7ec4
MD5 9b5509977e2639b8bcbb91e95b9d2774
BLAKE2b-256 9b554a88337b96d1590ba23e08362c73fbdd076e19de7fcfa6c9574902f59c35

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.8.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.8.0-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 f3c65423ddb480b189e5b2a8a8912bcfab479c29aaa220273131957fe930e30d
MD5 a64cd8f664cb6080974ced5de1b227c1
BLAKE2b-256 f79b3f9b95ecbafc2354dfb3ea61dd20e8220dafa23eb54a2010ee9d8d687051

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.8.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.8.0-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 1a314b06d577ac99ea45dc77c11464cff2dc95d8b38a025364754971473cbcc9
MD5 6cc67379a27cb1a743aecd090851bd5e
BLAKE2b-256 09e846298ed370bdfc92c6fc4df150bc0e3978d27d2fef692c27f5639e1d48c9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.8.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.8.0-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ab3e16de98acf8f437ecebb6e893591ee3028c2ef70e424f498970c63ba0ff8a
MD5 28fa21f975c7c092c3761bedf0f66792
BLAKE2b-256 60bca186f1011e1f32de5bb338f80cd966dc1234effdd135d9c9fa39e7704aba

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.8.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.8.0-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 7551ade1e98e160771e10824d379fa3414c3f0a612d52e936c22b1138415f9b1
MD5 01f0bedb206e0560ba52d45225acb430
BLAKE2b-256 e8dc09ace5d2d9342f5a3abd57c537b3cd1b0f3791e21f23fd71510081c9d462

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.8.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.8.0-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4a61961f3abc8e33e81a0ee53250f7843f8e5b8be0176cbe132590f773624e72
MD5 124b33c7b6d3fc2d5ae77c7db808f7ed
BLAKE2b-256 b3b798392096cb8665aad08791b86308f0042ceec462c44ba39fcf93f29a1905

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