Skip to main content

The Boost::Histogram Python wrapper.

Project description

boost-histogram logo

boost-histogram for Python

Actions Status Documentation Status

PyPI version Conda-Forge PyPI platforms DOI

GitHub Discussion Gitter Scikit-HEP

Python bindings for Boost::Histogram (source), a C++14 library. This is one of the fastest libraries for histogramming, while still providing the power of a full histogram object. See what's new.

Other members of the boost-histogram family include:

  • Hist: The first-party analyst-friendly histogram library that extends boost-histogram with named axes, many new shortcuts including UHI+, plotting shortcuts, and more.
  • UHI: Specification for Histogram library interop, especially for plotting.
  • mplhep: Plotting extension for matplotlib with support for UHI histograms.
  • histoprint: Histogram display library for the command line with support for UHI.
  • dask-histogram: Dask support for boost-histogram.

Usage

Slideshow of features. See expandable text below if the image is not readable.

Text intro (click to expand)
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
values = hist.values()

# Make a new histogram with just the second axis, summing over the first, and
# rebinning the second into larger bins:
h2 = hist[::sum, :: bh.rebin(2)]

We support the uhi PlottableHistogram protocol, so boost-histogram/Hist histograms can be plotted via any compatible library, such as mplhep.

Cheatsheet

Simplified list of features (click to expand)
  • 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, circular=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, circular=False): Uneven bin spacing
    • bh.axis.IntCategory([...], *, growth=False): Integer categories
    • bh.axis.StrCategory([...], *, growth=False): String categories
    • bh.axis.Boolean(): A True/False axis
  • 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
    • .traits: The options set on the axis
    • .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)
    • .kind: Either bh.Kind.COUNT or bh.Kind.MEAN, depending on storage
    • .storage_type: Fetch the histogram storage type
    • .sum(flow=False): The total count of all bins
    • .project(ax1, ax2, ...): Project down to listed axis (numbers). Can also reorder axes.
    • .to_numpy(flow=False, view=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)
    • .values(flow=False): Get a view on the values (counts or means, depending on storage)
    • .variances(flow=False): Get the variances if available
    • .counts(flow=False): Get the effective counts for all storage types
    • .reset(): Set counters to 0 (growing axis remain the same size)
    • .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 UHI Indexing
    • 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
    • All objects support copy/deepcopy/pickle
    • Fully statically typed, tested with MyPy.

Installation

You can install this library from PyPI with pip:

python3 -m pip install boost-histogram

All the normal best-practices for Python apply; Pip should not be very old (Pip 9 is very old), you should be in a virtual environment, etc. Python 3.8+ is required; for older versions of Python (3.5 and 2.7), 0.13 will be installed instead, which is API equivalent to 1.0, but will not be gaining new features. 1.3.x was the last series to support Python 3.6. 1.4.x was the last series to support Python 3.7.

Binaries available:

The easiest way to get boost-histogram is to use a binary wheel, which happens when you run the above command on a supported platform. Wheels are produced using cibuildwheel; all common platforms have wheels provided in boost-histogram:

System Arch Python versions PyPy versions
manylinux2014 64-bit 3.8, 3.9, 3.10, 3.11, 3.12, 3.13, 3.13t 3.9, 3.10
manylinux2014 ARM64 3.8, 3.9, 3.10, 3.11, 3.12, 3.13, 3.13t 3.9, 3.10
musllinux_1_1 64-bit 3.8, 3.9, 3.10, 3.11, 3.12, 3.13, 3.13t
macOS 10.9+ Intel 64-bit 3.8, 3.9, 3.10, 3.11, 3.12, 3.13, 3.13t 3.9, 3.10
macOS 11+ AS Arm64 3.8, 3.9, 3.10, 3.11, 3.12, 3.13, 3.13t 3.9, 3.10
Windows 32-bit 3.8, 3.9, 3.10, 3.11, 3.12, 3.13, 3.13t
Windows 64-bit 3.8, 3.9, 3.10, 3.11, 3.12, 3.13, 3.13t 3.9, 3.10

PowerPC or IBM-Z wheels are not provided but are available on request.

