Skip to main content

Manipulate JSON-like data with NumPy-like idioms.

Project description

PyPI version Conda-Forge Python 2.7,3.5‒3.9 BSD-3 Clause License Continuous integration tests

Scikit-HEP NSF-1836650 DOI Documentation Gitter

Awkward Array is a library for nested, variable-sized data, including arbitrary-length lists, records, mixed types, and missing data, using NumPy-like idioms.

Arrays are dynamically typed, but operations on them are compiled and fast. Their behavior coincides with NumPy when array dimensions are regular and generalizes when they're not.

Motivating example

Given an array of objects with x, y fields and variable-length nested lists like

array = ak.Array([
    [{"x": 1.1, "y": [1]}, {"x": 2.2, "y": [1, 2]}, {"x": 3.3, "y": [1, 2, 3]}],
    [],
    [{"x": 4.4, "y": {1, 2, 3, 4]}, {"x": 5.5, "y": [1, 2, 3, 4, 5]}]
])

the following slices out the y values, drops the first element from each inner list, and runs NumPy's np.square function on everything that is left:

output = np.square(array["y", ..., 1:])

The result is

[
    [[], [4], [4, 9]],
    [],
    [[4, 9, 16], [4, 9, 16, 25]]
]

The equivalent using only Python is

output = []
for sublist in array:
    tmp1 = []
    for record in sublist:
        tmp2 = []
        for number in record["y"][1:]:
            tmp2.append(np.square(number))
        tmp1.append(tmp2)
    output.append(tmp1)

Not only is the expression using Awkward Arrays more concise, using idioms familiar from NumPy, but it's much faster and uses less memory.

For a similar problem 10 million times larger than the one above (on a single-threaded 2.2 GHz processor),

  • the Awkward Array one-liner takes 4.6 seconds to run and uses 2.1 GB of memory,
  • the equivalent using Python lists and dicts takes 138 seconds to run and uses 22 GB of memory.

Speed and memory factors in the double digits are common because we're replacing Python's dynamically typed, pointer-chasing virtual machine with type-specialized, precompiled routines on contiguous data. (In other words, for the same reasons as NumPy.) Even higher speedups are possible when Awkward Array is paired with Numba.

Our presentation at SciPy 2020 provides a good introduction, showing how to use these arrays in a real analysis.

Installation

Awkward Array can be installed from PyPI using pip:

pip install awkward

You will likely get a precompiled binary (wheel), depending on your operating system and Python version. If not, pip attempts to compile from source (which requires a C++ compiler, make, and CMake).

Awkward Array is also available using conda, which always installs a binary:

conda install -c conda-forge awkward

If you have already added conda-forge as a channel, the -c conda-forge is unnecessary. Adding the channel is recommended because it ensures that all of your packages use compatible versions:

conda config --add channels conda-forge
conda update --all

Getting help

How-to tutorials

Python API reference

C++ API reference

Release history Release notifications | RSS feed

Download files

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

Source Distribution

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

Uploaded Source

Built Distributions

