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

Uploaded Source

Built Distributions

awkward-1.5.1-pp37-pypy37_pp73-manylinux2010_x86_64.whl (14.0 MB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

awkward-1.5.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (13.7 MB view details)

Uploaded PyPy macOS 10.9+ x86-64

awkward-1.5.1-cp39-cp39-win_amd64.whl (13.5 MB view details)

Uploaded CPython 3.9 Windows x86-64

awkward-1.5.1-cp39-cp39-win32.whl (10.2 MB view details)

Uploaded CPython 3.9 Windows x86

awkward-1.5.1-cp39-cp39-manylinux2014_aarch64.whl (13.2 MB view details)

Uploaded CPython 3.9

awkward-1.5.1-cp39-cp39-manylinux2010_x86_64.whl (14.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

awkward-1.5.1-cp39-cp39-macosx_10_9_x86_64.whl (13.7 MB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

awkward-1.5.1-cp39-cp39-macosx_10_9_universal2.whl (25.7 MB view details)

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

awkward-1.5.1-cp38-cp38-win_amd64.whl (13.2 MB view details)

Uploaded CPython 3.8 Windows x86-64

awkward-1.5.1-cp38-cp38-win32.whl (10.2 MB view details)

Uploaded CPython 3.8 Windows x86

awkward-1.5.1-cp38-cp38-manylinux2014_aarch64.whl (13.2 MB view details)

Uploaded CPython 3.8

awkward-1.5.1-cp38-cp38-manylinux2010_x86_64.whl (14.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

awkward-1.5.1-cp38-cp38-manylinux1_x86_64.whl (13.2 MB view details)

Uploaded CPython 3.8

awkward-1.5.1-cp38-cp38-macosx_10_9_x86_64.whl (13.7 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

awkward-1.5.1-cp38-cp38-macosx_10_9_universal2.whl (25.7 MB view details)

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

awkward-1.5.1-cp37-cp37m-win_amd64.whl (13.2 MB view details)

Uploaded CPython 3.7m Windows x86-64

awkward-1.5.1-cp37-cp37m-win32.whl (10.3 MB view details)

Uploaded CPython 3.7m Windows x86

awkward-1.5.1-cp37-cp37m-manylinux2014_aarch64.whl (13.5 MB view details)

Uploaded CPython 3.7m

awkward-1.5.1-cp37-cp37m-manylinux2010_x86_64.whl (14.1 MB view details)

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

awkward-1.5.1-cp37-cp37m-manylinux1_x86_64.whl (13.2 MB view details)

Uploaded CPython 3.7m

awkward-1.5.1-cp37-cp37m-macosx_10_9_x86_64.whl (13.5 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

awkward-1.5.1-cp36-cp36m-win_amd64.whl (13.2 MB view details)

Uploaded CPython 3.6m Windows x86-64

awkward-1.5.1-cp36-cp36m-win32.whl (10.3 MB view details)

Uploaded CPython 3.6m Windows x86

awkward-1.5.1-cp36-cp36m-manylinux2014_aarch64.whl (13.5 MB view details)

Uploaded CPython 3.6m

awkward-1.5.1-cp36-cp36m-manylinux2010_x86_64.whl (14.1 MB view details)

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

awkward-1.5.1-cp36-cp36m-manylinux1_x86_64.whl (13.2 MB view details)

Uploaded CPython 3.6m

awkward-1.5.1-cp36-cp36m-macosx_10_9_x86_64.whl (13.5 MB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

awkward-1.5.1-cp35-cp35m-win_amd64.whl (13.2 MB view details)

Uploaded CPython 3.5m Windows x86-64

awkward-1.5.1-cp35-cp35m-win32.whl (10.3 MB view details)

Uploaded CPython 3.5m Windows x86

awkward-1.5.1-cp35-cp35m-manylinux1_x86_64.whl (13.2 MB view details)

Uploaded CPython 3.5m

awkward-1.5.1-cp35-cp35m-macosx_10_9_x86_64.whl (13.5 MB view details)

Uploaded CPython 3.5m macOS 10.9+ x86-64

awkward-1.5.1-cp27-cp27mu-manylinux1_x86_64.whl (13.2 MB view details)

Uploaded CPython 2.7mu

awkward-1.5.1-cp27-cp27m-manylinux1_x86_64.whl (13.2 MB view details)

Uploaded CPython 2.7m

awkward-1.5.1-cp27-cp27m-macosx_10_9_x86_64.whl (13.5 MB view details)

Uploaded CPython 2.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: awkward-1.5.1.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.3 CPython/3.9.7

File hashes

Hashes for awkward-1.5.1.tar.gz
Algorithm Hash digest
SHA256 c0357c62223fefcfc7a7565389dbd4db900623bf10eccf2bc8e87586ec59b38d
MD5 c47a056bff2c27351a3dc6f70663c278
BLAKE2b-256 c166ebf25c01dbf8b4e892fee8bb9a33f8b7e28c4433665713ead20b4a217a15

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.5.1-pp37-pypy37_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 14.0 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.3 CPython/3.9.7

File hashes

Hashes for awkward-1.5.1-pp37-pypy37_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 af3e37aa0ed413a55c7d5dd954f875954c152858a82320603089792a2118ec19
MD5 a7a17470d856f7b005a584648fa8484e
BLAKE2b-256 d20d9cb9ce0181d8cf08b0714c4fb555bc860378392e75c3750479522d9b0cab

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.5.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 13.7 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.3 CPython/3.9.7

File hashes

Hashes for awkward-1.5.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 169a988a40c236f78139c6d2966f6e4c241f23327b5c5d331ac527c48482e60b
MD5 dd506705509241e44f0c4d621d92582e
BLAKE2b-256 a0ace2c575d9b9570e8cb29dfba2b07e2b92e87fd7291a818bfa1c3850d9cd13

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.5.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 13.5 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.3 CPython/3.9.7

File hashes

Hashes for awkward-1.5.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 55ad443425d386eaf3dfb45a94e13c012224f81cadb6a4ae9ca8b5fe29b62ac4
MD5 f56bd9806147252471445e833bada9a1
BLAKE2b-256 3456ab954bda4d3c7e6baac864b68fb2fe7b3da4229cedb21a2d56880feacc14

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.5.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 10.2 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.3 CPython/3.9.7

File hashes

Hashes for awkward-1.5.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 927ee584e49107f358cbbb09520047b5a1a8ae3ecfb6dea5ac6c634302195f91
MD5 1277449131944d4764f1bae4f3c5238a
BLAKE2b-256 18587f9ccfdd47e85bea0d4db27da0eb264456d92a97860c0a6946d3a99e6896

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.5.1-cp39-cp39-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 13.2 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.3 CPython/3.9.7

File hashes

Hashes for awkward-1.5.1-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 01339fd080cd4b79ba8958cd92f69765dab8da35af9d1fbfb80705b54fa07c29
MD5 9455777482482f49bb70c248070954c1
BLAKE2b-256 97c0cdfe486dc2e74e18078f66e31315185eb47d8372aea89c8df48a81372915

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.5.1-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 14.1 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.3 CPython/3.9.7

File hashes

Hashes for awkward-1.5.1-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 82fd37aad622946e169fcb371a7443da52970b733f90c2f486f223694c66ac3d
MD5 65a84f4163df75223440659d6368f312
BLAKE2b-256 279b3772fb481e0dcbf0e3bca57b4470e52a28b703ea85672f093efb9ac75247

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.5.1-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 13.7 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.3 CPython/3.9.7

File hashes

Hashes for awkward-1.5.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 19039e676e4f4bb88d75bfadc8933cab72b12f1225d594a1499e89aa0fade121
MD5 eda11cd545f02ab54db2e47d79974d7c
BLAKE2b-256 c4595dff83431f5c82097a9b89a418a6b7a7803cd3bb582d39d081bb71ce6fa5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.5.1-cp39-cp39-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 25.7 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.3 CPython/3.9.7

File hashes

Hashes for awkward-1.5.1-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 1ec23b1df5c79ac7ea82bc01200d80c47be0b0cbf8042dfe1b893d495dc0fecd
MD5 8fa09c2d42e57110f01ce5baff5b1068
BLAKE2b-256 b98b79586e889c7b915fea8bebbd008a8a277916bc307d1d3847171802178561

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.5.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 13.2 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.3 CPython/3.9.7

File hashes

Hashes for awkward-1.5.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 5028c9a186833e83ee7ae3e216c99f014bfdde30d2aa680b78cc347955c4efa6
MD5 ce15fee632577b9c0f39bd35196a4d89
BLAKE2b-256 eeba06b63296ab5df134ba9e3ff4a1ab870703e5508bea77b5069f5511de56eb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.5.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 10.2 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.3 CPython/3.9.7

File hashes

Hashes for awkward-1.5.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 ba0fce4ae05da2002fc16104ec4ebb696abcde85a581b0f87ba7c3379594cf8b
MD5 7bd29ee17743a920bf8632cd0d8d9882
BLAKE2b-256 c8cd86a1ca8002248e5a5e8c9abac73343d083b17497f90f7e101fa88214c9db

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.5.1-cp38-cp38-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 13.2 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.3 CPython/3.9.7

File hashes

Hashes for awkward-1.5.1-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 74310f5c1d8ae0b7731bb6714d5bbb98b36c8dedde415ce5c00d650898d47e82
MD5 cab06d39050d427ca214aa72633a6893
BLAKE2b-256 6a2f9cf5e7e5feabba2eeab1464e96387a4c26bbbcb22cad6a6913a4e64050e6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.5.1-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 14.1 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.3 CPython/3.9.7

File hashes

Hashes for awkward-1.5.1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 6a4223c13207edfd750b724315ca576830375dd5cdf6e79afa28362c1ef6042a
MD5 ff60e2e9a722a10dbcdb67ad6def16a4
BLAKE2b-256 1a131b0f648355ff793ab1fdddf2c9970eb29557f8bbf13b6ba19f9fc8b0e787

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.5.1-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 13.2 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.3 CPython/3.9.7

File hashes

Hashes for awkward-1.5.1-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 dafb1e5765d95c3c49ed048805fdc4d17cc9485e2f0dba66dba55589b9c9d0df
MD5 be9f027fc0b462ab6bce8ac1678e7821
BLAKE2b-256 5f4f93778e9f8320fe46e83eb796f17eb604337e57b990f86fafa4b335b4717f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.5.1-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 13.7 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.3 CPython/3.9.7

File hashes

Hashes for awkward-1.5.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 584154bce26fea5f6e7652ec70d8fff145aa4d8121b8c18c3f7e8e410b87cc9d
MD5 019d9a31b08fdacbef0e1a2454bd0c36
BLAKE2b-256 7542210aea966d34de8e8d7fbc403be46781a8b57c914c64331a64edc219af2e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.5.1-cp38-cp38-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 25.7 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.3 CPython/3.9.7

File hashes

Hashes for awkward-1.5.1-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 0e582e45eb079f4909cfd7534655ed7f0c2a88c1cbde912a0a2d33a43753f6f3
MD5 4bf4f91064942aceb0592952701dde69
BLAKE2b-256 27fd819051176b029f30f3ff94c0902a46014bb462be30586e58741be3636292

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.5.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 13.2 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.3 CPython/3.9.7

File hashes

Hashes for awkward-1.5.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 c089abaff5089e4c0e93131eba794abb0049e19de845448d07bd48580105f26e
MD5 c04abddd31334cd7ea875fce8da887ca
BLAKE2b-256 d389805c2a8ab514506e09c98fc70b8ebf7c7b2e91405d6047c40455394c7deb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.5.1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 10.3 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.3 CPython/3.9.7

File hashes

Hashes for awkward-1.5.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 3ae415566b3e942e0af6e0cb4182344273c58b0150e52a4177531e6bc940678b
MD5 2bd7a88ffd3ad8b9b30facebaa26defc
BLAKE2b-256 6f9e437ce0f2852823e198b117c8b3d007d5f39d82ac0e59439e2a17654785d0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.5.1-cp37-cp37m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 13.5 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.3 CPython/3.9.7

File hashes

Hashes for awkward-1.5.1-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 307a3308cf854c8ab45b44509074ba03a707e10701dc1d49a0af439bfad82619
MD5 97ff1b4c54b839a98cda19f39c682d71
BLAKE2b-256 4cfb9ba026acb8b57d78d97c493b9d5aafcc1483af0b5b3d1e5d9032fb8ab944

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.5.1-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 14.1 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.3 CPython/3.9.7

File hashes

Hashes for awkward-1.5.1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 2c3d36c3e257e11f5bfcdb30c77898313b0c81111b32a1e6f596cdd9406be85a
MD5 6b6974cfc56e63bc314248749f435341
BLAKE2b-256 1a49b78ecb4fdbd744bd2b93e6d94ac04c78adc09d7702282f5a65572c0e553b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.5.1-cp37-cp37m-manylinux1_x86_64.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.3 CPython/3.9.7

File hashes

Hashes for awkward-1.5.1-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 846e2eb0a40a9b811d4c6d26a5eb0d1c3aa4cc10c89fc9edc0b422404f17737b
MD5 ce0501d4343f5a66990900fc51fb79f3
BLAKE2b-256 b49554376182204fcc76bb9b0bbb2a98802836fa4bd548d3102a8f3633e904d7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.5.1-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 13.5 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.3 CPython/3.9.7

File hashes

Hashes for awkward-1.5.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a38712b1936de70d8646480234af8b520e612eea7d98f331218a609e30f7771f
MD5 2820705ee34a107e679557d832d8e0a5
BLAKE2b-256 8edd9fe6d079f22a858e441a3f3073b392686a603af21648631d4ca1d5e94898

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.5.1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 13.2 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.3 CPython/3.9.7

File hashes

Hashes for awkward-1.5.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 e4f688569a4e06e683835e35496b629f93685f5a722031d0b18dd52fac37d82a
MD5 92d0bfbd207881f88e214ae81dd14bda
BLAKE2b-256 b8c6072178571e79a32a6da87671a1c891402d73626b413bce879ea69037bb5e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.5.1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 10.3 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.3 CPython/3.9.7

File hashes

Hashes for awkward-1.5.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 669ce71602efb958d2bd93971d8e8d6b829c0fd80da4fcb0796a92b1f707254c
MD5 f695af12869e9df2b921b70fae8793cc
BLAKE2b-256 767642ea4283920dcacfe669a78162d2c3b3243af3e68869b1241a945068941d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.5.1-cp36-cp36m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 13.5 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.3 CPython/3.9.7

File hashes

Hashes for awkward-1.5.1-cp36-cp36m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b2eaff6072cd25cef668e0c3fe2330897979de778cfa324e969c882dbcd022d1
MD5 490d3d28f67cd5aa8f84c7ff0cdb1c06
BLAKE2b-256 07a1d32411eaa06574ced3ce76719f8aa2db1097e4e61d1d48db847aa366c6f3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.5.1-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 14.1 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.3 CPython/3.9.7

File hashes

Hashes for awkward-1.5.1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 18de93a26097e9c002f9637df8d1fc7614726b7b025d0667d3e179816ad4ea46
MD5 864bf966a5807343b038550462514feb
BLAKE2b-256 0d65adf09f00385e835d121a57bdc969d852c2af429aab43b4222439d000184c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.5.1-cp36-cp36m-manylinux1_x86_64.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.3 CPython/3.9.7

File hashes

Hashes for awkward-1.5.1-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 916532e6df19de186f6cf2c18aac0dac9157a4fd1586a9f5cedd9e1d4bbd9527
MD5 dd6326b014ad993dc18c8cab107df87c
BLAKE2b-256 eca704919ce9d3ec43f79d3ba9344f50b0f0a1812e26d60d24d983bdcb7d0b7d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.5.1-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 13.5 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.3 CPython/3.9.7

File hashes

Hashes for awkward-1.5.1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0c813c873a1345a0759c78d4260a013d32965c9d0ad0516294d04844ddc77456
MD5 062b305f69ea2c52739feec1443c6c82
BLAKE2b-256 b9e22184d3b7479a7b4618b5d0d717570ea615ca5ed2fa8b4b64ed1acbb65449

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.5.1-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 13.2 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.3 CPython/3.9.7

File hashes

Hashes for awkward-1.5.1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 714274d4276fb4c7b110cd6879b52c9d08be9d7be06ba956dc149b1e00317ac2
MD5 ebaa13b78a8961e35ae8a9c53224fccb
BLAKE2b-256 2efeb648a79f91a9b9f3a2a0f8f3f70ad08dc6f74fa2b26057b0205a4298fb27

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.5.1-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 10.3 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.3 CPython/3.9.7

File hashes

Hashes for awkward-1.5.1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 1aa0a8170766185b47b649705ca41b926af90b3673a04cb036b69d1936a40a53
MD5 62620f7bb020eda5964bf8888104a6e9
BLAKE2b-256 ee56585e381d6edbe51842863fdf8e056fe80a43fd3e2d3a154f2e8a05ada314

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.5.1-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 13.2 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.3 CPython/3.9.7

File hashes

Hashes for awkward-1.5.1-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d94540da882277f06457d21e1285d28da2a193ecd020169571540ecf70655187
MD5 808fd584bc051af86a9072a7c7d5fbf0
BLAKE2b-256 3116482a7bc2347aec0f710c7499fef5fa8b0e52e91a96ffb47e0dbdfcbff75f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.5.1-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 13.5 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.3 CPython/3.9.7

File hashes

Hashes for awkward-1.5.1-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 58c09693448f4340d0687dd14c9e34f2c4a45d420b14572b56629cebe7a9309d
MD5 747f7f388b44ab0f862de2ee98de992e
BLAKE2b-256 af22be5afae01747d9161db2c59fe6e84dfeec174b254fa228934c192ceb2c34

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.5.1-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 13.2 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.3 CPython/3.9.7

File hashes

Hashes for awkward-1.5.1-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 45d80dd3829db3f760d162eb17c122caa79c52a85171045f1827104c5ea72af7
MD5 62db0199be44c78dc09c84f80f9c23d1
BLAKE2b-256 5981bfa4a78a7c8d6bbee774b5a61dde0e0d290c8b1074f278078efe4dd6dc7b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.5.1-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 13.2 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.3 CPython/3.9.7

File hashes

Hashes for awkward-1.5.1-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 2d162c9a48285c2c22715d13516d1cbae3cbf4b96a42298397dfe2950c7af015
MD5 44da047a2b13c6e806cd7e736cf71aa0
BLAKE2b-256 fa26122cd1539a7196be0308aba2bb0c93a605bbbab78fbc4228716010e884b7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.5.1-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 13.5 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.3 CPython/3.9.7

File hashes

Hashes for awkward-1.5.1-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 24d1ac692bc426e062145f3208fb11e3c0f61777236078413bcfd90ee5894d93
MD5 352856ce7bd6638072072266fda301b0
BLAKE2b-256 c8bc45f2ff435fb046b776b01614ced3b15555122c8bbdac82b194638f2a4ec4

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