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

Uploaded Source

Built Distributions

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

Uploaded PyPy Windows x86-64

boost_histogram-1.3.0-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.0-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.0-pp37-pypy37_pp73-win_amd64.whl (1.4 MB view details)

Uploaded PyPy Windows x86-64

boost_histogram-1.3.0-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.0-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.0-cp310-cp310-win_amd64.whl (738.6 kB view details)

Uploaded CPython 3.10 Windows x86-64

boost_histogram-1.3.0-cp310-cp310-win32.whl (562.0 kB view details)

Uploaded CPython 3.10 Windows x86

boost_histogram-1.3.0-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.0-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.0-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.0-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.0-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.0-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.0-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.0-cp39-cp39-win_amd64.whl (830.8 kB view details)

Uploaded CPython 3.9 Windows x86-64

boost_histogram-1.3.0-cp39-cp39-win32.whl (561.7 kB view details)

Uploaded CPython 3.9 Windows x86

boost_histogram-1.3.0-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.0-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.0-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.0-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.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl (1.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

boost_histogram-1.3.0-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.0-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.0-cp38-cp38-win_amd64.whl (738.4 kB view details)

Uploaded CPython 3.8 Windows x86-64

boost_histogram-1.3.0-cp38-cp38-win32.whl (561.5 kB view details)

Uploaded CPython 3.8 Windows x86

boost_histogram-1.3.0-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.0-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.0-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.0-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.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl (1.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.8

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

Uploaded CPython 3.8 macOS 10.9+ x86-64

boost_histogram-1.3.0-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.0-cp37-cp37m-win_amd64.whl (748.1 kB view details)

Uploaded CPython 3.7m Windows x86-64

boost_histogram-1.3.0-cp37-cp37m-win32.whl (562.5 kB view details)

Uploaded CPython 3.7m Windows x86

boost_histogram-1.3.0-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.0-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.0-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.0-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.0-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.0-cp37-cp37m-manylinux1_i686.whl (2.0 MB view details)

Uploaded CPython 3.7m

boost_histogram-1.3.0-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.0-cp36-cp36m-win_amd64.whl (762.3 kB view details)

Uploaded CPython 3.6m Windows x86-64

boost_histogram-1.3.0-cp36-cp36m-win32.whl (579.6 kB view details)

Uploaded CPython 3.6m Windows x86

boost_histogram-1.3.0-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.0-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.0-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.0-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.0-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.0-cp36-cp36m-manylinux1_i686.whl (2.0 MB view details)

Uploaded CPython 3.6m

boost_histogram-1.3.0-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.0.tar.gz.

File metadata

  • Download URL: boost_histogram-1.3.0.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.1

File hashes

Hashes for boost_histogram-1.3.0.tar.gz
Algorithm Hash digest
SHA256 62240dae889cbf05f8b4f2203f0b7d6c7a2e029502723a377fc33226e425ce50
MD5 698d3d19c996586076731f5c0f30856b
BLAKE2b-256 0a9a1ebde600886eee433a99434e0ddb462630a0b25ab1f58efb91ffc385a0ff

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-1.3.0-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.1

File hashes

Hashes for boost_histogram-1.3.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 35b7c20c459076487e8b923d015acbfe12788cb759f76e13b663039ebf667349
MD5 89e1ac5eb0c08e44dcad922a8994c86b
BLAKE2b-256 e4f3fabb7c09ac68b6852cd20736bd8c35396130f5e971a6cd975b5808be448c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for boost_histogram-1.3.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d9b476c990b3aee4f70de40200b5cf3e3a57701acf2a2a05cf8f3dccf0f3bcaa
MD5 2728e584d80ea27efad3b38f49b5b6e4
BLAKE2b-256 59b1652a97c71d483079149dcddae76249dcaaf64c5fe72022079973a1a7f3b2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-1.3.0-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.1

File hashes

Hashes for boost_histogram-1.3.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 af503236ac5f524b3c630cc5f665d497ad109b973c2e146330bc6ae580baaed9
MD5 216e931b22ee1e7b055941eae0924a81
BLAKE2b-256 8cfb543dce1f613496a84c95d5f4357b68832ab31b5e5daf6f2229d4e82f595b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-1.3.0-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.1

File hashes

Hashes for boost_histogram-1.3.0-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 d414e85eed13a4e4b7b868a48dd247a5293b12c5136aec0bed7e3cff8de0e2bd
MD5 25573bece9d034aec29fffcd621015e1
BLAKE2b-256 493ea3c35ff8ed7344b076e24936ed22e1f3f068a81d088732dbfaf6dfa049e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for boost_histogram-1.3.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0af5c8b15fd03517064cb1339bd65c1f58e76040943edb0b4272cdf64e2a4527
MD5 38809e279be92ba98a9ba1c048cd6ce1
BLAKE2b-256 0b7ba22dbee703ba23bae630742cfa643ad82ad070545628b9a708700bfa598b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-1.3.0-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.1

File hashes

Hashes for boost_histogram-1.3.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ae2230dc4e30b105d932d68c21c4337616b868ed409d1b076cc9a8758ab4ea82
MD5 efc077b7d702d22adf00e688126da96c
BLAKE2b-256 88f98ca9a689670f86e77f70504aab66ccbf1d7bc02ca8416418e4b2cb890767

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-1.3.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 738.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.1

File hashes

Hashes for boost_histogram-1.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2eb607b1b3532e82e7e5ae5abb99b457a6ad319f56c0713feb4d6a8fbc0b4f54
MD5 b741c172ab22d7d3172fb1b268e3d3a9
BLAKE2b-256 66249a8b2fee30f83d7357c63dbe908787a180fc8225883a3191ad2a7ea0333c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-1.3.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 562.0 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.1

File hashes

Hashes for boost_histogram-1.3.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 a7fd428cec28d9db4a3c0eee9e78fa864d02a4fed148fb77dabca756729945a7
MD5 c24581abe72efb2e26bef7646c35b8ce
BLAKE2b-256 c61f163a82df8e15b005a8296c71aa56ea3d1e81db649ebfffd2c8c030436747

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-1.3.0-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.1

File hashes

Hashes for boost_histogram-1.3.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 526803b4d2b3d1d958812f0380bc8d8738941953ec060a154993927904a0f4a4
MD5 578a68a44b304fee76d03e2bbdad4700
BLAKE2b-256 8aa45dabd6d46a14d15cac9b245bf9472efc96c29175fc6c17875f398ae85b8b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-1.3.0-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.1

File hashes

Hashes for boost_histogram-1.3.0-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 c309a261f7cc6ea2d7d69cb44d9ca763dbb74a6e9771e1d22e14effe90873478
MD5 ce8b74e15b8deb150cf87e3f9fa925bc
BLAKE2b-256 74bdf12e6b6ea4101828a8a4122c2706b385126aaa002b70f2aa0a85d71c6dbd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-1.3.0-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.1

File hashes

Hashes for boost_histogram-1.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e24010b88d19dee36a317934bc769c0f6d4229d026977efe34e41af7df43a217
MD5 086de2e3b1da5287a06901a59254e2c4
BLAKE2b-256 968f4e2eb459a99045d45322b41859266c375bd5dde729e20116284b45c06bf6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-1.3.0-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.1

File hashes

Hashes for boost_histogram-1.3.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 789f70de349ee4c06cdcd049055f5f179700a9bbd3bddbb9ccb5d4ee587ed759
MD5 68daef42aaac46ca12125c4874dfc1c3
BLAKE2b-256 04ee889ad0fa55ccbf94cdc4defaaa2bdf3e6df83b0b0db489f2831f80795d0a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-1.3.0-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.1

File hashes

Hashes for boost_histogram-1.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 af2c83758b08e11bf8462f2745a6d6ca6d2b35769ab787a45a33bcfe01d03543
MD5 ef2cf4e393dacd797d07d7d8d6af365c
BLAKE2b-256 9f88a57a586bd6f061eeff389a1866c59c06635b21e7bf5aeee54600419330c0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-1.3.0-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.1

File hashes

Hashes for boost_histogram-1.3.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b7ed8c0ea7a64afa998f4f976d5a344ccc52f2b5f1dcbd7c0094dc161dde69d3
MD5 71b09056644250bc71f92499b55d424a
BLAKE2b-256 994dca21ee09d086c0158284ef072be887465592e87d5585299036385dd6c6b8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-1.3.0-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.1

File hashes

Hashes for boost_histogram-1.3.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 a98a5333435c01d509ff12aeda5d98081761464cfcf493be34023d84d86b57e4
MD5 bacac7baf8b15ebb1ff70970213f4fcc
BLAKE2b-256 8c09a99fd00cd0d65dae6c011fc6ae8c63a71dd701017ec0b40d3491842fc154

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-1.3.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 830.8 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.1

File hashes

Hashes for boost_histogram-1.3.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 98c4a6bff29e11fa4eaa416f8f16b62e9a704c2055d28ac498a36604ffd5de27
MD5 7b4be4eb2e610a27d693a4a8dd569e6a
BLAKE2b-256 34ba5b775f8665a6527c48623477e50b7adc6933fa014dc8db68cb2cbba4a52d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-1.3.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 561.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.1

File hashes

Hashes for boost_histogram-1.3.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 9d798d54e86c7ac6bdd2afb7f68b452e384d505191e415bac96422c827b2d287
MD5 1e02696681ccce59346a34924194299b
BLAKE2b-256 2d9f7732ece0ff35eb89ebd114f15f87af3f310f5eafbfc1f6b38d98d4630f50

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-1.3.0-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.1

File hashes

Hashes for boost_histogram-1.3.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 85f6343f0bdf4cdfba38d1d11b75a37c186d34e1f617d0ca30894836d1932e2b
MD5 3d39ed7328016d1bc9bf81a51e907222
BLAKE2b-256 01b3405f3970738e1ee571820a70bdbb86685be9d3d0e244b1869764c278bfd0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-1.3.0-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.1

File hashes

Hashes for boost_histogram-1.3.0-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 ed4be8c4dcf1b1996b36de7aa53d48fef9f2ee2b6b60ee10d91d9daac3dbcdf9
MD5 f7e4cc5cd8660161cf57740935c6e1bf
BLAKE2b-256 c17706965e46cdc322996754d72863761670b270c7505544af74a4cd96801978

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-1.3.0-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.1

File hashes

Hashes for boost_histogram-1.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 72cd80a09ebbf0d6a8817f1cbb64156a09fc054aabcec91a9adb62ee6ef3d448
MD5 ae5d8b32e37b2b1ee511a4620c4c0ba3
BLAKE2b-256 293035ec5c5f9187126acfd603b9aa6d065dd9e51807d6ef3cc13854cb096cab

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-1.3.0-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.1

File hashes

Hashes for boost_histogram-1.3.0-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 37e74d1ca60681437bc11b10d256341c837d7f1dd165f024d0857c6702940c9a
MD5 c151f04febf12a4439969a130334ea16
BLAKE2b-256 552b7dc7231ea32dccd9f48abfcd9f4031f323139693adb91ec35dfae671b05d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-1.3.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
  • Upload date:
  • Size: 1.4 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.1

File hashes

Hashes for boost_histogram-1.3.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 fe4e56b06b4a4b617f159e37aaa735ae2148df955224d0f9159c51a9d83ea141
MD5 c7b1e2aeb33b26f8076155b3940e332f
BLAKE2b-256 59e1190eba0f44d6b7f4f4bd0cae25e3d76fde4db812186be0290657cd53aade

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-1.3.0-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.1

File hashes

Hashes for boost_histogram-1.3.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 eae9c7e7e1ac31baf54eb7ac94385924452f722ea9234cf852bd8eae712a9293
MD5 ab032c6912bb4fa34f32bc93953adc27
BLAKE2b-256 ae8042120bebcead11d3c53fd683342f3a1f9640e00b5ec08ca1c74fd3a413b2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-1.3.0-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.1

File hashes

Hashes for boost_histogram-1.3.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 edc5906ee352626b7a6557eb9a56fbaf0494cae19e3837dd2e209d209e068fdb
MD5 d43d540bbff2b0037c683ba5577155dc
BLAKE2b-256 bc3fb1d3f708c5f84f41d379c796aaff095d2e24c70d766d2c5711a212de14e1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-1.3.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 738.4 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.1

File hashes

Hashes for boost_histogram-1.3.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 3daf52546a2144fa56dadb828a21c9714466da85e4ac58d4cf00aad2f404fcdf
MD5 9941c6f786cdb772b206e72d9fa1ac19
BLAKE2b-256 88ee8af220111a04c1f98a72321ba4be6e5df03a1239bb6bed6d5c2c82086b61

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-1.3.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 561.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.1

File hashes

Hashes for boost_histogram-1.3.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 d81891f0630fe243f17c833646343eae90219a8e5dcebabafb3edcc88f8c9f6c
MD5 d688efff7ca21b07df7abf041789ab21
BLAKE2b-256 17d2c41b960f5e30d20cf7a31cafbd138bb8c3e944540e0cc85cae20355a2d66

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-1.3.0-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.1

File hashes

Hashes for boost_histogram-1.3.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a84b28f7c2c63ed4db5eb696b0bc46cf84e0df44a2718156d53ff88c4f8d8485
MD5 ef04621ae9552b0506c1580f6266d7af
BLAKE2b-256 12104088cb6ed0d31addf44901dd52f999bbc9af022f059575acb1f63e05d4f6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-1.3.0-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.1

File hashes

Hashes for boost_histogram-1.3.0-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 3e4a1d68043697e4d26bec67c801235d412124f137be3b84fe40df55678643ea
MD5 55e9db9e2ff7f00903c7a15eb30cad36
BLAKE2b-256 a816a28d671863881f8376459a6bc1ed18fb94b05c3ced0389ac4cf1f68b2937

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-1.3.0-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.1

File hashes

Hashes for boost_histogram-1.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9577cb09cb5c61647327fe8df983cb007461460702866b1ad09b1552ae97b21d
MD5 5e6fca5bcca7ca81932eb29b3e87e724
BLAKE2b-256 f316a405d9de8c572763ab46dfd41e3802b2d76079f1c65bb7ea866050b5e015

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-1.3.0-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.1

File hashes

Hashes for boost_histogram-1.3.0-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 dcd7f5ddc76bc468b57b17464741cecdaec3cff69171625d985901534731a245
MD5 4e60270e800348ebc17e1eb31a97fd27
BLAKE2b-256 c2c48193aa25262298b1898eca653b05629bf08b645b14e6a9f2ae3409115ce7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-1.3.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.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.1

File hashes

Hashes for boost_histogram-1.3.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f031b46128d1837c3c64cb7d11283f03c29964d2d80f7ee81885696968bde001
MD5 30825baac630e827e74093f521c9163b
BLAKE2b-256 d813e73cebb79b748143b6e432d346a9e1375d49ad358868ed2fbff4bb8e6723

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-1.3.0-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.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.1

File hashes

Hashes for boost_histogram-1.3.0-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 614b3be9bb0b3bbbcc5803059a4c348dbf003c2ab179c4d1c1450b9e50c62d18
MD5 e6dfcdf44334e461e456ecbe276dd8c9
BLAKE2b-256 2f2a0c098a6048bdebed94b820cfcb840130e2e1daeb00546384379e8204cd45

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-1.3.0-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.1

File hashes

Hashes for boost_histogram-1.3.0-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 105bc26ad9db72082ea9ac6f4f7480d73aef9f65da8111bf7079013f6b8f035a
MD5 795970b3f9969094745d0488d745ea29
BLAKE2b-256 a6cb76ac1c153c21dc51be53cec5bf56bebce7e343722657e95683988aecb8a2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-1.3.0-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.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.1

File hashes

Hashes for boost_histogram-1.3.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9dd1019ed5cca8c28791abe8a915f8bd2c5aa96fa2fe2cc283a401860958a4e5
MD5 c558d83bab8b1b94f80b4321508df70d
BLAKE2b-256 f22a66a6752ba507425696e14a20bbda234ad1bcd74ee13f9521485faa305d01

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-1.3.0-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.1

File hashes

Hashes for boost_histogram-1.3.0-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 a507deeece9599810bd99bc0bdb00e6e3f4886dd26d65b8a0e3747f38191d68d
MD5 ccf2be5aa68e3049854403211919bfdc
BLAKE2b-256 63265536685b17d4f2d00ed862828e36c1f77c2e24b64d7d9d975e303ffe9781

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-1.3.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 748.1 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.1

File hashes

Hashes for boost_histogram-1.3.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 b62a2f0e52473874062e4f382731549abb1c0e72c166cf1e7b22d76c48400b9d
MD5 7a0a77c4a1fe0140131ea93e23e904e0
BLAKE2b-256 1b1ee544f02ad893472d214d5305df897e7ae351064f91a3135be6f1bd32b497

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-1.3.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 562.5 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.1

File hashes

Hashes for boost_histogram-1.3.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 ed3495a6dd9d8d518280bbcc274840fd712b99967bec13f7f58f548d1fead8dc
MD5 926c571351a75ae661b782949ce2c08f
BLAKE2b-256 0622830345c62545440e4c69cc4f9789dc9522e7cb8d366df697fa2792d5d033

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-1.3.0-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.1

File hashes

Hashes for boost_histogram-1.3.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f2ad055300e5205e715b793279bacc117cc6a42e02bc6988937b3107a57ffcfe
MD5 d2405050f005acdff525466588a4a1d2
BLAKE2b-256 3ef40f2777ee3faa3916e42aea4b8496647ac3eebf602075af414212d4ae9883

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-1.3.0-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.1

File hashes

Hashes for boost_histogram-1.3.0-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 6d5ccd4be718876cb1b05e6bc99f43537331934abbf3262d78bff89f48378474
MD5 b4d7db03bffd88b4c33edeb78acf1194
BLAKE2b-256 6a03e83ca2117ea23031e8a665a3e59f9739f9cbb0a787866b31d3af1acc5807

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-1.3.0-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.1

File hashes

Hashes for boost_histogram-1.3.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a101e9c0e67a03dc4463a88ce71b14885127cf62ff29d15cecc686ea50ceda81
MD5 fd91a98349ca4e05a39b88f387f180be
BLAKE2b-256 7b46f9a9b696fafe59a299196be8a1469d3db004055c07d541657253ca36d317

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-1.3.0-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.1

File hashes

Hashes for boost_histogram-1.3.0-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 c2dad891dbc189e2eb2d36af1a9531abfb45f312083d69873de2cc1fc0df3721
MD5 093a814656b0806f02498df949fc216d
BLAKE2b-256 f361ce0a4284c854eb5e6ce257b17ff452dc2ac14c70cc128c6152419dfdf24d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-1.3.0-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.1

File hashes

Hashes for boost_histogram-1.3.0-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 5a6d36d6222fd2a01feb6a4e8fe3aaf9a8dd300486a399c06bee6f732ffd4739
MD5 1e40ace3108c356885d9f130b7cf7504
BLAKE2b-256 a45a5d45d1dbbb7eb1cddbcd3ce770971f30a1ef42eb45eecaca9f329b159d46

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-1.3.0-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.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.1

File hashes

Hashes for boost_histogram-1.3.0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 84cbd2c6a84608e1e5e567fa2196576556fba1dc03e4aeeae3278665bc725503
MD5 5ead2a496706f228403bd825ab0e9aed
BLAKE2b-256 b9635c543921dfaec00b648aa8d104d9093bb10917e001e8c8d9fc928c512423

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-1.3.0-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.1

File hashes

Hashes for boost_histogram-1.3.0-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 8544b807d326061cc7b2b8b70637096f572e7995e17e493393c12ab3f67d8a52
MD5 5750ed8620200e1759a3971db51b1b1e
BLAKE2b-256 e521bc3a6540205a8822bf9ac184151ce7d254ab05a2a8b822d1e2ce87adcfd3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-1.3.0-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.1

File hashes

Hashes for boost_histogram-1.3.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b8cd428fe439dd9e35ab18764b2aa805f3380c77efd48b57b3faa32739651b47
MD5 ff265da37f2981bb9577480013c9cf38
BLAKE2b-256 9025175865dd5f6809262a92348686559a432ddcd2357dc87a40e314f3591caf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-1.3.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 762.3 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.1

File hashes

Hashes for boost_histogram-1.3.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 224ce0aafe9cfead947a17eb4bcb805486531c74ab12e378e954afd024f5f56e
MD5 c29395a2d781f0eafae8a9bed17957d1
BLAKE2b-256 77a1b839fd8c4cd08d450c7848c8fddc97a4172fea0b32a23650340862e3d10f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-1.3.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 579.6 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.1

File hashes

Hashes for boost_histogram-1.3.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 1ab119ca53dd487bc0a647ef08c07a9d6bcbb6826bc7819b5008345b9747db1d
MD5 6f78600e7ca6342dc953ab4942ac3118
BLAKE2b-256 d6853db0053be627deeaf1a42a52ca30ddeb3f0618fc9a2ed69520518f037a04

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-1.3.0-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.1

File hashes

Hashes for boost_histogram-1.3.0-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 21ab496d6fd7a78ba04c56a0d14ce046d8df3acefe61fed8f834cb753565868a
MD5 464bbcd5f3df2eeeb37b531ab68257ee
BLAKE2b-256 7dae1a14dc6ac057d7a3cf07424b1875824bb8820d874106a8bc0308623fc90c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-1.3.0-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.1

File hashes

Hashes for boost_histogram-1.3.0-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 8ffef62c10c270dc090a38dec5155e0b438ddef5e8e7f27744e1639fb8aeda7c
MD5 c1ed0c6e17f86cf1d3a915ba1eb0830f
BLAKE2b-256 aa0ff79ef87116ef7e855f822dcb80501cf7ed942394e4f78755a6f95148123c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-1.3.0-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.1

File hashes

Hashes for boost_histogram-1.3.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d2f458693173c05e28efed24db66ac2c02d5bc901462db4cd0f441940f185273
MD5 e735ed30f962ac3127ce45991277ccef
BLAKE2b-256 5dbc5c06e56100c1f59241a2584439a9fc5dabfb7acfb10984ebf76f873bd8c9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-1.3.0-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.1

File hashes

Hashes for boost_histogram-1.3.0-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 f3d7fef2e1b4b5a9c452432e0ce983933a8d63bf06973f246e722c11473cb216
MD5 1aba0d1cc2b82c6699cbebba4fd15d8a
BLAKE2b-256 1de3366f31eeeae5e63b3f4795cd56c3a98baae331cbb76db1aeee5fa18e64c7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-1.3.0-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.1

File hashes

Hashes for boost_histogram-1.3.0-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 242d0fd62953758dd7c6c38c2962bb29de0f95b990e711c2eecbe58a4cfe0642
MD5 03d061d7793c6063f93683ac6b55fb76
BLAKE2b-256 32352871ed32cb4f36c4902f355198b1dec0ab2783a9c834429e5ab3bc1f99ea

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-1.3.0-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.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.1

File hashes

Hashes for boost_histogram-1.3.0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 078b724d6c0e74af5c92a2f48a2ee488ecb558450612746650d56d76c0abf771
MD5 733b39a0fd27711f9571abe4e155d2ce
BLAKE2b-256 2e16f933cb03f9dab91100208e09ed6eb401b5f5f2f5c7b54be4b00ebba019f2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-1.3.0-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.1

File hashes

Hashes for boost_histogram-1.3.0-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 460417ae9c005827724415c18a0484708438502df4be3f6eec654558e791a41f
MD5 a03ced488fe3dffe36a88178e906e201
BLAKE2b-256 917b84c943f48d6395efd92cef737f3e7938213e7d433538628978438d3447ba

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-1.3.0-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.1

File hashes

Hashes for boost_histogram-1.3.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d472ca0f83f218113f86a6747187c33bcef9a3055d594fe90cd599a92637b425
MD5 70d231577b36d5741d109ca799b161b6
BLAKE2b-256 a5c9aa2ed2d86d363da4cd4d0a1465cd1687b664f5c602c6246551e426e5f7e3

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