Skip to main content

The Boost::Histogram Python wrapper.

Project description

boost-histogram logo

boost-histogram for Python

Actions Status Documentation Status Code style: black

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.

For end users interested in analysis, see Hist, a first-party analyst-friendly histogram library that extends boost-histogram with named axes, many new shortcuts including UHI+, plotting shortcuts, and more.

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
    • .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
    • .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.6+ 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.

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
ManyLinux1 (custom GCC 9.2) 32 & 64-bit 3.6, 3.7, 3.8
ManyLinux2010 32 & 64-bit 3.6, 3.7, 3.8, 3.9 (64-bit) 7.3: 3.7
ManyLinux2014 32 & 64-bit 3.10
ManyLinux2014 ARM64 3.6, 3.7, 3.8, 3.9, 3.10
MuslLinux_1_1 64-bit 3.6, 3.7, 3.8, 3.9, 3.10
macOS 10.9+ 64-bit 3.6, 3.7, 3.8, 3.9, 3.10 7.3: 3.7
macOS Universal2 Arm64 3.8, 3.9, 3.10
Windows 32 & 64-bit 3.6, 3.7, 3.8, 3.9, 3.10 (64-bit) 7.3: 3.7
  • manylinux1: Using a custom docker container with GCC 9 to produce. Anything running Python 3.9 should be compatible with manylinux2010, so manylinux1 not provided for Python 3.9 (like NumPy). These will be likely be dropped Jan 1, 2022 when manylinux support ends.
  • manylinux2010: Requires pip 10+.
  • PyPy 7.3.x: Supports the officially supported pypy3.7 on all Intel platforms.
  • ARM on Linux is supported for newer Python versions via manylinux2014. PowerPC or IBM-Z available on request, or manylinux_2_24, or musllinux_1_1.
  • macOS Universal2 wheels for Apple Silicon and Intel provided for Python 3.8+ (requires Pip 21.0.1 or newer).

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. You should have a version of pip less than 2-3 years old (10+).

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

📖 💻

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

Uploaded Source

Built Distributions

boost_histogram-1.3.1-pp38-pypy38_pp73-win_amd64.whl (1.4 MB view details)

Uploaded PyPy Windows x86-64

boost_histogram-1.3.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

boost_histogram-1.3.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (3.0 MB view details)

Uploaded PyPy macOS 10.9+ x86-64

boost_histogram-1.3.1-pp37-pypy37_pp73-win_amd64.whl (1.4 MB view details)

Uploaded PyPy Windows x86-64

boost_histogram-1.3.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

boost_histogram-1.3.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (1.5 MB view details)

Uploaded PyPy macOS 10.9+ x86-64

boost_histogram-1.3.1-cp310-cp310-win_amd64.whl (741.6 kB view details)

Uploaded CPython 3.10 Windows x86-64

boost_histogram-1.3.1-cp310-cp310-win32.whl (562.5 kB view details)

Uploaded CPython 3.10 Windows x86

boost_histogram-1.3.1-cp310-cp310-musllinux_1_1_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

