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 of the fastest libraries for histogramming, while still providing the power of a full histogram object. See what's new. Powers Hist, an analyst-friendly histogram library.

Installation

You can install this library from PyPI with pip:

python -m pip install boost-histogram

or you can use Conda through conda-forge:

conda install -c conda-forge boost-histogram

All the normal best-practices for Python apply; you should be in a virtual environment, etc.

Usage

import boost_histogram as bh

# Compose axis however you like; this is a 2D histogram
hist = bh.Histogram(
    bh.axis.Regular(2, 0, 1),
    bh.axis.Regular(4, 0.0, 1.0),
)

# Filling can be done with arrays, one per dimension
hist.fill(
    [0.3, 0.5, 0.2], [0.1, 0.4, 0.9]
)

# Numpy array view into histogram counts, no overflow bins
values = hist.values()

Features

  • Many axis types (all support metadata=...)
    • bh.axis.Regular(n, start, stop, ...): Make a regular axis. Options listed below.
      • overflow=False: Turn off overflow bin
      • underflow=False: Turn off underflow bin
      • growth=True: Turn on growing axis, bins added when out-of-range items added
      • circular=True: Turn on wrapping, so that out-of-range values wrap around into the axis
      • transform=bh.axis.transform.Log: Log spacing
      • transform=bh.axis.transform.Sqrt: Square root spacing
      • transform=bh.axis.transform.Pow(v): Power spacing
      • See also the flexible Function transform
    • bh.axis.Integer(start, stop, underflow=True, overflow=True, growth=False): Special high-speed version of regular for evenly spaced bins of width 1
    • bh.axis.Variable([start, edge1, edge2, ..., stop], underflow=True, overflow=True): Uneven bin spacing
    • bh.axis.Category([...], growth=False): Integer or string categories
    • bh.axis.Boolean(): A True/False axis
  • 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 (bh.axis.options)
    • .size: The number of bins (not including under/overflow)
    • .widths: The N bin widths
  • Many storage types
    • bh.storage.Double(): Doubles for weighted values (default)
    • bh.storage.Int64(): 64-bit unsigned integers
    • bh.storage.Unlimited(): Starts small, but can go up to unlimited precision ints or doubles.
    • bh.storage.AtomicInt64(): Threadsafe filling, experimental. Does not support growing axis in threads.
    • bh.storage.Weight(): Stores a weight and sum of weights squared.
    • bh.storage.Mean(): Accepts a sample and computes the mean of the samples (profile).
    • bh.storage.WeightedMean(): Accepts a sample and a weight. It computes the weighted mean of the samples.
  • Accumulators
    • bh.accumulator.Sum: High accuracy sum (Neumaier) - used by the sum method when summing a numerical histogram
    • bh.accumulator.WeightedSum: Tracks a weighted sum and variance
    • bh.accumulator.Mean: Running count, mean, and variance (Welfords's incremental algorithm)
    • bh.accumulator.WeightedMean: Tracks a weighted sum, mean, and variance (West's incremental algorithm)
  • Histogram operations
    • h.ndim: The number of dimensions
    • h.size or len(h): The number of bins
    • +: Add two histograms (storages must match types currently)
    • *=: Multiply by a scaler (not all storages) (hist * scalar and scalar * hist supported too)
    • /=: Divide by a scaler (not all storages) (hist / scalar supported too)
    • .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)
    • .to_numpy(flow=False): Convert to a NumPy style tuple (with or without under/overflow bins)
    • .view(flow=False): Get a view on the bin contents (with or without under/overflow bins)
    • .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 the Unified Histogram Indexing (UHI) proposal
    • Bin content access / setting
      • v = h[b]: Access bin content by index number
      • v = h[{0:b}]: All actions can be represented by axis:item dictionary instead of by position (mostly useful for slicing)
    • Slicing to get histogram or set array of values
      • h2 = h[a:b]: Access a slice of a histogram, cut portions go to flow bins if present
      • h2 = h[:, ...]: Using : and ... supported just like Numpy
      • h2 = h[::sum]: Third item in slice is the "action"
      • h[...] = array: Set the bin contents, either include or omit flow bins
    • Special accessors
      • bh.loc(v): Supply value in axis coordinates instead of bin number
      • bh.underflow: The underflow bin (use empty beginning on slice for slicing instead)
      • bh.overflow: The overflow bin (use empty end on slice for slicing instead)
    • Special actions (third item in slice)
      • sum: Remove axes via projection; if limits are given, use those
      • bh.rebin(n): Rebin an axis
  • NumPy compatibility
    • bh.numpy provides faster drop in replacements for NumPy histogram functions
    • Histograms follow the buffer interface, and provide .view()
    • Histograms can be converted to NumPy style output tuple with .to_numpy()
  • Details
    • Use bh.Histogram(..., storage=...) to make a histogram (there are several different types)
    • All objects support copy/deepcopy/pickle

Supported platforms

Binaries available:

The easiest way to get boost-histogram is to use a binary wheel, which happens when you run:

python -m pip install boost-histogram

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 2.7, 3.5, 3.6, 3.7, 3.8
ManyLinux2010 32 & 64-bit 2.7, 3.5, 3.6, 3.7, 3.8, 3.9 7.3: 2.7, 3.6, 3.7
ManyLinux2014 ARM64 3.6, 3.7, 3.8, 3.9
macOS 10.9+ 64-bit 2.7, 3.5, 3.6, 3.7, 3.8, 3.9 7.3: 2.7, 3.6, 3.7
macOS Universal2 Arm64 3.9
Windows 32 & 64-bit 2.7, 3.5, 3.6, 3.7, 3.8, 3.9 (32 bit) 7.3: 2.7, 3.6, 3.7
  • manylinux1: Using a custom docker container with GCC 9; should work but can't be called directly other compiled extensions unless they do the same thing (think that's the main caveat). Supporting 32 bits because it's there. Anything running Python 3.9 should be compatible with manylinux2010, so manylinux1 not provided for Python 3.9 (like NumPy).
  • manylinux2010: Requires pip 10+ and a version of Linux newer than 2010.
  • Windows: pybind11 requires compilation with a newer copy of Visual Studio than Python 2.7's Visual Studio 2008; you need to have the Visual Studio 2015 distributable installed (the dll is included in 2017 and 2019, as well).
  • PyPy: Supported on all platforms that cibuildwheel supports, in pypy2, pypy3.6, and pypy3.7 variants.
  • ARM on Linux is supported for newer Python versions via manylinux2014. PowerPC or IBM-Z available on request.
  • macOS Universal2 wheels for Apple Silicon and Intel provided for Python 3.9 (requires Pip 21.0.1).

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

