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 directly. If you really need boost-histogram + Conda + Python 2.7, please open an issue.

conda install -c conda-forge boost-histogram

Source builds

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

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

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

📖

Beojan Stanislaus

🐛

Popinaodude

🐛

Congqiao Li

🐛

alexander-held

🐛

This project follows the all-contributors specification.

Talks and other documentation/tutorial sources

The official documentation is here, and includes a quickstart.


Acknowledgements

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

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

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

Uploaded Source

Built Distributions

boost_histogram-0.11.0-cp38-cp38-win_amd64.whl (677.1 kB view details)

Uploaded CPython 3.8 Windows x86-64

boost_histogram-0.11.0-cp38-cp38-win32.whl (547.8 kB view details)

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.8

boost_histogram-0.11.0-cp38-cp38-macosx_10_9_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

boost_histogram-0.11.0-cp37-cp37m-win_amd64.whl (653.9 kB view details)

Uploaded CPython 3.7m Windows x86-64

boost_histogram-0.11.0-cp37-cp37m-win32.whl (555.8 kB view details)

Uploaded CPython 3.7m Windows x86

boost_histogram-0.11.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.11.0-cp37-cp37m-manylinux2010_i686.whl (1.3 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.7m

boost_histogram-0.11.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.11.0-cp36-cp36m-win_amd64.whl (654.1 kB view details)

Uploaded CPython 3.6m Windows x86-64

boost_histogram-0.11.0-cp36-cp36m-win32.whl (555.7 kB view details)

Uploaded CPython 3.6m Windows x86

boost_histogram-0.11.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.11.0-cp36-cp36m-manylinux2010_i686.whl (1.3 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.6m

boost_histogram-0.11.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.11.0-cp35-cp35m-win_amd64.whl (653.9 kB view details)

Uploaded CPython 3.5m Windows x86-64

boost_histogram-0.11.0-cp35-cp35m-win32.whl (555.8 kB view details)

Uploaded CPython 3.5m Windows x86

boost_histogram-0.11.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.11.0-cp35-cp35m-manylinux2010_i686.whl (1.3 MB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.5m

boost_histogram-0.11.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.11.0-cp27-cp27mu-manylinux2010_x86_64.whl (1.3 MB view details)

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

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

Uploaded CPython 2.7mu manylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7mu

boost_histogram-0.11.0-cp27-cp27m-win_amd64.whl (711.4 kB view details)

Uploaded CPython 2.7m Windows x86-64

boost_histogram-0.11.0-cp27-cp27m-win32.whl (613.4 kB view details)

Uploaded CPython 2.7m Windows x86

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

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

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

Uploaded CPython 2.7m manylinux: glibc 2.12+ i686

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

Uploaded CPython 2.7m

boost_histogram-0.11.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.11.0.tar.gz.

File metadata

  • Download URL: boost-histogram-0.11.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.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.5

File hashes

Hashes for boost-histogram-0.11.0.tar.gz
Algorithm Hash digest
SHA256 a79b472aa28579f3936a8264951bfafec3abf43f6cedc7476081b8ff0dc757a8
MD5 54489f172a0bf6c38c2c2ad9782f31fd
BLAKE2b-256 4174452f5d854d0dff178b81ddca6e94067e2f214a59a3a3debea1f0cbc3beee

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.11.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 677.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/50.3.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.5

File hashes

Hashes for boost_histogram-0.11.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 87320bfedffc27647da9f1ff362e92041ee57638286f783fa6a9971480fa90e4
MD5 be1d525a5a3ff1baa3c494102fb048b9
BLAKE2b-256 39413571b464626b81fbce9d3cecec4ba31d15b94a7e08967803813a6e4be706

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.11.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 547.8 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/50.3.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.5

File hashes

Hashes for boost_histogram-0.11.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 46f2d3e896924365c59021bc34d14a51fb93626f1ee1782feaa349ab92d70be8
MD5 622532d98e2b5791ffd21d537270bae0
BLAKE2b-256 31fc857b02ed0bb721208b94ed99118f99f4ea6b081aa61520c7a89c17a2bfea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for boost_histogram-0.11.0-cp38-cp38-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a69fb0a42ff1185bbeac2c95950d4af56293c73ee5900fd474df3239eda67be5
MD5 1f3068e68ee29d88b9869541a892991c
BLAKE2b-256 d3bba2961c5fbc36f6a8bfa0980ffce9c350ae55d22584734b66cba99098dee6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for boost_histogram-0.11.0-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c265a6bd2e27a58ae9961b019e843781b867c97077c34e74ea0cbb039778d1b0
MD5 61b86121b33c437524067787f09896c2
BLAKE2b-256 f5a8c814ff31854e0c417ec2b1e8c73a3e26b44989a2192362d62b20b39b4625

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for boost_histogram-0.11.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 1de897c1d3d2ec4b38a13d7ef711e66ef6725f2a343310bad60473fa76b15dd6
MD5 6630c2e428f28090e310df8f60ce18bf
BLAKE2b-256 4fd54fa6347e16d5dc3fe44e263b3c4594b6db005b19d54a8f73a66469a5d116

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.11.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/50.3.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.5

File hashes

Hashes for boost_histogram-0.11.0-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 171e25efd6a1a881f309284a6fcf7aecdecf087a3c3edb52f82ccc49ae6cdeb8
MD5 688d76ce732e532354b192a1ebcfd1ac
BLAKE2b-256 bd88e71833299a09dd894f42a56b65b9dde6cf569297991942e49a41668bcf8f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.11.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/50.3.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.5

File hashes

Hashes for boost_histogram-0.11.0-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 66cacc8c40be07c7e7d9d975d27e8200a065b0d281f839f84181348d9057dd7c
MD5 0c571305e5a2ca5af9d849808cbb7200
BLAKE2b-256 2bd0f3a27de46be4e265159966215313be10722fbf8bc497a9c811a006ecc70c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.11.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/50.3.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.5

File hashes

Hashes for boost_histogram-0.11.0-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 0731787584acdfcdfae53ef8c373b1736b6ad4d295608494eaa7cfda10e304c5
MD5 04d98620415840dc7134b7d8e6495e30
BLAKE2b-256 571ddb1bb2a104a49334252fb564ba89dfa61ce5a0a8308ff2e91b8ff89fdc5a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.11.0-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.4 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/50.3.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.5

File hashes

Hashes for boost_histogram-0.11.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f1427591ba3cb467e1e12a39019277a3d6da87f17bb389080d33cb9a0f4d3c92
MD5 b22689b2ee5fab25dabb56faeb629f80
BLAKE2b-256 8465a0bd59d6a9ec20b62758710dc867058cfb1cc24727253eb5c24090d8191b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.11.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 653.9 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/50.3.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.5

File hashes

Hashes for boost_histogram-0.11.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 fdc66c4ae8c845413e54a343dc7099792e21cb3256005fb6eb653dc368edd100
MD5 31cd2fa4497c2e18e11413cf154134e8
BLAKE2b-256 9ae2bad370b3386e8fabba2e11b41329e1629b39389d86b29cb7adeda7cb77e8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.11.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 555.8 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/50.3.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.5

File hashes

Hashes for boost_histogram-0.11.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 685bbde5ca69ba8bbb9fc914a94ac9a4a9384348d8ccfa96016bf02b30a38f5f
MD5 b78098c86b3270ba66f1ded15a203d7d
BLAKE2b-256 4551fb7cfbd8f8899d3331a61963620074409db44fe161d7ae85ac88afcdb8ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for boost_histogram-0.11.0-cp37-cp37m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b54454b5d7db763a8fdc9b1d73556da1f480796f1270eda7c7c2aeed885c4ad7
MD5 3d09eea2ac4e8035da0f2f881346205e
BLAKE2b-256 47dc98d609ad1d946b03e9b192ede958529a19db2a49925f2bda1b5ae528a7ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for boost_histogram-0.11.0-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0e79fe0e81ebf0644cd3705583913f6523a277e666e17d6deb5c8c44022a34a7
MD5 23aaf0c75f12f7be34ed4d0e21f04318
BLAKE2b-256 1820f92186a15f445d685bcc8dd421c8ff991630a9d37e5594cd560badb7df7a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.11.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/50.3.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.5

File hashes

Hashes for boost_histogram-0.11.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 963b2e392b50ca72ac7142756422476eb04cf468ad6ad6e5862f86559663e64f
MD5 5c05d99d6c304c533ff11e6ec97086c6
BLAKE2b-256 ed89763d99c590ab6883d4df5310e34c208db0546242bcba1b06d4c98ed679da

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for boost_histogram-0.11.0-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 8e393ea2fc0a604076e843a005752d7291320752b922c03f1599633fba2f729b
MD5 5f79e67c7bab5dcd3ef876c739b89250
BLAKE2b-256 309c69a02a2f77743568e21d63e245d819f478701c559718d35f185e8c5312e7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.11.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/50.3.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.5

File hashes

Hashes for boost_histogram-0.11.0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 cfdef49742ddd0bd3260fd5e45e2de9b30ae3bea04649a40c04ee94ec3cc8fac
MD5 132bdadb58c1960642e113ad84f36c19
BLAKE2b-256 23731165dff522a4510aa4d8ee95e997dd33a929467396bbb8ee69e8fbb2aa20

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.11.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/50.3.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.5

File hashes

Hashes for boost_histogram-0.11.0-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 f4dc233e82d0d7136ac441fa2844215c73bc7cfc22be63eb34e2897eb8d4559a
MD5 040cc04f45255fbe1ec612d9e432da8e
BLAKE2b-256 33547ad263bfcaa1b9ff03615c6c413250887f90ac586b9ccede403257ef7e9d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.11.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/50.3.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.5

File hashes

Hashes for boost_histogram-0.11.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d727c8ede71fdcdbb942ac7d701598b943c94fdb97b8a7d5113793bf985cb018
MD5 ba855bb04a5bf13006d347c053a8a6a9
BLAKE2b-256 060a7ac282d60f08b2d489b1a0369064bd0f2676f208628761943600c3745532

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.11.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 654.1 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/50.3.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.5

File hashes

Hashes for boost_histogram-0.11.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 45143ce21fdba0beefcace7933deffa04569c4d2dd3b8f3d4606adbf4bf73f9e
MD5 5871ddab3cebaff2a30aff13e05bd7ff
BLAKE2b-256 84ded25eaeb73bc8e4341ba8062c70cb1e4b01344cf57f12b75237f9da9a2fce

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.11.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 555.7 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/50.3.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.5

File hashes

Hashes for boost_histogram-0.11.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 8b1d4a79b31f5f14eecc0f16a8b7f3e4df81824821aed035404a5f5544d3eae1
MD5 942992efd13dca7680e41c0738a86700
BLAKE2b-256 fa7f94bd2500ebef6b680f63203a5f9a2b18eb4a98812dbb1e9655901db2c929

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for boost_histogram-0.11.0-cp36-cp36m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0c05aec2994aefb77e3971678619a72696cf122fc601c2d3966f3ded73dc2530
MD5 892d6d88bed0c02ea3bca14166f9cc96
BLAKE2b-256 cabe1a87d767d2b7f0b9f70baca43316e6c1d1d71d5385c6b7b23cdfbd26d809

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for boost_histogram-0.11.0-cp36-cp36m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3db8b94b65412a2610debaf760c68e56f440718bf93ad61d3afbf3bcfa9cb168
MD5 2235902755937e8e0227e5cc10bc689c
BLAKE2b-256 af209f4d84456e1d0357b99ed0573a43f510969fd9aafbe31950b6e371095429

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.11.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/50.3.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.5

File hashes

Hashes for boost_histogram-0.11.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 03fed91379695105c9750357f93b457684adb9f70f119aabc38d7a95039bad57
MD5 0d44f726cc4265da301137104995c1a7
BLAKE2b-256 77416c64edaaa1b983a13d8ab15dc619f5370d192957ab988647af5c16789fe4

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for boost_histogram-0.11.0-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 e9cba6236a7699c697e1b58d9199adc93f2a4b5914e5ba5312771daa46f1bbfa
MD5 c42fdeca61f658513e3232f219ba6767
BLAKE2b-256 1b3a23634c15b740bbbd0ed24c228d96933cc81421020e8a2764afdfc711da73

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.11.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/50.3.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.5

File hashes

Hashes for boost_histogram-0.11.0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d6f562826928c537f84b1460dde2442299f2302888549949bda002ad53c36e8e
MD5 5f7f99f89b78887cbf8d181c5c637e40
BLAKE2b-256 4953a6c66d53755d4d4faf86adfb4906e41554d694e453751fe3145f45084a81

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.11.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/50.3.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.5

File hashes

Hashes for boost_histogram-0.11.0-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 016c299ed7bfb65f80bc1ed9bec2d9d9d181df76e1b537e59e099a4dcc6c0477
MD5 f21f8a10d822d4d84a1d18fcdeda92db
BLAKE2b-256 28f15a242056729ca1e377107b6f08770f36bd1f101632279e293f2f36ac103b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.11.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/50.3.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.5

File hashes

Hashes for boost_histogram-0.11.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ffe486c2a4b7c513408a78e6772d663e6de3bd759e5d4d801e87506546176e5d
MD5 1676444bb7aab482a9ae7ed52400ddfd
BLAKE2b-256 7527853fe1ae0551d40a7854c81537c84fb5b3f8825b352aa7a11a2f0ebad449

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.11.0-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 653.9 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/50.3.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.5

File hashes

Hashes for boost_histogram-0.11.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 e6843e6016faa25cf081e305c6b848649b3d7818331d0da430cc92d37b271ded
MD5 232d2035fc7407af91f9da3ee3dc57ce
BLAKE2b-256 48a6b630595f275dbb65eb357ee15d082dc99d3d27af8a8bcecb761161a992d7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.11.0-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 555.8 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/50.3.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.5

File hashes

Hashes for boost_histogram-0.11.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 b85e7ac132c89f73f7f2adaab9c637be0a8c7ee43e382d2546a83a32a24d0a8b
MD5 bab2b65450be021f37089e2fddbfd3d4
BLAKE2b-256 3a3b9980e19f5d7a8b60fc4a9fe162387e559728e7fe42a5c8e840f440bbd651

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for boost_histogram-0.11.0-cp35-cp35m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fb7b9ada51dc1dca2684e240bd0c969d8e3ef9bc5911da1834dac006abaf85fc
MD5 7c5299d94f2fbe0385ad5d7f4df211d3
BLAKE2b-256 8776677704a40d8581e779de0dd0c515a742ee129f2f123a90a3e62cc320d19d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for boost_histogram-0.11.0-cp35-cp35m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fbaba5e59a0899622c780209a970d62b442cb4e1117d51a7eea96152398eb214
MD5 6b592cd70abfc96ca3ed9b3ef1abd0e3
BLAKE2b-256 7dcaaceffc2a58dc2fee0800d7f8d0c1f6265475930a6f9ecd9bd095fd9776cf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.11.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/50.3.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.5

File hashes

Hashes for boost_histogram-0.11.0-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 aef279240848dafcad7d8378c4863983de7b77bfe988624475121fd89d8d18d1
MD5 8637e20e5165819b67ee250ffa6a0a7d
BLAKE2b-256 48c2a44b9c57a4255313cdd777ec2bc87f004642dda73d54d938f96d6a87530e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for boost_histogram-0.11.0-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 365b82496601ad064a65985dbd8cd34611a79cc48beb0353a19027528bb6282c
MD5 533dc07e2ff9fd23580c046ab18f297a
BLAKE2b-256 94abd50ccb4d69cdaec1dc17ba5f40bfcfcc6263ae52d865c2f50d20b52a1021

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.11.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/50.3.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.5

File hashes

Hashes for boost_histogram-0.11.0-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 7ecb5e416c33517f3b34b566a79c57c00920b51ee987acf5314ec7d5f8c23e09
MD5 dd0081ff1e7b0ffaeebebcfa141319fe
BLAKE2b-256 d6c52e42d2c8132cb66943f2256b4720d913be278e4848f83c421bcac4238f8f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.11.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/50.3.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.5

File hashes

Hashes for boost_histogram-0.11.0-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 ca6ccd73982cc0fe774b3b143dffdc25690208cb7092c80364333ed290b02138
MD5 c032f499c3bca7402010d68aafa434c1
BLAKE2b-256 faeeb0cbde23e094f1b4226282f398a7e45cc1edeca4ff8cbb7c094db586034c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.11.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/50.3.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.5

File hashes

Hashes for boost_histogram-0.11.0-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a5a8f3a91b35dbbf4b975906bd19b0ec171c5da6423bf6360c44b8e9683711a8
MD5 da39ab7efddd618752dcca306f5feab3
BLAKE2b-256 f1d2a43c42a512943d2b8e887703565fc4b770d30a4cf09872f7f1f68cb9b9d0

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for boost_histogram-0.11.0-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 2c29599b8b625e545ca6fd2c88626c57b9a0f287cde41405f08d22c0c56ee7a2
MD5 cca25ed50eb7f97b99618a4cf64ebe3c
BLAKE2b-256 0a519ccb9c7692db0f6c9ab30c0a64d56f725e128cc03c708fe62a0b0b9100b0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.11.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/50.3.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.5

File hashes

Hashes for boost_histogram-0.11.0-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a74a0940d4cbad5c28775d87c580ebc33f477efbf622e1de4aa2d047e7b1bc9e
MD5 d739bbeed0f10c31ec495b590a91b416
BLAKE2b-256 a4a4bb74b1f39ff5b040a9c8c7e50e8953e755ade3a70a0429da309bc68f9e7a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.11.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/50.3.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.5

File hashes

Hashes for boost_histogram-0.11.0-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 2d1f2d2ca3c93cb6af9decc8afb60cdc5b86dd21d09fd69e6a23e1b1ae15a32d
MD5 9a058e1b13689464f258d98ea146a3cd
BLAKE2b-256 2f530a881adc18da834fc82e78bafa27ee4decfc4513f2740b536735cd143d9e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.11.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/50.3.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.5

File hashes

Hashes for boost_histogram-0.11.0-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 ed464002b2949568fcbde523c6e33b0211c6aecd814305d476ab5fe2fe7d6902
MD5 cdfa390b718fdbecfddcd8363fa8b1d9
BLAKE2b-256 187c5442fcb963745745fa7f4f7b02b17d1d4fe99b762410430136e530276fcb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.11.0-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 711.4 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.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.5

File hashes

Hashes for boost_histogram-0.11.0-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 da2dbc2aa557b33e58ba840a96d29d033c0492147897ca668136468e23e5de25
MD5 5f2f61c9e6fd368bcd2300ac2f0b1b2d
BLAKE2b-256 45c7170dc666a745e356cb98bd6b4ffa543dcea4332742c67d3e67980b1a7fb9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.11.0-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 613.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.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.5

File hashes

Hashes for boost_histogram-0.11.0-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 09491bf3ad9b848e1b57cb2c2d7f1e9d373e4ca598a595346b974c1ff9b447c0
MD5 29e31d2c30c65b8a189cd68fd9dd2f24
BLAKE2b-256 c88866fdeb89ff9b8454d28fa5a52021ce55543f1ca7d9f7d91d43c29b2f30fa

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for boost_histogram-0.11.0-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 5d679edfa74234d2c9af0f9c7599bb3eb2b9210ffd31a3c805d8f9d282228c98
MD5 0493c884a47145d0f879c8eb779f357d
BLAKE2b-256 e56569bd6450c0f04f71777c715723181e330c910127b6dc777db806014f5f01

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.11.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/50.3.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.5

File hashes

Hashes for boost_histogram-0.11.0-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 6af6969ec6d1d9449fa9fbf4e29b9047f2bd2ca378ed27882de4eb1935c13b85
MD5 785718630cf945f05d0b89fb402c8107
BLAKE2b-256 5a80e93740abd854de92ce73df5d774644887003d9d88e5bd8784a50e945d9a8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.11.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/50.3.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.5

File hashes

Hashes for boost_histogram-0.11.0-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 7d7a626b18589716db6a7be331a1e558bc4a49235e571e2686aaa3833910896e
MD5 e655395b4d2578c8a7ad36f8c7d90489
BLAKE2b-256 b0a687964944f4e03f6b3d2a051b24cecfcd3c4e288049e60bacaaf687249684

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.11.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/50.3.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.5

File hashes

Hashes for boost_histogram-0.11.0-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 84006cb3b029ff67405a5dde55a08352e029b64188b978cacb41add4f731851e
MD5 27afbf9b402ed6e0a7beeaa6d9383533
BLAKE2b-256 b3b4ed21912ca06d77c183399b808720169b56443653eb12f2ed5648d0446178

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.11.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/50.3.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.5

File hashes

Hashes for boost_histogram-0.11.0-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f7c5a4d83e7a1b8e00fae1114526b0dc3e258b6cfc03b641c8785a240bda48e5
MD5 5e9f865a43e8f37abfe1c9b07cd84317
BLAKE2b-256 f1c85626d20b6ab8407abbb919e47e559bb47a36d7ec70c54e9c2f8c165b6dfe

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