awkward-1.5.0-pp37-pypy37_pp73-manylinux2010_x86_64.whl (13.8 MB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

awkward-1.5.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (13.4 MB view details)

Uploaded PyPy macOS 10.9+ x86-64

awkward-1.5.0-cp39-cp39-win_amd64.whl (13.0 MB view details)

Uploaded CPython 3.9 Windows x86-64

awkward-1.5.0-cp39-cp39-win32.whl (9.9 MB view details)

Uploaded CPython 3.9 Windows x86

awkward-1.5.0-cp39-cp39-manylinux2014_aarch64.whl (12.9 MB view details)

Uploaded CPython 3.9

awkward-1.5.0-cp39-cp39-manylinux2010_x86_64.whl (13.8 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

awkward-1.5.0-cp39-cp39-macosx_10_9_x86_64.whl (13.4 MB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

awkward-1.5.0-cp39-cp39-macosx_10_9_universal2.whl (25.3 MB view details)

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

awkward-1.5.0-cp38-cp38-win_amd64.whl (12.8 MB view details)

Uploaded CPython 3.8 Windows x86-64

awkward-1.5.0-cp38-cp38-win32.whl (9.9 MB view details)

Uploaded CPython 3.8 Windows x86

awkward-1.5.0-cp38-cp38-manylinux2014_aarch64.whl (12.9 MB view details)

Uploaded CPython 3.8

awkward-1.5.0-cp38-cp38-manylinux2010_x86_64.whl (13.8 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

awkward-1.5.0-cp38-cp38-manylinux1_x86_64.whl (12.9 MB view details)

Uploaded CPython 3.8

awkward-1.5.0-cp38-cp38-macosx_10_9_x86_64.whl (13.4 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

awkward-1.5.0-cp38-cp38-macosx_10_9_universal2.whl (25.3 MB view details)

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

awkward-1.5.0-cp37-cp37m-win_amd64.whl (12.8 MB view details)

Uploaded CPython 3.7m Windows x86-64

awkward-1.5.0-cp37-cp37m-win32.whl (9.9 MB view details)

Uploaded CPython 3.7m Windows x86

awkward-1.5.0-cp37-cp37m-manylinux2014_aarch64.whl (13.2 MB view details)

Uploaded CPython 3.7m

awkward-1.5.0-cp37-cp37m-manylinux2010_x86_64.whl (13.8 MB view details)

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

awkward-1.5.0-cp37-cp37m-manylinux1_x86_64.whl (13.0 MB view details)

Uploaded CPython 3.7m

awkward-1.5.0-cp37-cp37m-macosx_10_9_x86_64.whl (13.3 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

awkward-1.5.0-cp36-cp36m-win_amd64.whl (12.8 MB view details)

Uploaded CPython 3.6m Windows x86-64

awkward-1.5.0-cp36-cp36m-win32.whl (9.9 MB view details)

Uploaded CPython 3.6m Windows x86

awkward-1.5.0-cp36-cp36m-manylinux2014_aarch64.whl (13.2 MB view details)

Uploaded CPython 3.6m

awkward-1.5.0-cp36-cp36m-manylinux2010_x86_64.whl (13.8 MB view details)

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

awkward-1.5.0-cp36-cp36m-manylinux1_x86_64.whl (13.0 MB view details)

Uploaded CPython 3.6m

awkward-1.5.0-cp36-cp36m-macosx_10_9_x86_64.whl (13.3 MB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

awkward-1.5.0-cp35-cp35m-win_amd64.whl (12.8 MB view details)

Uploaded CPython 3.5m Windows x86-64

awkward-1.5.0-cp35-cp35m-win32.whl (9.9 MB view details)

Uploaded CPython 3.5m Windows x86

awkward-1.5.0-cp35-cp35m-manylinux1_x86_64.whl (13.0 MB view details)

Uploaded CPython 3.5m

awkward-1.5.0-cp35-cp35m-macosx_10_9_x86_64.whl (13.3 MB view details)

Uploaded CPython 3.5m macOS 10.9+ x86-64

awkward-1.5.0-cp27-cp27mu-manylinux1_x86_64.whl (13.0 MB view details)

Uploaded CPython 2.7mu

awkward-1.5.0-cp27-cp27m-manylinux1_x86_64.whl (13.0 MB view details)

Uploaded CPython 2.7m

awkward-1.5.0-cp27-cp27m-macosx_10_9_x86_64.whl (13.3 MB view details)

Uploaded CPython 2.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: awkward-1.5.0.tar.gz
  • Upload date:
  • Size: 1.2 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.7

File hashes

Hashes for awkward-1.5.0.tar.gz
Algorithm Hash digest
SHA256 3cb1b0e28f420232d894d89665d5c0c8241b99e56d806171f4faf5cdfec08ae1
MD5 06360f63df2b832201336632dca12410
BLAKE2b-256 eb8605088fc5305ff69beace67d784f3b5a566ad2ac1fdd8825dfec13405ed0f

See more details on using hashes here.

File details

Details for the file awkward-1.5.0-pp37-pypy37_pp73-manylinux2010_x86_64.whl.

File metadata

  • Download URL: awkward-1.5.0-pp37-pypy37_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 13.8 MB
  • Tags: PyPy, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.7

File hashes

Hashes for awkward-1.5.0-pp37-pypy37_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 02be5259b7c71ca949ac2bd1e9688855343823713266f426ac0b898cb8c30095
MD5 ffd791831688e00e68a8a6e3caf5406a
BLAKE2b-256 45a44db5704edbaa9c5374ed1eccc538fc4db4d79e9bd71910f9921742018836

See more details on using hashes here.

File details

Details for the file awkward-1.5.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: awkward-1.5.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 13.4 MB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.7

File hashes

Hashes for awkward-1.5.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 58829b5af99b2b211b54f35775d6e2668b8c30bb2871212760c6daabb97adc36
MD5 6392e33fa26684ee3d5868075fb5b98d
BLAKE2b-256 3a64a90bb4bd573571a51dcc4a6fdfa8ef9a08213e8b77c70fac2755a2b075d4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.5.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 13.0 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.7

File hashes

Hashes for awkward-1.5.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 279842e40792a6417a1d29a6cefe167e52ef97cd5490938f9bdebe130f3e3026
MD5 30e5510a8d1ffe129e3c9fd9f2198112
BLAKE2b-256 9a2a900992b0796815370e4689167bcbc1bd3c5e9ec425eb2c6958dbc8caac49

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.5.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 9.9 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.7

File hashes

Hashes for awkward-1.5.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 7fc61b9cb5581b2d365bf5180c48dcdc92b43624e74217a34e4a00ec63bb75b1
MD5 f0ce73088b7d06b66ef25a5cac571384
BLAKE2b-256 8837cbe5916fe5985c196e80143dd5582f86e9da7d528a9fb3f16b8cd067b16e

See more details on using hashes here.

File details

Details for the file awkward-1.5.0-cp39-cp39-manylinux2014_aarch64.whl.

File metadata

  • Download URL: awkward-1.5.0-cp39-cp39-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 12.9 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.7

File hashes

Hashes for awkward-1.5.0-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 68b7e4cf36fa8179d4bcccdbf7f65bbd5118174ae8e15b32344616a40856f65f
MD5 471ef2bef3da6ef6cbca00d62ee5294f
BLAKE2b-256 4b4ab4f6a63752af2e04b03a32e0f245ee92f53a7208a7ef22ac3cc674a34c88

See more details on using hashes here.

File details

Details for the file awkward-1.5.0-cp39-cp39-manylinux2010_x86_64.whl.

File metadata

  • Download URL: awkward-1.5.0-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 13.8 MB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.7

File hashes

Hashes for awkward-1.5.0-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 b658fe2a8e46ba57547e3510fd573359f068e0d37cb20ebb5f01f8d26bc629ce
MD5 4227fb3ce4a520fe4a511ee90b69ad45
BLAKE2b-256 baff8ff383a82793af038b8ae4dec76b28063368266d360d0c637e923afa8dd9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.5.0-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 13.4 MB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.7

File hashes

Hashes for awkward-1.5.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7dd2bbc65f913d8a57ae9460ad0fa63c818b6d04a1be73d1ac725890011ed70d
MD5 dc81446333c49e3f20286af30709efaa
BLAKE2b-256 293847e2de7c0389f91e1f61add45902bbb02d0aec72553c3af3672dc9b9d124

See more details on using hashes here.

File details

Details for the file awkward-1.5.0-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

  • Download URL: awkward-1.5.0-cp39-cp39-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 25.3 MB
  • Tags: CPython 3.9, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.7

File hashes

Hashes for awkward-1.5.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 f06152f0f56433af78b4c457322838ac8ed0ffa5e846809f35b4d2439c278a29
MD5 410ac0dc363995199a46fb843a19cad8
BLAKE2b-256 3556f9e41fbfe30480a5733917bfab303bedaba8c2cd1dd8faf5e88e11f13d9a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.5.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 12.8 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.7

File hashes

Hashes for awkward-1.5.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 6386cd9b2c5247e6704f03c1b00f15d1014c2762647f32170f14c9cc869fb984
MD5 c8bef42ee0beb59efcf6f7f5dd4afe82
BLAKE2b-256 a9b5a0f91919149396b85d513b036387fa8ef3a1567970da1977da49fd029d6f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.5.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 9.9 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.7

File hashes

Hashes for awkward-1.5.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 7443d25d98aaac06a3841c06f9b6b0d2d828854cf03292e879dd71b933e15873
MD5 f72890df9d52b3245bc5fdc21b803812
BLAKE2b-256 8c3faeea11e2c116f8f7ca57a6ee7b5ab5e450e9be4aa5d6644765b2a58c6b04

See more details on using hashes here.

File details

Details for the file awkward-1.5.0-cp38-cp38-manylinux2014_aarch64.whl.

File metadata

  • Download URL: awkward-1.5.0-cp38-cp38-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 12.9 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.7

File hashes

Hashes for awkward-1.5.0-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1d39b2d49fc36bfd4a9991201ecbd2204efc45dea7eed94b8ebad2122002545d
MD5 d16a0ccef2f44e247802769fc50796b2
BLAKE2b-256 69d1d27d564f489a273495539f58630b58385782a830f53eb773279b2d74fa4c

See more details on using hashes here.

File details

Details for the file awkward-1.5.0-cp38-cp38-manylinux2010_x86_64.whl.

File metadata

  • Download URL: awkward-1.5.0-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 13.8 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.7

File hashes

Hashes for awkward-1.5.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 15f1b497132a1bdd829e76367a5797c1639bf9edf8c8fe22126dab02241fcfda
MD5 1452f39053bde23ead40f234d3b25a8a
BLAKE2b-256 dcbb88987902fb99f5e9bf165564c249cdb5a0e37ae596f961ab9c4401039352

See more details on using hashes here.

File details

Details for the file awkward-1.5.0-cp38-cp38-manylinux1_x86_64.whl.

File metadata

  • Download URL: awkward-1.5.0-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 12.9 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.7

File hashes

Hashes for awkward-1.5.0-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 3425629200b0855d22b0e77f476ae5811ee1c86780bc0ed8934876be4f808a8b
MD5 c1217e0e6be14d19e82879363bb1ef20
BLAKE2b-256 63e2cff27bd24c1d03e5deea5e202b4efdb48e20cf78d6293efbafa3e6d04e4d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.5.0-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 13.4 MB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.7

File hashes

Hashes for awkward-1.5.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 98eced9a81ab0ad1caf24022ed7133036897f0d63338c485cd46dd57b299b30d
MD5 c50541a870a38f3685d904ef51d81ba7
BLAKE2b-256 a69fc65a7cf086f1d9d71082ec0a16fca27b63e460f7f73a8bf87a1a3deaba52

See more details on using hashes here.

File details

Details for the file awkward-1.5.0-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

  • Download URL: awkward-1.5.0-cp38-cp38-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 25.3 MB
  • Tags: CPython 3.8, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.7

File hashes

Hashes for awkward-1.5.0-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 bf98571ba1d08ad7d4945391c11d0d45c625169b94d6fe794eb942402aebebee
MD5 f1625d3c105aee840261c8068c1a1ed1
BLAKE2b-256 bce3c92a784c9593a8a32af44a9203fadb9b8788c3c3c86a4a04ef489d1a8c36

See more details on using hashes here.

File details

Details for the file awkward-1.5.0-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: awkward-1.5.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 12.8 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.7

File hashes

Hashes for awkward-1.5.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 9f9fef2f826b56d5114a3ea5b8c6ec156e8282001bc505095ebf67f167528d18
MD5 ab63bd9b4addd89f6a2ecc572359db62
BLAKE2b-256 b5560cb8d03f9512c031fd6e50809818d6a95f4a39ddede5b3419c8a2f79d776

See more details on using hashes here.

File details

Details for the file awkward-1.5.0-cp37-cp37m-win32.whl.

File metadata

  • Download URL: awkward-1.5.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 9.9 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.7

File hashes

Hashes for awkward-1.5.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 6a5edab1515b5ee7ed0d16de34ed1306cbe4e23432e66268a3f9fbfed39863c6
MD5 9d033188fe5afc360cd63df4fb3ab0f5
BLAKE2b-256 af77885e81e599c071c70500fa05ef7688d0ac96a1ff9499b44b13e1ccb756d0

See more details on using hashes here.

File details

Details for the file awkward-1.5.0-cp37-cp37m-manylinux2014_aarch64.whl.

File metadata

  • Download URL: awkward-1.5.0-cp37-cp37m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 13.2 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.7

File hashes

Hashes for awkward-1.5.0-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5bfdd38a135187b1416918f1928174b7d354cfd732bc45fce6c6aa65883cc717
MD5 918b9723b1706ed79a055c2b496f1e2e
BLAKE2b-256 83d35db3f9522f2586f4b570d8c280e836ded1229ddc3b36439a77a7f719cec1

See more details on using hashes here.

File details

Details for the file awkward-1.5.0-cp37-cp37m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: awkward-1.5.0-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 13.8 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.7

File hashes

Hashes for awkward-1.5.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 0105c2362b87ed7d002ac4e88220bef4474ed375c7c2ee918c6eeca1f939b952
MD5 920cd74841fae5759d9e1c8684df7e3e
BLAKE2b-256 0334e660301dc753d83ba6ca0be0fcb2bfab99d047efbe38d4bb7304858e4592

See more details on using hashes here.

File details

Details for the file awkward-1.5.0-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: awkward-1.5.0-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 13.0 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.7

File hashes

Hashes for awkward-1.5.0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 bcb693ea985b83aece8791f68f3b2f32484b5da9e0301597bc09b8d0c5b46aad
MD5 97789ba59224e741a045639fb8dc2f62
BLAKE2b-256 caa2af6a312f48c6a99247d0869cf4e3dd0b7ef161f53e0a0b93577ca4a1ce68

See more details on using hashes here.

File details

Details for the file awkward-1.5.0-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: awkward-1.5.0-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 13.3 MB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.7

File hashes

Hashes for awkward-1.5.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 acbac0014b080e15318a601b817ac39580a1e162fb772101db490c14cbf6291a
MD5 172320b8cb8d21a8cc1c7f6ff9fa933f
BLAKE2b-256 a6a1fbafbaa0e6260746ae1adaf0bd9810d2f44588d8173ee86d7ef45486ad90

See more details on using hashes here.

File details

Details for the file awkward-1.5.0-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: awkward-1.5.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 12.8 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.7

File hashes

Hashes for awkward-1.5.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 1c2b15abefeb5f73019ca5801fb750ece37178991c782b0c58f1ce2d7e29c3ca
MD5 a353a47959b3085511117dabff6aa280
BLAKE2b-256 b13fb94b5e135a3b7d6525b4cf294daca9719110f3b1d9080201b74e536c666b

See more details on using hashes here.

File details

Details for the file awkward-1.5.0-cp36-cp36m-win32.whl.

File metadata

  • Download URL: awkward-1.5.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 9.9 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.7

File hashes

Hashes for awkward-1.5.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 2ee3dcd149546a4cfed945a086c24740b7883b4fd0a69d7e9636be8a81a8578a
MD5 0936ecea29af2048c46d16c140d5dec5
BLAKE2b-256 18731f5ec201c5298f98dca0b64939735d6791c50cf64354e6a1ccd7ce19820e

See more details on using hashes here.

File details

Details for the file awkward-1.5.0-cp36-cp36m-manylinux2014_aarch64.whl.

File metadata

  • Download URL: awkward-1.5.0-cp36-cp36m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 13.2 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.7

File hashes

Hashes for awkward-1.5.0-cp36-cp36m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9d2358a282e517ec6e6e696df2f7956d0ceb7d08aebc365d743b74f7e6bbd62e
MD5 45a20bca93388c3b271e963f106eb10e
BLAKE2b-256 c76fd45e29bc726ec4e0dc5793ffffd66d97816eb5c57cad1b50d91cb71f78da

See more details on using hashes here.

File details

Details for the file awkward-1.5.0-cp36-cp36m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: awkward-1.5.0-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 13.8 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.7

File hashes

Hashes for awkward-1.5.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 0fa2eeb2eb935c4afd5bf4f3577711f2fd0c9c63163ec1e6890e440a092e0b48
MD5 bf5f3bebc7e4e48106da1467042d0162
BLAKE2b-256 b68b55f69d26b5cd3599d1955e735d3f05257043c830ee17707539c4955823c3

See more details on using hashes here.

File details

Details for the file awkward-1.5.0-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: awkward-1.5.0-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 13.0 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.7

File hashes

Hashes for awkward-1.5.0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 8f54e1b45da0c707fa90ba7bb68a97294521347507bee5e1ef8363e1d76181ba
MD5 c7abe5cc1aeb08396dae1aa051ad0681
BLAKE2b-256 04c6c3984f9c34a6857e8d4ba073527505e102a0f5cc641c685aa65e3b232918

See more details on using hashes here.

File details

Details for the file awkward-1.5.0-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: awkward-1.5.0-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 13.3 MB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.7

File hashes

Hashes for awkward-1.5.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0984c593b8f7170857c08b215ab0f458e1cb51a44dd38e870cc144ec85706f17
MD5 6a948c6cfa8f54b24ed916775623ae32
BLAKE2b-256 bcb90e8b6977ae8a14bc63499b29345e10b5e5f1452a0d7a025bfaf27bca86a1

See more details on using hashes here.

File details

Details for the file awkward-1.5.0-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: awkward-1.5.0-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 12.8 MB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.7

File hashes

Hashes for awkward-1.5.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 1fc1473b9d1707cb0661a5c59a7ecee00f5b3bec3ceaf316cb8b329c9f40081a
MD5 e99fff3f15f34db4cf21e0c6552ea77d
BLAKE2b-256 158610c600134b73d213576729dfb75cd941872883fe73e9452072f8c111f05b

See more details on using hashes here.

File details

Details for the file awkward-1.5.0-cp35-cp35m-win32.whl.

File metadata

  • Download URL: awkward-1.5.0-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 9.9 MB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.7

File hashes

Hashes for awkward-1.5.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 c86f96387381f194bb15bf2e9c986d24c88db880fc0c11a846c0e8f93d4811bc
MD5 4a0264e44d0a0fb3d41d3cce7cb69627
BLAKE2b-256 5019b0e77a25beb89d921b936ef2666f97413001f0ea94bc5e8cf24d7b3cbee8

See more details on using hashes here.

File details

Details for the file awkward-1.5.0-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

  • Download URL: awkward-1.5.0-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 13.0 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.7

File hashes

Hashes for awkward-1.5.0-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 405a4036889cda4dfc5154b45d5b30b37586cf5cf3568b09af793bc555bbaa95
MD5 111bd533435e02f4333de608666c0fa9
BLAKE2b-256 fc933573bf92cf3652560b9b3ed13cce64675d6885deedeb5354969d91e8efda

See more details on using hashes here.

File details

Details for the file awkward-1.5.0-cp35-cp35m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: awkward-1.5.0-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 13.3 MB
  • Tags: CPython 3.5m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.7

File hashes

Hashes for awkward-1.5.0-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 58aab2b14a4e5017001f3a508bf44f34c7af746c1421f1baddf0a1f3dbbb1dda
MD5 c31c9db37a0539afd1f591cff1c2523a
BLAKE2b-256 f464ed4643d5498bc8f1c797e296aea31b7cb0296a8e7a952d535eedf98dcc97

See more details on using hashes here.

File details

Details for the file awkward-1.5.0-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

  • Download URL: awkward-1.5.0-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 13.0 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.7

File hashes

Hashes for awkward-1.5.0-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 0c748108a5e46b1ce20d86f4654c6b25ee228de24c6973e8c627880a174ba31a
MD5 ee0f3115033b298dacad078da46136ed
BLAKE2b-256 91588d93c56619d505407c94a37de9eb768f370b012eb8461fcc5bce297833de

See more details on using hashes here.

File details

Details for the file awkward-1.5.0-cp27-cp27m-manylinux1_x86_64.whl.

File metadata

  • Download URL: awkward-1.5.0-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 13.0 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.7

File hashes

Hashes for awkward-1.5.0-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 00e4de381af21e064939e25aaa0adb1560e34d9fa2aded2ab17c3fe5e192c390
MD5 5c3297500a9be867d873baf460c61745
BLAKE2b-256 9cf9651e6581175abd334ba47ad37de75b66b72f11f504d8767ba1d5cf7ddaaf

See more details on using hashes here.

File details

Details for the file awkward-1.5.0-cp27-cp27m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: awkward-1.5.0-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 13.3 MB
  • Tags: CPython 2.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.7

File hashes

Hashes for awkward-1.5.0-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6c07cf8c4d476a9de209a73a53caa1b4e3b5f6d8c27a99fd3a1b28e24d26236e
MD5 36c8551050b4ae186ad7c116dfe07bd7
BLAKE2b-256 bc51b78865918b378bf61a6bce48c5fe9f3bb64f223cb82363795fb2a3eecd32

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