Conda-Forge

The boost-histogram package is available on Conda-Forge, as well. All supported versions are available with the exception of Python 2.7, which is no longer supported by conda-forge directly.

conda install -c conda-forge boost-histogram

Source builds

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

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

Boost is not required or needed (this only depends on included header-only dependencies). This library is under active development; you can install directly from GitHub if you would like.

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

Developing

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

Contributors

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


Henry Schreiner

🚧 💻 📖

Hans Dembinski

🚧 💻

N!no

⚠️ 📖

Jim Pivarski

🤔

Nicholas Smith

🐛

physicscitizen

🐛

Chanchal Kumar Maji

📖

Doug Davis

🐛

Pierre Grimaud

📖

Beojan Stanislaus

🐛

Popinaodude

🐛

Congqiao Li

🐛

alexander-held

🐛

Chris Burr

📖

Konstantin Gizdov

📦 🐛

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

Uploaded Source

Built Distributions

boost_histogram-0.13.0-pp37-pypy37_pp73-win32.whl (572.9 kB view details)

Uploaded PyPy Windows x86

boost_histogram-0.13.0-pp37-pypy37_pp73-manylinux2010_x86_64.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

boost_histogram-0.13.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (1.6 MB view details)

Uploaded PyPy macOS 10.9+ x86-64