If you are on a Linux system that is not part of the "many" in manylinux or musl in musllinux, such as ClearLinux, building from source is usually fine, since the compilers on those systems are often quite new. It will just take longer to install when it is using the sdist instead of a wheel. All dependencies are header-only and included.

Conda-Forge

The boost-histogram package is available on conda-forge, as well. All supported variants are available.

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, or msvc >= 14.1.

Boost is not required or needed (this only depends on included header-only dependencies). You can install directly from GitHub if you would like.

python -m pip install git+https://github.com/scikit-hep/boost-histogram.git@develop

Developing

See CONTRIBUTING.md for details on how to set up a development environment.

Contributors

We would like to acknowledge the contributors that made this project possible (emoji key):


Henry Schreiner

🚧 💻 📖

Hans Dembinski

🚧 💻

N!no

⚠️ 📖

Jim Pivarski

🤔

Nicholas Smith

🐛

physicscitizen

🐛

Chanchal Kumar Maji

📖

Doug Davis

🐛

Pierre Grimaud

📖

Beojan Stanislaus

🐛

Popinaodude

🐛

Congqiao Li

🐛

alexander-held

🐛

Chris Burr

📖

Konstantin Gizdov

📦 🐛

Kyle Cranmer

📖

Aman Goel

📖 💻

Jay Gohil

📖

This project follows the all-contributors specification.

Talks and other documentation/tutorial sources

The official documentation is here, and includes a quickstart.


Acknowledgements

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

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

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

boost_histogram-1.5.0.tar.gz (1.2 MB view details)

Uploaded Source

Built Distributions

boost_histogram-1.5.0-pp310-pypy310_pp73-win_amd64.whl (738.8 kB view details)

Uploaded PyPy Windows x86-64

boost_histogram-1.5.0-pp310-pypy310_pp73-macosx_14_0_arm64.whl (950.0 kB view details)

Uploaded PyPy macOS 14.0+ ARM64

boost_histogram-1.5.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (1.1 MB view details)

Uploaded PyPy macOS 10.15+ x86-64

boost_histogram-1.5.0-pp39-pypy39_pp73-win_amd64.whl (738.8 kB view details)

Uploaded PyPy Windows x86-64

boost_histogram-1.5.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