boost_histogram-1.3.1-cp310-cp310-musllinux_1_1_i686.whl (2.1 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

boost_histogram-1.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

boost_histogram-1.3.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (1.5 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

boost_histogram-1.3.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

boost_histogram-1.3.1-cp310-cp310-macosx_10_9_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

boost_histogram-1.3.1-cp310-cp310-macosx_10_9_universal2.whl (3.0 MB view details)

Uploaded CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64)

boost_histogram-1.3.1-cp39-cp39-win_amd64.whl (832.3 kB view details)

Uploaded CPython 3.9 Windows x86-64

boost_histogram-1.3.1-cp39-cp39-win32.whl (562.7 kB view details)

Uploaded CPython 3.9 Windows x86

boost_histogram-1.3.1-cp39-cp39-musllinux_1_1_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

boost_histogram-1.3.1-cp39-cp39-musllinux_1_1_i686.whl (2.1 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

boost_histogram-1.3.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

boost_histogram-1.3.1-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

boost_histogram-1.3.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl (1.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

boost_histogram-1.3.1-cp39-cp39-macosx_10_9_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

boost_histogram-1.3.1-cp39-cp39-macosx_10_9_universal2.whl (3.0 MB view details)

Uploaded CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64)

boost_histogram-1.3.1-cp38-cp38-win_amd64.whl (741.3 kB view details)

Uploaded CPython 3.8 Windows x86-64

boost_histogram-1.3.1-cp38-cp38-win32.whl (562.5 kB view details)

Uploaded CPython 3.8 Windows x86

boost_histogram-1.3.1-cp38-cp38-musllinux_1_1_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

boost_histogram-1.3.1-cp38-cp38-musllinux_1_1_i686.whl (2.1 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

boost_histogram-1.3.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

boost_histogram-1.3.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl (1.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

boost_histogram-1.3.1-cp38-cp38-manylinux1_i686.whl (2.0 MB view details)

Uploaded CPython 3.8

boost_histogram-1.3.1-cp38-cp38-macosx_10_9_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

boost_histogram-1.3.1-cp38-cp38-macosx_10_9_universal2.whl (3.0 MB view details)

Uploaded CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64)

boost_histogram-1.3.1-cp37-cp37m-win_amd64.whl (750.0 kB view details)

Uploaded CPython 3.7m Windows x86-64

boost_histogram-1.3.1-cp37-cp37m-win32.whl (563.3 kB view details)

Uploaded CPython 3.7m Windows x86

boost_histogram-1.3.1-cp37-cp37m-musllinux_1_1_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ x86-64

boost_histogram-1.3.1-cp37-cp37m-musllinux_1_1_i686.whl (2.1 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

boost_histogram-1.3.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

boost_histogram-1.3.1-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (1.4 MB view details)

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

boost_histogram-1.3.1-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl (1.4 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

boost_histogram-1.3.1-cp37-cp37m-manylinux1_i686.whl (2.0 MB view details)

Uploaded CPython 3.7m

boost_histogram-1.3.1-cp37-cp37m-macosx_10_9_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

boost_histogram-1.3.1-cp36-cp36m-win_amd64.whl (764.5 kB view details)

Uploaded CPython 3.6m Windows x86-64

boost_histogram-1.3.1-cp36-cp36m-win32.whl (580.7 kB view details)

Uploaded CPython 3.6m Windows x86

boost_histogram-1.3.1-cp36-cp36m-musllinux_1_1_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ x86-64

boost_histogram-1.3.1-cp36-cp36m-musllinux_1_1_i686.whl (2.1 MB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ i686

boost_histogram-1.3.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

boost_histogram-1.3.1-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (1.4 MB view details)

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

boost_histogram-1.3.1-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.whl (1.4 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

boost_histogram-1.3.1-cp36-cp36m-manylinux1_i686.whl (2.0 MB view details)

Uploaded CPython 3.6m

boost_histogram-1.3.1-cp36-cp36m-macosx_10_9_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: boost_histogram-1.3.1.tar.gz
  • Upload date:
  • Size: 1.2 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for boost_histogram-1.3.1.tar.gz
Algorithm Hash digest
SHA256 31cd396656f3a37834e07d304cdb84d9906bc2172626a3d92fe577d08bcf410f
MD5 003f734c1d08120c4128c30d3ed52977
BLAKE2b-256 fa2d79cad54cc2579836d048809e6f29fc294f9b4f7c4eedee6fda4425daaf30

See more details on using hashes here.

File details

Details for the file boost_histogram-1.3.1-pp38-pypy38_pp73-win_amd64.whl.

File metadata

  • Download URL: boost_histogram-1.3.1-pp38-pypy38_pp73-win_amd64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: PyPy, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for boost_histogram-1.3.1-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 43f3cbdb512637be790d15f11843b33e9fd0e683d05b72065455da9e5b7c5219
MD5 3966c1902c2e1b22710226141bef6a93
BLAKE2b-256 2647b88e3f6dd4a4efe02761d996ee87893f004c101e9f576cc5579151fe729e

See more details on using hashes here.

File details

Details for the file boost_histogram-1.3.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.3.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 21963178d4569ab77b9fde644b339e2ed6eb62914022b5b633cb043b27924673
MD5 e9efccd3e9dc02dd91de565618fc15fd
BLAKE2b-256 7c4af60a0acadca276b2da22ca422964cafdd49a8597426a209ad9c2b29954d2

See more details on using hashes here.

File details

Details for the file boost_histogram-1.3.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: boost_histogram-1.3.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for boost_histogram-1.3.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ef4afc9f141ec5e78a69a19af8a6dcc6f26aec31ce4c452dee8dad296e4bb377
MD5 9a667ed87fac8fc73aec13f4b6175508
BLAKE2b-256 a5a0d2a978c88dfcdc66823c3124bfa2107cd3a745e1162df913323539818693

See more details on using hashes here.

File details

Details for the file boost_histogram-1.3.1-pp37-pypy37_pp73-win_amd64.whl.

File metadata

  • Download URL: boost_histogram-1.3.1-pp37-pypy37_pp73-win_amd64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: PyPy, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for boost_histogram-1.3.1-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 adb3a68b3793d68da6274209037635562ad4d290edb765960619a55f99238593
MD5 e604de8d4e4164dd1cf90c7e8580bf28
BLAKE2b-256 bc1b7c6e16e3cba1887f616a7c27a3461ce33ad6aa68913426981d392caeb0ba

See more details on using hashes here.

File details

Details for the file boost_histogram-1.3.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.3.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d44334d208a74404d471481e652148bacb8b3548a6022df10ddd91d4b435e417
MD5 bae7de4e914ed7574a4ed4c456e6f82b
BLAKE2b-256 720a4da2e6216d6f6752bdc49fbb05b3ec66e04b89b0ca610d70f7971d4a371d

See more details on using hashes here.

File details

Details for the file boost_histogram-1.3.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: boost_histogram-1.3.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for boost_histogram-1.3.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 afdb37e56f52c91dca3f96ccb96975b920745a8bc377a2ba5e6bfd1c88071acb
MD5 20b416c0cfed1dedd107ef50effce2d3
BLAKE2b-256 91102d78d8f9e2ca119f573400038ea9426fcae749f85a63910d22861fc562d5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-1.3.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 741.6 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for boost_histogram-1.3.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d4da905354afe08dbe06a527573a0c220d49256a1540936a823e6e9db134aa3f
MD5 ae3f1945cbf7c8b0434ddb22a971f5f1
BLAKE2b-256 1cd74305b53ecb23c74c0268409ac881eb99143e5b03c49249abaab91f2c76a9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-1.3.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 562.5 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for boost_histogram-1.3.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 2227fedce56533909c4e6049534dcb951aac3e016e4ecb1f05cfe371eaf4d2d4
MD5 552ea56a4eb0035d30565381f364bd57
BLAKE2b-256 0e2cdca5e15a04d6f7f299c9d8bb53f50b11248a12f58ea933fbad8943b11089

See more details on using hashes here.

File details

Details for the file boost_histogram-1.3.1-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: boost_histogram-1.3.1-cp310-cp310-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.10, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for boost_histogram-1.3.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 808334a87e4bbc0aa93a8f86359d0ed12f5a96c23b27d9a4ad9a9f2dd625ee86
MD5 aef635831b24161b8bfe8f0dc4e2e546
BLAKE2b-256 9813f0bd6a99aa3e5b5db216e6f00dd345a1538355e9de0f1bbdae20c3c83fed

See more details on using hashes here.

File details

Details for the file boost_histogram-1.3.1-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

  • Download URL: boost_histogram-1.3.1-cp310-cp310-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.10, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for boost_histogram-1.3.1-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 a3852fe252f5da8b5878fc8410e915c1aa00267c318192a2e0a924ab16cfbee9
MD5 fba82c43aad181936284f0c4366f6e27
BLAKE2b-256 ca215d2e48e25527b939e82f71f02785c8e16a14c38f3e54de8bde1d0aac5bb5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-1.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for boost_histogram-1.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eadb13356a5438ffc52e4fcc6aceb09d9c6367d2392a6bf933c69493edab5aca
MD5 5614d52b60defaa91bfd72b2bc9ff097
BLAKE2b-256 92827be3a10e2d6fef33fb7c766bc5941a37803238816ba2f0d458c263e13915

See more details on using hashes here.

File details

Details for the file boost_histogram-1.3.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: boost_histogram-1.3.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for boost_histogram-1.3.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2f3b693a7cca2bbc31ed3c7cbfd14a5d9c3eb9fef228ef6ff357adb68437bcaf
MD5 4c425e097bbda4d0b9d3a805bffd1c89
BLAKE2b-256 122f6a5aeb2aef73e62bb3b2794cee47a2016cc2dec38ee25a896c36a28d47fa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-1.3.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for boost_histogram-1.3.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1d058c2b4ceec13282b6222782e8aa068654a3a18c30842bf2ee1c57768c9514
MD5 b6d71bb4f1d2d04528645b1b3a79c906
BLAKE2b-256 da89e70ab6c60728142f022ebcdeece1d924fae3a7d5d84f21ae2404128c7675

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-1.3.1-cp310-cp310-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.10, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for boost_histogram-1.3.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a6d91ac4acec63059c89d84f3d7e770dc511ba6e0e566f2730ca8369d6eccd86
MD5 a6e1ffa5d896290067a548a770a9ab51
BLAKE2b-256 de97c9dfea793c39c5a45c5bcffd44212aa1169abe746c118ebcde5aabbc0e82

See more details on using hashes here.

File details

Details for the file boost_histogram-1.3.1-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

  • Download URL: boost_histogram-1.3.1-cp310-cp310-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.10, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for boost_histogram-1.3.1-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 e4f43e75e17f74ed6262d92b9b3be9a768302e559454e6e95d5894dcf8ad94af
MD5 908b26d1c62efc5acfae30e8c9805de9
BLAKE2b-256 c03cb98d594cadee37697707c839402a93d601b42b5a44e39366144c362a7823

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-1.3.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 832.3 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for boost_histogram-1.3.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 7d39cadeaa2c57c7636397b64e2f57ba026f881f9f66114bbfa299786d725e5d
MD5 4f9334d2150712a9acd7a65a7985c794
BLAKE2b-256 cc2bf783ce0ddb69dbe772ec3445ce73e0220372bec91eb45b06f7f0a883d474

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-1.3.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 562.7 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for boost_histogram-1.3.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 cd03f66779aee89a63b8290a8d86389bbc0462a92cbce59a7260b45a22391c21
MD5 13eebb00349c564aa278d623045988a8
BLAKE2b-256 6a2abcc521a14bc72595ccf8286b57c9e0f90594138dfbecb5182c0d851e139a

See more details on using hashes here.

File details

Details for the file boost_histogram-1.3.1-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: boost_histogram-1.3.1-cp39-cp39-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.9, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for boost_histogram-1.3.1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f36807e3a5ad5d16c7ee1bfdc10b21e36eccec8902106f9cc444c9b0cd595b84
MD5 581d60943bd7cdd8641b965697e698b8
BLAKE2b-256 91226220dcd3f0d9c269f9f08d6d831bdf123d29fb9cbc3b9e0a4db2d209038e

See more details on using hashes here.

File details

Details for the file boost_histogram-1.3.1-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

  • Download URL: boost_histogram-1.3.1-cp39-cp39-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.9, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for boost_histogram-1.3.1-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 ab6250f6d3c4d1162faaed05475cedbb02abb0254b80a77f1e6be2ed369e335a
MD5 d57e4a04ae1592c0db27f2a4c1558eae
BLAKE2b-256 5f99d6bf4b2266c5d93d487f184f802c7173ff1450cd5d8410310973185d3b46

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-1.3.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for boost_histogram-1.3.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7bae7f98e2c89c2807e2d521ae2fe32200ad3b64a3eed7de8ffb78c89dfc1ede
MD5 09494bafa1fe8dcd4dd9737fb62150d2
BLAKE2b-256 b40d32fb9c5b917424e17cb846a7ccac5f86a42989579cced4661b70b200fcda

See more details on using hashes here.

File details

Details for the file boost_histogram-1.3.1-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

  • Download URL: boost_histogram-1.3.1-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for boost_histogram-1.3.1-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 9931a00bd393088f7921789fdc5a6f38fd014e0ca8a5dc5abbadb318f35638cf
MD5 838eccc9d5b15cfa77776f3a8248993f
BLAKE2b-256 330e0ee5c7f44f63280f8216d382f8dcc0cb1c34938fa3e76e9d203ab298788a

See more details on using hashes here.

File details

Details for the file boost_histogram-1.3.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

  • Download URL: boost_histogram-1.3.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for boost_histogram-1.3.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 203b44cb6ad136413576ca6528f0a4b28e8d57808075acd50798c4959c936f4f
MD5 aa3bc069529666b0659a15151d1d24cc
BLAKE2b-256 7d95fce9e4546e004466f62477576e8a623135e4501dafc1eecd16ba28fafa84

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-1.3.1-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for boost_histogram-1.3.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ebe658417ca759f52f475537fdba68fe389ccc058a6f90c7b8210a56b4896f00
MD5 3fa871bfbb99a80701cd1c61529b9182
BLAKE2b-256 37c21e7e184af7c005cffd93002a8638348e4af896250986ba3b76e0d608669c

See more details on using hashes here.

File details

Details for the file boost_histogram-1.3.1-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

  • Download URL: boost_histogram-1.3.1-cp39-cp39-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.9, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for boost_histogram-1.3.1-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 a0316dea6e75b749457555b58ed3179da73e18f8bfacb58fc76a41b7dc5cd8c0
MD5 d74deaa78f807168121d91f92cc935b6
BLAKE2b-256 442cc3363708f1d9644d9a201a54b731f1c57925110f33def6af466d36eceb5d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-1.3.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 741.3 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for boost_histogram-1.3.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 a70e32bbb064cc22280fbd7da8c545244f21bfe37818777781ef7d42ecd81103
MD5 112fed56964cbbd262d8b13f777bb2cd
BLAKE2b-256 d12d82af223c34fcc8001d215dc53bf57333b963cc4d1d4e8f9fadcf6897bb20

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-1.3.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 562.5 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for boost_histogram-1.3.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 c7bfc4cb2c6eec53d12346b5798f861c74fe633e83561686d850292f33c4e8ea
MD5 60fd9c46f06545afcba3bbc034936f70
BLAKE2b-256 853bb3d30d853c03d520f61bef6564213370321728f872a004e5ffaad4c69c00

See more details on using hashes here.

File details

Details for the file boost_histogram-1.3.1-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: boost_histogram-1.3.1-cp38-cp38-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.8, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for boost_histogram-1.3.1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b5bc9c4c10f56ac74f4f7236f2a6cfd303d58560cf9795b87f2d28fcb8992700
MD5 c9ab6c3abecbe08389eab974a6ca3e88
BLAKE2b-256 c7b0491d406c6c65059b4f88764bbc9342dcde39d0f4e0c636e4979b7570aafe

See more details on using hashes here.

File details

Details for the file boost_histogram-1.3.1-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

  • Download URL: boost_histogram-1.3.1-cp38-cp38-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.8, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for boost_histogram-1.3.1-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 1f7cc34f56b131a91abd145d73c8ad4037cc97dc0f89af30fcf81116712d35c3
MD5 f375c21776c7ec35300282a6bbf7cfc0
BLAKE2b-256 61c1bbcdb34c49c924f060e7343a7e4abd7f8d5c5a01926231869700b67f8020

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-1.3.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for boost_histogram-1.3.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 050e04d45ae8a8f1bfc12b97f4ee02ab288b55951b7a29ec7724f648ce212ffc
MD5 517b14ca285dbd69cf71391d5b894561
BLAKE2b-256 297cea9cf3603ccafeba1232f4277e96a8f1afeae39f8e222bdca372d57d8923

See more details on using hashes here.

File details

Details for the file boost_histogram-1.3.1-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

  • Download URL: boost_histogram-1.3.1-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for boost_histogram-1.3.1-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 8bd247b4743535ca801ca6fdd4dc0ef5247301d15c235a55ed789a87eca66012
MD5 99c5f4746be8c9f58af0a1fa81d06252
BLAKE2b-256 6779a89d42063e583cbef21c26cf092fa4d4a561c3c2d045fd540ae31bcb119b

See more details on using hashes here.

File details

Details for the file boost_histogram-1.3.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

  • Download URL: boost_histogram-1.3.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for boost_histogram-1.3.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 56127cb15e51a06e828b5312f6b2650c71efd8419b99856cea0b5c831089aa2e
MD5 9d616bad579fc145cf1f66ae7c8efad9
BLAKE2b-256 c51175e5b3f1487adcaa14686138f1409200d7db94171fb393121645bd8dee65

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-1.3.1-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for boost_histogram-1.3.1-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e697760c105ce3c82badef8b19ff297c63c81d8c09d80e309d7424ac5fdfbcb0
MD5 d898fa480206f83c2323a0ae54bdd484
BLAKE2b-256 b6ffe7d3b8e791ed19a8485bcb065b15f2bc7cb6a9942aa90e09a7f1757148d3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-1.3.1-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for boost_histogram-1.3.1-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 b91a6f04dbe2abb4e15a24d80854a0b40b6297a9c22b67c4a2e0fef79cc7b8b0
MD5 5de9012d514422c101b621bc598bf41f
BLAKE2b-256 f95391db2b50a75462c760cbd9572316a2ccd8bb847a100e5b848319aeaeb4f0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-1.3.1-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for boost_histogram-1.3.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 aee5ed7dd968b2ada25c1f15516cfae969a2d053785e8cc19b59e32f4fb31b25
MD5 56bfef13855bcab3b0507db99171fb35
BLAKE2b-256 6cfa52d4b60052daf8b3a3b6349749e649383ba400211dfb44083330083c6f81

See more details on using hashes here.

File details

Details for the file boost_histogram-1.3.1-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

  • Download URL: boost_histogram-1.3.1-cp38-cp38-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.8, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for boost_histogram-1.3.1-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 361f0ec53da7c9d0261c38cc5203625dfabad98452ecf70e72eb4490fc30c203
MD5 7965f61db6a6a62c64a447b843dbbbde
BLAKE2b-256 4c889d1927c62d210130e2a6305fb0fc32b525501af69d7269b39f45f6bca8fc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-1.3.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 750.0 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for boost_histogram-1.3.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 d4daa14ba0f28073bffa2b2393ba962142800387c87150f5029fc39497f21a4b
MD5 95754f8567919d45824ddfa90497732b
BLAKE2b-256 297e495aa9218af9bdcfac2a81cccf74617edea846f88854b6504463669223c5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-1.3.1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 563.3 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for boost_histogram-1.3.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 b399b4c4bc4b9414ea73f8e04f06d5905f16981054740102072ead5c7dd6e518
MD5 28d0414e3647b5e46459bf4620c1a288
BLAKE2b-256 82d7a6ce13c476eb5f0a31b94d710352d746750889558baf7d83bc4dda188db3

See more details on using hashes here.

File details

Details for the file boost_histogram-1.3.1-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: boost_histogram-1.3.1-cp37-cp37m-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.7m, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for boost_histogram-1.3.1-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 52e64d8a075ab8b6375872e38dfd9c00c3f16d7a4ed5542396de9116ecc1c434
MD5 aaf6556c4b0e6c1edcf4e43976b78dc2
BLAKE2b-256 96600ebbb59c0c4d4445f4a5c09ad28195e1f0c4dfe9ea88ac89024d126f8419

See more details on using hashes here.

File details

Details for the file boost_histogram-1.3.1-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

  • Download URL: boost_histogram-1.3.1-cp37-cp37m-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.7m, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for boost_histogram-1.3.1-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 cc4e867d6dceb60c8db099287edc7cace0b690cfd4589a11a97f7aa16a80099c
MD5 4043bb04914cb134ada85f0e4dac1bfe
BLAKE2b-256 32afdf8ec89dc4623a2547753b9775bcddda4388dfd0abb9c8c3ac2a27e43add

See more details on using hashes here.

File details

Details for the file boost_histogram-1.3.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: boost_histogram-1.3.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for boost_histogram-1.3.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 50b0b45b45f17a9ee2172161266a0ca7b118cc7521dc18cb5a44959d46483430
MD5 b6074ab1bf09cc05bbb286e40c1d8906
BLAKE2b-256 1d1691d7566cdd12114bdabfe9801c939f844271f96332b72dd8dfaa2974a917

See more details on using hashes here.

File details

Details for the file boost_histogram-1.3.1-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

  • Download URL: boost_histogram-1.3.1-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for boost_histogram-1.3.1-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 28300c205b0609c4731c656cea054977fb8177d256a7ac756c067984de61f83f
MD5 62b571eea6f3959c1b5967d9741a6ed2
BLAKE2b-256 d9e0ccd4297fb63922ab557ad7a15388aae0c4a955fbeb561a2e7894aea1269b

See more details on using hashes here.

File details

Details for the file boost_histogram-1.3.1-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

  • Download URL: boost_histogram-1.3.1-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for boost_histogram-1.3.1-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 1cdae0231eb8f5c493445ebac81a440f5679203c88bef4daf30e10281ef9ad3f
MD5 864d8694c066301646e79415087a75d8
BLAKE2b-256 0c78a432eddb4a6b151fa54bf093f54f222603426be25523210d0fa295b82ae2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-1.3.1-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for boost_histogram-1.3.1-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 40ed15cefd461ee3f913c11682616605316e29827ffe67bbb0c82bda18d6b891
MD5 ae33aa60d27629c030411761862e9ad4
BLAKE2b-256 19248a1629e71f448476355488e7a423f5f16d0643c616ae94efdeb17ffe4e10

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-1.3.1-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for boost_histogram-1.3.1-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 5432a619b00e8a7956379cd79ff6942c9511bf50034258862929e52dc1471e5e
MD5 f926660f4bf03b21bc0a1e0d0621dc2d
BLAKE2b-256 eafebb4e721150315d933d2699d3506944b26be669f73c6b8f5856f7208c2ab3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-1.3.1-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for boost_histogram-1.3.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 63c9231a5e4ff9c16e34e7141f56612e2868831d157ad0a7df2e9d94d9551837
MD5 a9105abe155fa71915151daa7e2ff6cf
BLAKE2b-256 0aa0179c8d2afad76714bf6d3e944e29f61e0d3e70e799f58e098eeb390f2623

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-1.3.1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 764.5 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for boost_histogram-1.3.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 267d75cd6814d0579a3fbc9c9403f9e3a83e03694cfa33adee780ef18d8bbdc8
MD5 f5ce248ecaf43c70cf5a3ccb419d6f22
BLAKE2b-256 cea1b16ec6c170ebb51b22b4999674f96b200a1065b328a60a404a88a4a70d2c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-1.3.1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 580.7 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for boost_histogram-1.3.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 ea387ddff48eb3717f34d40692d6904379798f8066f6cb3fcaef82fe060c100b
MD5 0228aa459dac62b4dff64291966ca5d0
BLAKE2b-256 4208d66bd92e5bbfd6a8287dd40e1b53ade6cd6d4e3c43878baed56e957c2d87

See more details on using hashes here.

File details

Details for the file boost_histogram-1.3.1-cp36-cp36m-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: boost_histogram-1.3.1-cp36-cp36m-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.6m, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for boost_histogram-1.3.1-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 13ee8295888092e0487cbc7a9424a3465f918b1e121b7a8e2fd12c1525d041f2
MD5 2b31bb8233e2cfc6c3b22dbc11ad3970
BLAKE2b-256 f21f4081b8f57e3e00b968b46430c85fb80c4b2e793cc47dd21a3122e441457c

See more details on using hashes here.

File details

Details for the file boost_histogram-1.3.1-cp36-cp36m-musllinux_1_1_i686.whl.

File metadata

  • Download URL: boost_histogram-1.3.1-cp36-cp36m-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.6m, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for boost_histogram-1.3.1-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 d14f70154bfb596a0f5d540172b317a5d88192376440bfb3b4891cf38af5e6a9
MD5 5064a18bae6bb441f7f80c770f00b5f8
BLAKE2b-256 206215859d8458c25b5e26b628a939c1ce3a719ac9573ddad91fea3924f66448

See more details on using hashes here.

File details

Details for the file boost_histogram-1.3.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: boost_histogram-1.3.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for boost_histogram-1.3.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 93e82246cb1f82ad143e720cd23193be46cc4ba7c5f79f6b7e16c4fd61030ca5
MD5 edaa559fe729e8ec21093741d30fa79f
BLAKE2b-256 986806bf3dda02f4ea64ad0079b540755ad6066c622594683486b8601ceac762

See more details on using hashes here.

File details

Details for the file boost_histogram-1.3.1-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

  • Download URL: boost_histogram-1.3.1-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for boost_histogram-1.3.1-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 da6bcb8ae1551188f334cd0d8c5b72bf7972e90368917f0cbc9bda27bd6a7d3c
MD5 6c60e7dfca345e957b6b693802c4d854
BLAKE2b-256 7c34dc379e5b8e066aa0cf1599ce6c1c71e105f4aed8e7ada5a1ec02cf4e6356

See more details on using hashes here.

File details

Details for the file boost_histogram-1.3.1-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

  • Download URL: boost_histogram-1.3.1-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for boost_histogram-1.3.1-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b671d40561fd241cc1736fda195695da8a30d4cecd2f74a35823f42086f10b7b
MD5 f8165809741172f3e3c982314886e9df
BLAKE2b-256 10961fdf94f39456cb0b4c399a0f4adb49fc8aa39a022c8d49679d79ac6de8a4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-1.3.1-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for boost_histogram-1.3.1-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 7fad5ae1aaa2c9e0bcd6ed442c60bdc3fcae97e80a0f2ee066f0387645860e8e
MD5 ef1cc914bd07a45f0dedc0d8b3a2fa72
BLAKE2b-256 771f08bb36d02ce997ed5d7e5ebfa06e1b2249679c0e1af1116b3624ea0284f9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-1.3.1-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for boost_histogram-1.3.1-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 1d0c94cbbd5611116a7de430a2f5468ac331859a7d5ae7dfb78ef8c5290e9833
MD5 7e7aad7d7dd55db8624ad46054b54bc3
BLAKE2b-256 f8b514b5a6cc0695a09933d1ec5ebad48c81b30cd8d5581690b55cd81e6f23b5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-1.3.1-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for boost_histogram-1.3.1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 da3760f1a129533c883e7a349fbb875e7637ef7022ef4b0e5553a807ff371adf
MD5 7502d775b23c8f06b5fe52d0259354af
BLAKE2b-256 2287514c9f5235e2c931e69626e1f1222194ebc21657225285b564066abb7b79

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