boost_histogram-0.13.0-pp36-pypy36_pp73-win32.whl (573.1 kB view details)

Uploaded PyPy Windows x86

boost_histogram-0.13.0-pp36-pypy36_pp73-manylinux2010_x86_64.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

boost_histogram-0.13.0-pp36-pypy36_pp73-macosx_10_9_x86_64.whl (1.6 MB view details)

Uploaded PyPy macOS 10.9+ x86-64

boost_histogram-0.13.0-pp27-pypy_73-manylinux2010_x86_64.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

boost_histogram-0.13.0-pp27-pypy_73-macosx_10_9_x86_64.whl (1.6 MB view details)

Uploaded PyPy macOS 10.9+ x86-64

boost_histogram-0.13.0-cp39-cp39-win_amd64.whl (837.1 kB view details)

Uploaded CPython 3.9 Windows x86-64

boost_histogram-0.13.0-cp39-cp39-win32.whl (572.3 kB view details)

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

boost_histogram-0.13.0-cp39-cp39-manylinux2010_i686.whl (1.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

boost_histogram-0.13.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-0.13.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-0.13.0-cp38-cp38-win_amd64.whl (746.7 kB view details)

Uploaded CPython 3.8 Windows x86-64

boost_histogram-0.13.0-cp38-cp38-win32.whl (572.0 kB view details)

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.8

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

Uploaded CPython 3.8 macOS 10.9+ x86-64

boost_histogram-0.13.0-cp37-cp37m-win_amd64.whl (755.4 kB view details)

Uploaded CPython 3.7m Windows x86-64

boost_histogram-0.13.0-cp37-cp37m-win32.whl (583.4 kB view details)

Uploaded CPython 3.7m Windows x86

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

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

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

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.7m

boost_histogram-0.13.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-0.13.0-cp36-cp36m-win_amd64.whl (755.1 kB view details)

Uploaded CPython 3.6m Windows x86-64

boost_histogram-0.13.0-cp36-cp36m-win32.whl (582.9 kB view details)

Uploaded CPython 3.6m Windows x86

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

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

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

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m macOS 10.9+ x86-64

boost_histogram-0.13.0-cp35-cp35m-win_amd64.whl (755.1 kB view details)

Uploaded CPython 3.5m Windows x86-64

boost_histogram-0.13.0-cp35-cp35m-win32.whl (583.3 kB view details)

Uploaded CPython 3.5m Windows x86

boost_histogram-0.13.0-cp35-cp35m-manylinux2010_x86_64.whl (1.4 MB view details)

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

boost_histogram-0.13.0-cp35-cp35m-manylinux2010_i686.whl (1.4 MB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.5m

boost_histogram-0.13.0-cp35-cp35m-macosx_10_9_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.5m macOS 10.9+ x86-64

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

Uploaded CPython 2.7mu

boost_histogram-0.13.0-cp27-cp27m-win_amd64.whl (876.7 kB view details)

Uploaded CPython 2.7m Windows x86-64

boost_histogram-0.13.0-cp27-cp27m-win32.whl (631.8 kB view details)

Uploaded CPython 2.7m Windows x86

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

Uploaded CPython 2.7m

boost_histogram-0.13.0-cp27-cp27m-macosx_10_9_x86_64.whl (1.5 MB view details)

Uploaded CPython 2.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: boost_histogram-0.13.0.tar.gz
  • Upload date:
  • Size: 1.0 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.13.0.tar.gz
Algorithm Hash digest
SHA256 a37c78617d93eba45579493e4ed92799178402c202b0f7df72e6100a1079f4bc
MD5 e98edf5896046bed95e28616e5082ddd
BLAKE2b-256 45a4adef6ed1538d355e0d913d67d7649aa3b1abe6357862334fcd26f6527b72

See more details on using hashes here.

File details

Details for the file boost_histogram-0.13.0-pp37-pypy37_pp73-win32.whl.

File metadata

  • Download URL: boost_histogram-0.13.0-pp37-pypy37_pp73-win32.whl
  • Upload date:
  • Size: 572.9 kB
  • Tags: PyPy, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.13.0-pp37-pypy37_pp73-win32.whl
Algorithm Hash digest
SHA256 0f714a0253bf4d0d5b6dcc72e494b50c84c931a4f369d7c62c293f41a767fe94
MD5 67d7bd8ef512d8b8a4aadbcf466e8fa7
BLAKE2b-256 40ff9e41734d37a29ef188b10ff98461f4650ba907229bd65b2f210904a92ce8

See more details on using hashes here.

File details

Details for the file boost_histogram-0.13.0-pp37-pypy37_pp73-manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-0.13.0-pp37-pypy37_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 1a6fb4e93f58da5328ed377a02f95a826edb38d2d03b708d543e2477d7344b39
MD5 22aaab1d36d3989b986d231659602cc8
BLAKE2b-256 075311869a5b71721f660b8d04d5d0d8cf2603c1b6a3007b611de0454e438acd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for boost_histogram-0.13.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f8f8a9919f8786ddb973ee17098620269060035e9e9cd4db127a33523dac17d4
MD5 2e79703ef97a1427ac86fe5ee14b3505
BLAKE2b-256 4340f5d89e540aab12bd274aac6f088dae9e5eb79e5a9e5174af31abd8e734f4

See more details on using hashes here.

File details

Details for the file boost_histogram-0.13.0-pp36-pypy36_pp73-win32.whl.

File metadata

  • Download URL: boost_histogram-0.13.0-pp36-pypy36_pp73-win32.whl
  • Upload date:
  • Size: 573.1 kB
  • Tags: PyPy, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.13.0-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 39867588fca3f23990b286cbfa7dc216f3b88cf1390a768490b6c200e56596b7
MD5 1910dfd68e14b1eea5d98ba289a3312c
BLAKE2b-256 82e676e31cb3b4ab1fb2a974fd7dc2e742a8f9ab659846b3ddbbbb40d7e54fde

See more details on using hashes here.

File details

Details for the file boost_histogram-0.13.0-pp36-pypy36_pp73-manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-0.13.0-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e7dcca228adfb53928988b108ab12c7580674edfb5b0e834346eaeac3b1f456a
MD5 a6a025c76d26138fec6549d5acdb2691
BLAKE2b-256 3fea69f1863af16a9c327aea89bd9d6f45c5f6817bb07756b53d3aa5b508c7d2

See more details on using hashes here.

File details

Details for the file boost_histogram-0.13.0-pp36-pypy36_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-0.13.0-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 306090673c956d30facad01934af02e749f8b94b0b8bd64f76d8e197aa2cd5aa
MD5 7d1f22c4b8eded94f4a0e511512ed5fd
BLAKE2b-256 3e2f7541526c541692a95b3481a9deca1f8511c2cbc8efbc62c05ab643b89575

See more details on using hashes here.

File details

Details for the file boost_histogram-0.13.0-pp27-pypy_73-manylinux2010_x86_64.whl.

File metadata

  • Download URL: boost_histogram-0.13.0-pp27-pypy_73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: PyPy, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.13.0-pp27-pypy_73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 4b0809614f5b1ccc5726e9453b4276c04a57c247fa79a60a4beba183bbd26ddd
MD5 beb5a0724f3a6d9ad5713f2140f94ae7
BLAKE2b-256 5e451f67a54a80b8fcdfa4a15b9412df817f52db187e1ee0f522c4749c79171f

See more details on using hashes here.

File details

Details for the file boost_histogram-0.13.0-pp27-pypy_73-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: boost_histogram-0.13.0-pp27-pypy_73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.13.0-pp27-pypy_73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 be4c42b92eded7e4b7560e9264feb84cf4dd23ee2e80d935653b4404eeb038e0
MD5 767b11fe4cab13adf44e1dbef490d813
BLAKE2b-256 7ab59b334170ce6ac021f6a5baed1decb00798ffefac24ec04ba8606a265afb5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.13.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 837.1 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.13.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 4fdb5de32bd94b4798ffe536d283b4e026210a28b7cbe8369ecfcca2e90e799f
MD5 2699f7910f2b1c66428478d14799e52f
BLAKE2b-256 4717981cad3e0e45c56daa1ea17a48336c17cbb87332db5ab05fb29c4be1c924

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.13.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 572.3 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.13.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 2519dd6d6e13fe2ca00f42d11f357ccb74b9e29c87cf6411701a3b15d8538ca4
MD5 1fd132ac435fb8a47771eb71f15a75f7
BLAKE2b-256 3ca84c836387f30a4e93b457ff5ed7921b41cc6dd0c265c6187af6ab10725638

See more details on using hashes here.

File details

Details for the file boost_histogram-0.13.0-cp39-cp39-manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for boost_histogram-0.13.0-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6021fc1eeca62ca74ea4939b66ffeebe8fdb1384911e4bdc68e5d786458c282c
MD5 fc9762de18edbae5b51459929f6bdc5e
BLAKE2b-256 0085f70a692bae4946b7aa74ba00ed995174b9dc999c160d63e2dca60e514a5f

See more details on using hashes here.

File details

Details for the file boost_histogram-0.13.0-cp39-cp39-manylinux2010_x86_64.whl.

File metadata

  • Download URL: boost_histogram-0.13.0-cp39-cp39-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.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.13.0-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a3429d4be182bcc113c1edfbfea7eebd4051aad2b0a12125b932222ba872e782
MD5 b138ebce16e1033bdfea058a6351b1a1
BLAKE2b-256 27f4dbf723085d8cbc4cf7c35898d7f869aa3bd37abe2c781d66a4ffbd2cdf88

See more details on using hashes here.

File details

Details for the file boost_histogram-0.13.0-cp39-cp39-manylinux2010_i686.whl.

File metadata

  • Download URL: boost_histogram-0.13.0-cp39-cp39-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.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.13.0-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 dc867b904df674ad8616acc3c93a03134c3753138542a65e8d50858cc400e517
MD5 6515996e6c73c94a8582d2d2b68efc01
BLAKE2b-256 cfaac05c8a8251bb3f079bf5e335f0e51d479dadbe09b91197598c2640bb966e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.13.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.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.13.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0551e028a58b288cce4c3c54274bb2ec21dc3cac6b67474253f9707614cb9ed7
MD5 f5ae476d9b9daf3cfad97d5023b60ea9
BLAKE2b-256 aa8805792218d1d722627b73685018094a214674a6ed4ebddb050ef8b225fb91

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.13.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.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.13.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 94fa5f60b891249e2f2354abc4f28816abc1c968dfb3bcc962ceb2842c6ce1a3
MD5 31c313f9563af5d88504314ee933cdae
BLAKE2b-256 3d3aa51728381ef6fface5eec68890d2f38bc9b7b63d208f3e008d0ea3de3b84

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.13.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 746.7 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.13.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 5a077f27fc25ba4ada72890220ddc77658c08dda99796c0a37a64a5a78960bd0
MD5 416796ec22776b136fd7a5699b592684
BLAKE2b-256 7642fa37b84bb84036cc6894b87ae2793d46ffad397720bc84684c85be41710a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.13.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 572.0 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.13.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 89ed756a37db33aee0102bf75eb4b58b99ff2637f506658d454b0ce4ac04d1c0
MD5 2068e3706ed3915cb3feb1f774bab337
BLAKE2b-256 ca1ecdd23cfc3cd6f337ebf9193e3c783261d4174cd0a775af1563ae20f8f33b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for boost_histogram-0.13.0-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 899e7f49da482cc8f438bd2724fa43164ee658814c0bb56ac3a5ecf8fa6a886c
MD5 410b481b235f2d74e2f97520972ae0f9
BLAKE2b-256 7b91f3a4fd25965f78a8d1021caa9a62e068cc839868ec7eaf7c56e53c6d1938

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.13.0-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.13.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e83a290845cac5686d0204f8372746b6d81e94dd933dc41d1baaa383d8210a6f
MD5 5eb8443a62ce30a4ea6aae5ba4ab2f88
BLAKE2b-256 4dedd30ab8d6a400e07374a7f3677cca091403b736c70d93aeadef33884d4909

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.13.0-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.13.0-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 3a251511a93ec0265f7749720841ae254d3af4672de81ffe46c030eaf82693cd
MD5 fa0bb0719fc3ef891034c900c46fc1aa
BLAKE2b-256 e91917a0d1ca1c2695a2f0b8477dbab53b7296812ecd3211bb957d6bb46d185b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.13.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.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.13.0-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c970c28e27690840482d474b68978bbab71d06cbbeebd71bd655fcba71f48f17
MD5 cffe092d833a0581f3139fd74418dfe0
BLAKE2b-256 ca2dba48189396522852f24d5433394161b51c4743bb33487954c7d4c0f7b93d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.13.0-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.13.0-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 a29feac3931c06f45444c43b73517f69f2f56b0a337601d42770c873967cb348
MD5 3dc2045e731b05ac6ea12479e0d58541
BLAKE2b-256 f3fd55da89c2758d98e750bb9a532dad532eb6f0526432bd94f893bf759bd561

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.13.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.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.13.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 179466e7d26ce0f293e487eba6b369975881acadcf79efed5b04df4ba1cffd05
MD5 be01972e189ea861d4007919dcabf833
BLAKE2b-256 43d2b635003633ec092d27f9fc9e7bc0d7bcd6aadc6fdc9f336306476f6f110d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.13.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 755.4 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.13.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 03257e05932ca1bd3d41d4035c55c0b5062e38922d7dcd63560732ea161f6802
MD5 803fd44e77e2e6172dd0294ee5a4f75d
BLAKE2b-256 fbab3c65ceb5d340be4f6faf8e456f8fb9c1b3b358afa101e8f4404e36ccc546

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.13.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 583.4 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.13.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 40c0479202389de3fffe13c1e246400d34c2a2979fcb4651c2e81edc0dfc578f
MD5 51b6ce5283122df6fdb770b42c4e3be6
BLAKE2b-256 87c503e01c732eb4a42d7435971e6631c97ea2196a4a5afc1ac950347af17a72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for boost_histogram-0.13.0-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1f9118615285bdbd779db4f7db5d5a75c6c89ef371e2a1482c1a641483b15008
MD5 388357a771363e73a8a2926279911af0
BLAKE2b-256 3b2aa69eb929d987d521a3a3946894b86e22e83fe6a24c1568aa51e87446edf5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.13.0-cp37-cp37m-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.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.13.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e9d1416e6568223f391c097064fda09153df577441ce926a938540a700f61eaf
MD5 001b467c4771cb405e055257f41e5f83
BLAKE2b-256 d1a0c29bba8974c029a6e550a87938c41fd7149f34235868d865af61c175476b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.13.0-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.13.0-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 3bd79d97cec37c79c1ad03b4ce0b5f128e4333f9881070723f0daafc1de9d4cc
MD5 3e4ced74269add2f9bebb683bb263cb0
BLAKE2b-256 9da937f79c813ebf2581ae24a46224a448545bec145f8bdc09bc0b2d6c8e0935

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.13.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.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.13.0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 bca00adc8a5c4c32e342cd030ac3b8d0c1eb56f003d88863f4d1daf4040525d4
MD5 e7bb2aa5225d47469749e91300e7cc8f
BLAKE2b-256 3e8f167c1051a0ea023b4dbd22a53f39df934a05c96b98803a73b12cc791496f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.13.0-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.13.0-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 0800dca304caf430449acbb672f5bfea6b71a9ea7502af79d3eff8dfcaa7a7da
MD5 785f9d1ac8f62f855f9f52a867c4f34c
BLAKE2b-256 58f18cb8697b055ceeae8aa3a331deffa8fd9f56188059c0ee012d3b04738e80

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.13.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.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.13.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 456c54bd911703927aad0101573c2c70a15eca9bce86e5bc5849114bb893b648
MD5 925b8775169fefc2c4d9dd68d6c6c82b
BLAKE2b-256 75b6a6e7ff29e79cca01507c3ac7a89ffb699f7c0ed2518eab993dd5bd01383a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.13.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 755.1 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.13.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 2017b55d44564001bb035ae4de87dc08ce32d36ba72dae6b470545ffe8c3f505
MD5 68e1cdc5cdfdfad25b028ff5f830413c
BLAKE2b-256 4f79e5a112335cd0dc8ca5199f0270706e064925d8b0dc9148da2f73b40ebc64

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.13.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 582.9 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.13.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 8ff4ef90200c06062bf0c9813c4a84a1320ee64c51492d6b7c0f98df8ab9c603
MD5 b2b56116f923f77696fc9e7aa6aad55c
BLAKE2b-256 35165f00836288c9127fb671ad83dc7c5cae57a360fc5dbb0bee298854bda6fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for boost_histogram-0.13.0-cp36-cp36m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a6e972cb2af777b6fb3f636162def82681b6e01c8fe443682e1619bcc6ebc1f4
MD5 54f997d34696f9f12b7497a45912db3e
BLAKE2b-256 72ebc041198dc9260b5377f5558aef6602962fc740f5014866f9a8c986357d24

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.13.0-cp36-cp36m-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.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.13.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 3972c4e278072808173a0b20fc1510fe7d17c8734589bbf36c4047f6115409ef
MD5 d64beefa2e971a4c99efac1ade8f7f1f
BLAKE2b-256 3cb8a8fabf2c54f7204a18ab24b4a2571affd3e3bdffe93c1014355b8536435e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.13.0-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.13.0-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 764ce370d7b0fb34368a64c9430ae80e57e21983d766d6dcaeb3ea333318f838
MD5 9b73605ff3e8d9378e15d1140dee8d1f
BLAKE2b-256 57b0b2ca5f2009bb96a0c5bf9fd2dc4cf294108c6ceb347264f18dfdee0e8b57

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.13.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.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.13.0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 26c518bf9fbf488babb83e4905e853c6959f8c1bce87e4c58bb60c7eb76939e7
MD5 ee5db2178bfa6e112385ab764f3699ad
BLAKE2b-256 f5aadb70d7ad644e7fe10f6eced6f85c41c1997cd5722c54370b4b85716115da

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.13.0-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.13.0-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 29abd55559acc56b6b011cd4caa165387fb0106bd864a3b849bd4631428264c0
MD5 93b297aeb8f248506059e83a3824f867
BLAKE2b-256 97a6d5e50bb9bfa16cafad260245d247cdb881edc3e669e6cd9924caa1e87107

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.13.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.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.13.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 13ad320bcda8c6ff9eb23ab2faefec36dcac3d1746a72c1ade0172fc964658dd
MD5 a0d3cf9d6d4c0330617e4fe49117d725
BLAKE2b-256 13a0a041f47e364aa8a9e2ce17d047794f55707266b1238f62621dfc98b72d37

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.13.0-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 755.1 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.13.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 782c3747bda707f0a7d6d63b7f3018295cc35f48139ef7d4b408378641befca3
MD5 15e56645ac849679ccfb57eb4561848a
BLAKE2b-256 f52743bd21c6022bca7327a12f6b2a25c840b259968415deacebe3d546c1b7be

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.13.0-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 583.3 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.13.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 780c0b0f5ed65f92e24d9cf58c7b397a4009595b724f4261ff51a02502123a35
MD5 168a54cbaae4e485e153fdc699d1a31f
BLAKE2b-256 0a7166d40079a702030451cce7c9250483a7053b0db017c497dc8bed60a6d9a6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.13.0-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.13.0-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a7e5f7f4dcacbe0201db7cfa172586dfb5a244d1ddac268a249d36ebbbcba5b4
MD5 1f9f86a62604680e8f42a0df9f97a788
BLAKE2b-256 8e6c717be1ef037787974e5ef6678f31e81607a6a3c49bd73f598f933a1d4401

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.13.0-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.13.0-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 11b413289e7eb17f7e3713563a45c892c73c466b0775f5b8e4558b792ee5b00d
MD5 2062e61b51124cbd3310417193de35a5
BLAKE2b-256 5e83b73a4f26171ddb06a87515102f54f2adb9b6944382e67aa715b384219599

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.13.0-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.13.0-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 1196af5e0e3a98630e71a68bd57d1292090e805cbe829f7518cfe7501d347296
MD5 6f04caf289ed86c1ce3b2244321e33d3
BLAKE2b-256 50660957cd20f3e731545e3e8d073c73810ea8eb486a014cd9768bfb1bc8cd48

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.13.0-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.13.0-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 149db1c5e907b274f095e0bca150c9499e915201f2a937a18be2005b67eaf980
MD5 45423ec15aeccb9db830022338dce1f9
BLAKE2b-256 2f73254383d6d55bd8c5abccc5c2dc2947033ecce99d7d5697b524e53e5da648

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.13.0-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.5m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.13.0-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fe6cb7f9dcb45973d2a084bc6003cb64c465f08be2edef5c555969c4add654a5
MD5 73d3f3f27c943f380c8dea2e1b25b0b8
BLAKE2b-256 2d7d087a3ec225835f66d2235b80c566040c4492fbe51a9ae0bbc1379f897028

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.13.0-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.13.0-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ea09c0422e34f3f060907825d06d0f790d8d3fef36179249d712957fec074f49
MD5 a136c03917248d57ead54f1d9ae69254
BLAKE2b-256 2ecc3b39f7ee95658ca2b3758f82910fff5bdba94ae0d054ae4821e2d795ff08

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.13.0-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.13.0-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 1d0cb5986d5cc438f32006fafb824fd92255f83dec58e5ea796aeaafe85b5a9a
MD5 433e5f7d92e8e6d0c8e331e810a8c395
BLAKE2b-256 6a407419794384339ea1876eef450dc256dcdf2365963a8f98a5567d53899edd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.13.0-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 876.7 kB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.13.0-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 ef5d4b760e33bbad0daf15694446cd9a24af51a77e5019101b8120a021144338
MD5 038db26e27d25f96a933ee0acf95c95e
BLAKE2b-256 723cfa18a83c8a29f18e7cdf20fb9434930809ff12d439f6166678835ba57604

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.13.0-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 631.8 kB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.13.0-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 5a3ad31bcf846e38e1db1879904aa3dbb52a5ba9ed26b0cabf926eac79e864f6
MD5 cc587b749903918f42f597dff1126a38
BLAKE2b-256 9c375928c8f549695b0e8e7ddb93df3f0caa844384bf085fb20ca7d0235ccc52

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.13.0-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.13.0-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 3bbb4b61c205edd317d90b746a7396696afae1bc424d0803965a50c176e52fa4
MD5 c3c03a18d8ae4c7e6304d8e8e23e7118
BLAKE2b-256 f4d9cbe4ca41da0bd868c3a9e939fa3d1ed8379c4e7095b64036ca824643a0f6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.13.0-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.13.0-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 50bd70eccbda6dad472fd414fe40ed2c1c30b84224fe6d332179aba98a33a337
MD5 6809486cf1e3e4d32f2c759974898ec5
BLAKE2b-256 1899e62f7bb7006f841924fa48a07fef0341d08a3f51c4caca12e53fc7e7d06d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boost_histogram-0.13.0-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 2.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.1

File hashes

Hashes for boost_histogram-0.13.0-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 94158bd38bd868cf5a9c5c70330880aaeda3d45dd16e771188a6fc7bfb9ef0ab
MD5 382809cf7f666fe72a4ae0a48caff56c
BLAKE2b-256 5efa48714d2b95a2b1e99c7a66db058b7a15ea98f61db57fed00337289f40379

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