boost_histogram-1.5.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl (950.8 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

boost_histogram-1.5.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (1.1 MB view details)

Uploaded PyPy macOS 10.15+ x86-64

boost_histogram-1.5.0-cp313-cp313t-win_amd64.whl (849.7 kB view details)

Uploaded CPython 3.13t Windows x86-64

boost_histogram-1.5.0-cp313-cp313t-win32.whl (595.8 kB view details)

Uploaded CPython 3.13t Windows x86

boost_histogram-1.5.0-cp313-cp313t-musllinux_1_2_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.13t musllinux: musl 1.2+ x86-64

boost_histogram-1.5.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13t manylinux: glibc 2.17+ x86-64

boost_histogram-1.5.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (977.7 kB view details)

Uploaded CPython 3.13t manylinux: glibc 2.17+ ARM64

boost_histogram-1.5.0-cp313-cp313t-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.13t macOS 11.0+ ARM64

boost_histogram-1.5.0-cp313-cp313t-macosx_10_13_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.13t macOS 10.13+ x86-64

boost_histogram-1.5.0-cp313-cp313-win_amd64.whl (746.7 kB view details)

Uploaded CPython 3.13 Windows x86-64

boost_histogram-1.5.0-cp313-cp313-win32.whl (541.4 kB view details)

Uploaded CPython 3.13 Windows x86

boost_histogram-1.5.0-cp313-cp313-musllinux_1_2_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

boost_histogram-1.5.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

boost_histogram-1.5.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (965.6 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

boost_histogram-1.5.0-cp313-cp313-macosx_11_0_arm64.whl (948.9 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

boost_histogram-1.5.0-cp313-cp313-macosx_10_13_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

boost_histogram-1.5.0-cp312-cp312-win_amd64.whl (746.7 kB view details)

Uploaded CPython 3.12 Windows x86-64

boost_histogram-1.5.0-cp312-cp312-win32.whl (541.4 kB view details)

Uploaded CPython 3.12 Windows x86

boost_histogram-1.5.0-cp312-cp312-musllinux_1_2_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

boost_histogram-1.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

boost_histogram-1.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (965.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

boost_histogram-1.5.0-cp312-cp312-macosx_11_0_arm64.whl (948.8 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

boost_histogram-1.5.0-cp312-cp312-macosx_10_9_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

boost_histogram-1.5.0-cp311-cp311-win_amd64.whl (738.7 kB view details)

Uploaded CPython 3.11 Windows x86-64

boost_histogram-1.5.0-cp311-cp311-win32.whl (536.1 kB view details)

Uploaded CPython 3.11 Windows x86

boost_histogram-1.5.0-cp311-cp311-musllinux_1_2_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

boost_histogram-1.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

boost_histogram-1.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (987.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

boost_histogram-1.5.0-cp311-cp311-macosx_11_0_arm64.whl (948.5 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

boost_histogram-1.5.0-cp311-cp311-macosx_10_9_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

boost_histogram-1.5.0-cp310-cp310-win_amd64.whl (737.8 kB view details)

Uploaded CPython 3.10 Windows x86-64

boost_histogram-1.5.0-cp310-cp310-win32.whl (535.3 kB view details)

Uploaded CPython 3.10 Windows x86

boost_histogram-1.5.0-cp310-cp310-musllinux_1_2_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

boost_histogram-1.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

boost_histogram-1.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (986.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

boost_histogram-1.5.0-cp310-cp310-macosx_11_0_arm64.whl (947.0 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

boost_histogram-1.5.0-cp310-cp310-macosx_10_9_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

boost_histogram-1.5.0-cp39-cp39-win_amd64.whl (827.9 kB view details)

Uploaded CPython 3.9 Windows x86-64

boost_histogram-1.5.0-cp39-cp39-win32.whl (535.5 kB view details)

Uploaded CPython 3.9 Windows x86

boost_histogram-1.5.0-cp39-cp39-musllinux_1_2_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

boost_histogram-1.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

boost_histogram-1.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (985.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

boost_histogram-1.5.0-cp39-cp39-macosx_11_0_arm64.whl (947.7 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

boost_histogram-1.5.0-cp39-cp39-macosx_10_9_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

boost_histogram-1.5.0-cp38-cp38-win_amd64.whl (738.0 kB view details)

Uploaded CPython 3.8 Windows x86-64

boost_histogram-1.5.0-cp38-cp38-win32.whl (535.2 kB view details)

Uploaded CPython 3.8 Windows x86

boost_histogram-1.5.0-cp38-cp38-musllinux_1_2_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

boost_histogram-1.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

boost_histogram-1.5.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (986.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

boost_histogram-1.5.0-cp38-cp38-macosx_11_0_arm64.whl (947.3 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

boost_histogram-1.5.0-cp38-cp38-macosx_10_9_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: boost_histogram-1.5.0.tar.gz
  • Upload date:
  • Size: 1.2 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.5

File hashes

Hashes for boost_histogram-1.5.0.tar.gz
Algorithm Hash digest
SHA256 0623f010e6c52e5d018767723959686090db07fc30f0d1d8475b5d663c5ddb2c
MD5 746656a58c2331d15980b373e6841a37
BLAKE2b-256 8d5196712ed4e1d64618d3e76aac2d1f96e2f4856120012f0dad51adf42c78e4

See more details on using hashes here.

File details

Details for the file boost_histogram-1.5.0-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 8f017488ab3a8c0fc16412452d262749b50c969b241566faa9d5f5a95c558e54
MD5 dd9aa4b82ca42e570d5309e823d82d02
BLAKE2b-256 d04de330880f9fe640a34201e13dce34160a3586a3546215a06ccc68dc4c46ae

See more details on using hashes here.

File details

Details for the file boost_histogram-1.5.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8baca6521939847c0065ac95cbef19a0c5651e6e67c7d38c415e6a10cb869a1f
MD5 33fb74944894dc6b4fa53aee72f2179e
BLAKE2b-256 4a5bc32b5dfc58b226d09edf142aeb367a784dfa7e7ccbb41a68044732136caa

See more details on using hashes here.

File details

Details for the file boost_histogram-1.5.0-pp310-pypy310_pp73-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.0-pp310-pypy310_pp73-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 2a1b055407c6863127b2f23932b3c2886d0dd550d2304c0552395ae771ef20e7
MD5 b6510825a9dbf6376305b045a6c77922
BLAKE2b-256 dd0ce934d780947a7bd269b9bc98be133984e493a0bc7283fd6b8143d11ccb13

See more details on using hashes here.

File details

Details for the file boost_histogram-1.5.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 66e074b0389490a7829dfc1c76f42cae9b1aa15e184dbf991ff6818b2d9e7925
MD5 ef71f2e94e198c94d4015221f3db62fd
BLAKE2b-256 b54ca28ae04d60428ac9a876a0dff95393a328431a9a79b75a1211d5a8a7885e

See more details on using hashes here.

File details

Details for the file boost_histogram-1.5.0-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 e4d81c94c196d8461961b472ac5255b5720e9754e496d34497aa46a91b0deb63
MD5 a028383cff6f9e21ceb2f5f68225140e
BLAKE2b-256 a65cd1298316be89ca3ef55f022d15565a5c7dab3b165eafc7954f9f9905453d

See more details on using hashes here.

File details

Details for the file boost_histogram-1.5.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f581d03e15413809b01a8db15329f339bd4ea23f891c61842102dc4449fdb5eb
MD5 2f9d8bdf966cc4390e9cc2ecf5676acc
BLAKE2b-256 02634c4b7c98fc2a989a23d752238c625afbd0f74703236a595aebdc1ef2b9f7

See more details on using hashes here.

File details

Details for the file boost_histogram-1.5.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e77fd789b996982000cd233357d19f244a5f216efa68d9da417fdc001e296595
MD5 cafc0a725d9a3193707fe3de1cc073fd
BLAKE2b-256 d11bb090c42e811c339355cf8a15dcf14c2dfa11e76839760e3526cc0fdfb2fe

See more details on using hashes here.

File details

Details for the file boost_histogram-1.5.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 3c54261c4b311832f1c2f840e4df8483c74dd16a3b7582941d00a041f116c19d
MD5 baad512fa5286374b9575b5519d4a3f4
BLAKE2b-256 0419b5a5ebcf75da01b9a91f135caa249d526da4ce4872fe3ff9cd5d5ef7836c

See more details on using hashes here.

File details

Details for the file boost_histogram-1.5.0-cp313-cp313t-win_amd64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 cc1185c1544a94ba2c7987b70a7996b01ca7eafa7deafaea23e683a2b0168016
MD5 b8a11d8fb532e58de764cf55776a5b42
BLAKE2b-256 43668c4e10ad9647a11e7b8602a1eb0e4c3b2ccc248560fae3827f88c304073c

See more details on using hashes here.

File details

Details for the file boost_histogram-1.5.0-cp313-cp313t-win32.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.0-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 390bf6f74b6d87491450a85c095dd9ab265a1abc8bbca215eca48ba8e15ad455
MD5 b5896e26fb01cfc0ace8c49dca00c66e
BLAKE2b-256 e7fac5e78c4398c7d7db18d8879d0ee707145e2d9c9cfd2597d30ff3d37ded42

See more details on using hashes here.

File details

Details for the file boost_histogram-1.5.0-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a4879fdb4f700581d4ec7f3549728eb7f5628f29857601127ec9fb715499cff4
MD5 530527be43ef95a3f136bc94b47b2cd1
BLAKE2b-256 d39408dc68b9e0d0c882f5c68dfd1aed00eb8abd5f9e678cd054588a331b5f4a

See more details on using hashes here.

File details

Details for the file boost_histogram-1.5.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ddde3d51aa59864bde9710c90ad684ce67800420ff4c92654dece65040638385
MD5 823f974ecfe5208b74e26457ec39a095
BLAKE2b-256 694ec926118faeceb549d2837f8853a198a67417615c0a9045aec8dc716026c5

See more details on using hashes here.

File details

Details for the file boost_histogram-1.5.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 918ebadaa756cc32126f86b5dd42862f8453cc68acb472471575f2c5b6383caa
MD5 297acc5ad46c18311d9a12b7e9b3c6df
BLAKE2b-256 50eb25fc52ce313717fa47efd12fc87d6c02815969a9f2382c269eccf7a129a9

See more details on using hashes here.

File details

Details for the file boost_histogram-1.5.0-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 864a192df9f8601f18fb93625dea67e297a2f2359c18fdc6137637f4031f4071
MD5 eac8cc96bf372c76b41889671ed8e89e
BLAKE2b-256 f2c378c9fba5a8290c75afbb5c80bafe91d41927fcacd96775de547c32309f03

See more details on using hashes here.

File details

Details for the file boost_histogram-1.5.0-cp313-cp313t-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.0-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 638ef5cee32c42d35fea65929b5c99577303371e09c559dcb0c569f4eaf43601
MD5 e8642f34496cc10611f97e02e46c51b0
BLAKE2b-256 c7b80b130067e3e0aaccee27f443e77c4efba8fbdf2fab85ce69e753b59923bf

See more details on using hashes here.

File details

Details for the file boost_histogram-1.5.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6038a3d588dbfc07d5b0c5dc8ae033d352404180ea39c69b01a7fcb2738d7c4b
MD5 2728288a8f0d7e41560327703e7f0201
BLAKE2b-256 f9ff872f72d85e6156600727cea0e19aa8c3d9e0d643308a81121e22f14e6c63

See more details on using hashes here.

File details

Details for the file boost_histogram-1.5.0-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 9c9969495debde65feb27423bd4a1106bcf954a47dcae007cc7a250e7baf0d9f
MD5 c80b8c6e8773835993445284a7a468e9
BLAKE2b-256 32dd3942e38553ca1eaa0763e1d5f10827b5825b05cc306c7a8576d994e87ca0

See more details on using hashes here.

File details

Details for the file boost_histogram-1.5.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ca4f24bb1f624b7b406eede3c4c37496c7eed73ad323d92f386cf79b43846e65
MD5 22ea2cc9339709acf17edee4c7ef0a5b
BLAKE2b-256 ddf3d215ae92c8087d06487d96e1131d5bc661806a769f50ad8428d566f66b6e

See more details on using hashes here.

File details

Details for the file boost_histogram-1.5.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 85296f45e4b98f2213143c9d93cc0de57a669aeb7ee45a5eb08bf6d009c1aa4c
MD5 42b7c1dae9fdd03fbcbf5be9c32bc53c
BLAKE2b-256 9b17cb8ec80631cea2c5a8c4cc7457a13bb39a03ac612b37ba539e35260ee0ab

See more details on using hashes here.

File details

Details for the file boost_histogram-1.5.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 19f69526b6e8f11b741230c20756535a5eb43b8f4f340045c1308aafc24afc74
MD5 10fa058dcfe87619da939de439cabefb
BLAKE2b-256 b7c43ec91e920cd1560f4e3562f2935a2991b47763ceed8e11d3fece62e5f796

See more details on using hashes here.

File details

Details for the file boost_histogram-1.5.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 587e28e6594cd9628065a597291cf1a788610ab0b7cfd9dae837d4ecd7cec40c
MD5 1c660a3250ccbb0fbb127b297e32cd02
BLAKE2b-256 16b5a472245932a97fd9844390d5bd34fb3c6dced6a6b55b190ceb9d8e4e7a4c

See more details on using hashes here.

File details

Details for the file boost_histogram-1.5.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 ade16852d6c96dfbd5177c53df9bf0c5b958cb7589375865c5785f8ac8279c13
MD5 146536d3c9de1f4d61de7bdad3d9be70
BLAKE2b-256 07894ea04b66f24754c851f8d04352f3e75a3a1e5cba7c403fd19b7778052661

See more details on using hashes here.

File details

Details for the file boost_histogram-1.5.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 0dad776bfd6c2caa49c42c8a808c3a098e3a775f2b321b77579ef2b8d806729f
MD5 fa89d87729786f8b5f89cfe91388a1cc
BLAKE2b-256 9e22807319b7f90e6b86d3d9d52edb55da4c326acd32d1200a8052a1f5168a1a

See more details on using hashes here.

File details

Details for the file boost_histogram-1.5.0-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 45c20d2469bc6a4921126892a9b1b26434f802d18861ada24d74cf444d84ae88
MD5 9b4dda1de2e625f8b4e4158aab267e53
BLAKE2b-256 c96fc1d23259c674c17795e8ccf286a8caa1c97e22c63d6e7582ffacf22c7ee3

See more details on using hashes here.

File details

Details for the file boost_histogram-1.5.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 717ab59167a1f251cbba94a4ba1f0b0b9a2e30a1977cf963fcf674c29039c143
MD5 3129ce1fa6c2c6bf1ef0d5ed0b1f3a35
BLAKE2b-256 e2410f0930f4c10279fe3a026ed6620cda498c18130995aa9a231f8255ccc5f3

See more details on using hashes here.

File details

Details for the file boost_histogram-1.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7458b5021ed552d00e9d94fdf039b72d7cf7b42a44398b2d8327fbb61e496476
MD5 c2d51cc8d2e18064dbd38f5d851b9cb3
BLAKE2b-256 16ce9f17f1959ae370dea6a826b964c574daca86d22e67fc893f924485108e5b

See more details on using hashes here.

File details

Details for the file boost_histogram-1.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 74df164ada282b817fa7795aaa9a64c8dc1ce0b42b47c92f8bbe1210e5600bc2
MD5 9320d279ded48f491bf88306c224cc7c
BLAKE2b-256 9ef3f4c473cb0c6cf76a473224faf02971e1e651d8fcd098f7928238446914a5

See more details on using hashes here.

File details

Details for the file boost_histogram-1.5.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8f9ad6b65ce3da5d001cfbbf894026018f5756d3c092860fd261d1a55a4ee84e
MD5 bede4c0f33a1b462fec21509b6ac73e5
BLAKE2b-256 fa884278c9a8ebdbf99c78bc14f2532f2557294ef486efee242dcf4d88cb8281

See more details on using hashes here.

File details

Details for the file boost_histogram-1.5.0-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.0-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3e8e875ed42434859bd42ac44f78b28dfc60ff80e07fc72cc9aea1fe5879a3b1
MD5 687700e56ae28a9d4ba77be9a021bde7
BLAKE2b-256 735520aa42692c2e49a79143c910548190d835f062a6af65ae6cbbaa7a85b7c6

See more details on using hashes here.

File details

Details for the file boost_histogram-1.5.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 92054d08d422ed0b2ede0d9377f80097e51ad4d68547a8a16d8a402755bc3350
MD5 ba0d6045f1c79a6905237dbdde22aedd
BLAKE2b-256 c904a9a8bd67dfb113f9996f04c697da8b37418014f2c38657d1b5ca76ca7830

See more details on using hashes here.

File details

Details for the file boost_histogram-1.5.0-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 ef320445ef25b66a057459abc302a27069072ccdd796661822cc5665062813a2
MD5 94065dfa096556aadf7b9e808c1eb5e7
BLAKE2b-256 885cf5e31b5b64daaa2ba8783dd04d5b7b0951af6fc4ebb64f823dc34d534563

See more details on using hashes here.

File details

Details for the file boost_histogram-1.5.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0d1fd6f136bb3785d31860f300f500c43fbd86820e300a110c3f6e7b99950883
MD5 692b9f54137545cfd1a79fd9184d9f85
BLAKE2b-256 c379a0f298e11b243054a25c220bbc43e7c7fac36abbfb19287d9f300b3831a7

See more details on using hashes here.

File details

Details for the file boost_histogram-1.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ea38ffc57050a2478c8a879230058965f9fa8dd0b58617f75771700a6a686cdd
MD5 ed8ccd5186d60d9a6162baad28d633b2
BLAKE2b-256 a6ad74768cf3423164a4436cb6a01ef228d7e72450feeeaef6869c507933182c

See more details on using hashes here.

File details

Details for the file boost_histogram-1.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f8a8e9bd40d8d95767c47e437e1dec7f45676467a257b5183eebc49b8024e22c
MD5 a7c5c0fc9c00c69ff2287b3405a48fc6
BLAKE2b-256 a117e9bf4b10a9d2eba69f748ca7532d134ed6b4e0e324721950d7a235412141

See more details on using hashes here.

File details

Details for the file boost_histogram-1.5.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8e78fdacf1b3bf06bf65cf9a3365f8c067e873d979767bd87bee7fb70d16950b
MD5 2f1629a645f7a801aa6d4f298fc89f26
BLAKE2b-256 ccbd8e2ed5006e654c27efda1ee3816f06f397e161830a9673386aa5cef375f6

See more details on using hashes here.

File details

Details for the file boost_histogram-1.5.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 566bb3adbc4adaf3d8a9390f3d7b93da9da01295bab3673b2919cd3a41d9ba2e
MD5 80ec17a91fb41a55483e2957c5ccbaa3
BLAKE2b-256 337a540bcb47da84506151bf9b668fc9902c0e3966da8c5453f16cc0b70774a7

See more details on using hashes here.

File details

Details for the file boost_histogram-1.5.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7d9dbf2fbbce65be9db56d08646cbed5fcfe2dfff5dc16540bdbbc7a75c85d08
MD5 72ab0f8856c58551bf9eb73a41f69a25
BLAKE2b-256 736ba188dfb45b738c0d7cd7f816b954b116aa0f478de517ee0ef652d72795cd

See more details on using hashes here.

File details

Details for the file boost_histogram-1.5.0-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 d726ba2bcdc0591095f934ee479b484e0cd7e1bd9e12e848b3b8c2e2948d7fc7
MD5 cc61880756062b8c469932b888ea4ffb
BLAKE2b-256 1190eac56ffe065eedc73cb3d2c8c158485c19ff0a96a759282b3c167c8b039f

See more details on using hashes here.

File details

Details for the file boost_histogram-1.5.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7462f6e13532a2cb80cd5e546f2d813ab5ce0e0d02b92d29004899fb4a07954d
MD5 29495ba8e101290f7cf243c24cf9bfee
BLAKE2b-256 b6ba560ec049e586ab8cfec0c13103661fd5796250e508dc3a0364a8902db559

See more details on using hashes here.

File details

Details for the file boost_histogram-1.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c693c3f5452a48a9e394a8c5b51c91e681a505a452416c2ec4cf0b8b8e4e14f5
MD5 6c525f89d33786406f3725465e2f08e5
BLAKE2b-256 8ea594b53b426459895bceee35e23cac77395810045c2282ad9d8acf775244b5

See more details on using hashes here.

File details

Details for the file boost_histogram-1.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f54b3d970a2f5c64e72721b7d02815e4943cdf1fe2a8dc473d8dd7632593162c
MD5 74c48c81200af60165c81f8afd9aff85
BLAKE2b-256 b5917e4bc594530760480eb246339fb1ab7bc382f99a7c657f10cae523dac47e

See more details on using hashes here.

File details

Details for the file boost_histogram-1.5.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 46024cc95cf4b44c980e5bc5f7b2f56f00487e567c8b71ccc43d0d81b6cdc1cd
MD5 1c2ca39d967cca0b31d14478f55157c7
BLAKE2b-256 f229382c2e0920ebb834389c5e5f43d898d997803fd7f41e3ed8722f1e07e36c

See more details on using hashes here.

File details

Details for the file boost_histogram-1.5.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ec3b94005dc7d7313a783655bc46850148a9eb82613ff32d5e41fc796beba7e6
MD5 f5e01175945876cc8628dcfce04e6f9e
BLAKE2b-256 40f8329b910bbf1094fa311fccefcb649f525c79446d4a63ad188cbf42dc1053

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for boost_histogram-1.5.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 2613e07efb37eb788aecb2a889944c370b9c2626ec655f323a9996ef8a97d613
MD5 eef65bd423407291201d1e3f720e48d8
BLAKE2b-256 4c2ce5a1a5a8b5b50be4ea37374ed1c2c5c178b82dd8b5b54d337345034d5945

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for boost_histogram-1.5.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 06a2edc675f53396309c2bbce1d402b403900508a2776201d6a892e641d54388
MD5 aaffd72818e1aa5fe60077cbbee2b94e
BLAKE2b-256 f8e76937fd8598f075acc48eab7202d056adb06d3d05d359d8780e1acd7966bc

See more details on using hashes here.

File details

Details for the file boost_histogram-1.5.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e4e98947c851e52a93fd1c4f0bb869e6a15ac116eac03954c14bacc508bd05d3
MD5 f717f40d93c776f9c0bbcb499f25528a
BLAKE2b-256 735982d5dbeb38a788edf30c229a89a789cda2310e862c540b9c05af5bff1ed2

See more details on using hashes here.

File details

Details for the file boost_histogram-1.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 23bef4a1f67995742a7a2f377ecfd288c791bb0767c8ad14e25db759f6fe2601
MD5 842f3c755e3812f4889e1e5635354409
BLAKE2b-256 f6121d363fb4fded5f9fef1ee13a69f37062738aac0a5b0ce7217d0844edb83c

See more details on using hashes here.

File details

Details for the file boost_histogram-1.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 27a1a99202ae6bd03bb9112914c009fe7b196fbc2b59fc392bd6aad5d41a0388
MD5 97b4c293f148245fe7024a8905937d25
BLAKE2b-256 50464659931beb9241ccb315d491016377c7d8bab62dd284b60b629ec76e23c5

See more details on using hashes here.

File details

Details for the file boost_histogram-1.5.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3719231b209fa4a94a022e78d352db5c8ca2790954b9853975f28fc3fa9dad49
MD5 7145452467a05dd6d5fcd8ef9e301bc5
BLAKE2b-256 e6fe5149a20310fbfbda436fce37096733209e3e8fb83e0c27285f60a7c466de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for boost_histogram-1.5.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 66eba3bf25227496920f9f8eee57f1f53b1faefca579b7c2a977e9b57a223946
MD5 894fbecb1b6b552bf61c553d8233e33f
BLAKE2b-256 32c97df373113a255631f1ab9951763018754d74432bc353a37c7b780032b1d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for boost_histogram-1.5.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 cfc79112e674bdde70ddf97ba94437b0286a7b6c1a39ea1dbc357de5963d9b93
MD5 67bebb61fa9f1b7bc915eeb7ec1efaf5
BLAKE2b-256 626e713fcace83172c7c600463fb995175edc22fec1fe062951aa4f535011963

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for boost_histogram-1.5.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 2d33240d0bfd6a854fb1a13b3217e51709a7571f221a242bb774a5a4cfb47a4e
MD5 1565c1d50b105f3e6340800a7a11035e
BLAKE2b-256 4aad02caf976bd87aabc76739dee12a792420da59a83a86ad456cc15bd20aab1

See more details on using hashes here.

File details

Details for the file boost_histogram-1.5.0-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e31a6f047843011c8bb5fb2b5a0193442825668ca154fa3d6e5419e0ab89b7cd
MD5 054688427549f58524a0c7a8336e0fc0
BLAKE2b-256 e7fc557b7e9152da755aa635eaac70c2a25a3fd0870c515fae9ed78b278b85d2

See more details on using hashes here.

File details

Details for the file boost_histogram-1.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a276e89bb842f168b5c7f16d447063a911d2d1263f238dccf9a2b4b0c703a98f
MD5 19eb65a012c64ba1754df86087f2be63
BLAKE2b-256 8a0bed12ddd545c0d3b6e5791bf619e9523e3c98e008e6a369776606d86a5ab3

See more details on using hashes here.

File details

Details for the file boost_histogram-1.5.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 764464a1e43e1acad20c95a37fc4a3df7bf35f9800a55d86e5f3397e4428ce8b
MD5 b415a95bf2348e0b870b96bda4ecff29
BLAKE2b-256 0956bd57f1a66eb0f0bccae78e1dea71527f93c72da9f221648032283cba83a3

See more details on using hashes here.

File details

Details for the file boost_histogram-1.5.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b5b930c47cfdfe6857a68ed29689c8bc4bffdbd13a6698f604dd968d989d459e
MD5 3c4e70d1e50c52021b57e7a0302fd835
BLAKE2b-256 6dcbf5c57024a3787f1800046c6bbcb53d51b06c51c0acfb68864e2af7319879

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for boost_histogram-1.5.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 363811d58da6da3d4debca6dbc86fbd560fdf492e125e09ad5844f2afe698939
MD5 6c0e3d453522e6ee1af07b0b2e747cc7
BLAKE2b-256 f85338ee5c8900f6fa02809fb54c33d7b8fed4271da9b5156c79752ea2598c92

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