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

This version

1.4.0

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

Uploaded Source

Built Distributions

awkward-1.4.0-pp37-pypy37_pp73-manylinux2010_x86_64.whl (13.5 MB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

awkward-1.4.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (13.1 MB view details)

Uploaded PyPy macOS 10.9+ x86-64

awkward-1.4.0-cp39-cp39-win_amd64.whl (13.2 MB view details)

Uploaded CPython 3.9 Windows x86-64

awkward-1.4.0-cp39-cp39-win32.whl (10.0 MB view details)

Uploaded CPython 3.9 Windows x86

awkward-1.4.0-cp39-cp39-manylinux2014_aarch64.whl (12.7 MB view details)

Uploaded CPython 3.9

awkward-1.4.0-cp39-cp39-manylinux2010_x86_64.whl (13.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

awkward-1.4.0-cp39-cp39-macosx_10_9_x86_64.whl (13.1 MB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

awkward-1.4.0-cp39-cp39-macosx_10_9_universal2.whl (24.6 MB view details)

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

awkward-1.4.0-cp38-cp38-win_amd64.whl (13.0 MB view details)

Uploaded CPython 3.8 Windows x86-64

awkward-1.4.0-cp38-cp38-win32.whl (10.0 MB view details)

Uploaded CPython 3.8 Windows x86

awkward-1.4.0-cp38-cp38-manylinux2014_aarch64.whl (12.7 MB view details)

Uploaded CPython 3.8

awkward-1.4.0-cp38-cp38-manylinux2010_x86_64.whl (13.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

awkward-1.4.0-cp38-cp38-manylinux1_x86_64.whl (12.7 MB view details)

Uploaded CPython 3.8

awkward-1.4.0-cp38-cp38-macosx_10_9_x86_64.whl (13.1 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

awkward-1.4.0-cp38-cp38-macosx_10_9_universal2.whl (24.6 MB view details)

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

awkward-1.4.0-cp37-cp37m-win_amd64.whl (12.9 MB view details)

Uploaded CPython 3.7m Windows x86-64

awkward-1.4.0-cp37-cp37m-win32.whl (10.0 MB view details)

Uploaded CPython 3.7m Windows x86

awkward-1.4.0-cp37-cp37m-manylinux2014_aarch64.whl (12.9 MB view details)

Uploaded CPython 3.7m

awkward-1.4.0-cp37-cp37m-manylinux2010_x86_64.whl (13.6 MB view details)

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

awkward-1.4.0-cp37-cp37m-manylinux1_x86_64.whl (12.7 MB view details)

Uploaded CPython 3.7m

awkward-1.4.0-cp37-cp37m-macosx_10_9_x86_64.whl (12.9 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

awkward-1.4.0-cp36-cp36m-win_amd64.whl (12.9 MB view details)

Uploaded CPython 3.6m Windows x86-64

awkward-1.4.0-cp36-cp36m-win32.whl (10.0 MB view details)

Uploaded CPython 3.6m Windows x86

awkward-1.4.0-cp36-cp36m-manylinux2014_aarch64.whl (12.9 MB view details)

Uploaded CPython 3.6m

awkward-1.4.0-cp36-cp36m-manylinux2010_x86_64.whl (13.6 MB view details)

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

awkward-1.4.0-cp36-cp36m-manylinux1_x86_64.whl (12.7 MB view details)

Uploaded CPython 3.6m

awkward-1.4.0-cp36-cp36m-macosx_10_9_x86_64.whl (12.9 MB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

awkward-1.4.0-cp35-cp35m-win_amd64.whl (12.9 MB view details)

Uploaded CPython 3.5m Windows x86-64

awkward-1.4.0-cp35-cp35m-win32.whl (10.0 MB view details)

Uploaded CPython 3.5m Windows x86

awkward-1.4.0-cp35-cp35m-manylinux1_x86_64.whl (12.7 MB view details)

Uploaded CPython 3.5m

awkward-1.4.0-cp35-cp35m-macosx_10_9_x86_64.whl (12.9 MB view details)

Uploaded CPython 3.5m macOS 10.9+ x86-64

awkward-1.4.0-cp27-cp27mu-manylinux1_x86_64.whl (12.7 MB view details)

Uploaded CPython 2.7mu

awkward-1.4.0-cp27-cp27m-manylinux1_x86_64.whl (12.7 MB view details)

Uploaded CPython 2.7m

awkward-1.4.0-cp27-cp27m-macosx_10_9_x86_64.whl (12.9 MB view details)

Uploaded CPython 2.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: awkward-1.4.0.tar.gz
  • Upload date:
  • Size: 1.1 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.9.6

File hashes

Hashes for awkward-1.4.0.tar.gz
Algorithm Hash digest
SHA256 25ae6114d5962c717cb87e3bc30a2f6eaa232b252cf8c51ba805b8f04664ae0d
MD5 b832a41e1f2e4ec29bfe86e819a3e2fe
BLAKE2b-256 923678e8569019febaa660dfd5ce93196c03c100c31cdae5f2bdbe805f75be4a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.4.0-pp37-pypy37_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 13.5 MB
  • Tags: PyPy, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.9.6

File hashes

Hashes for awkward-1.4.0-pp37-pypy37_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 7ba2433e68c959445a4950736099e05b2526faa15fcbf3d90d4fd9bf7de06880
MD5 08b7f28b80e666783830269f8a13e11d
BLAKE2b-256 62bab2575eb64e5b15425226dc52782a112c78f46878f50489a7f9dcb90d29c1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.4.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 13.1 MB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.9.6

File hashes

Hashes for awkward-1.4.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9f6317fc0d26f808ad952e83c5c1196a123bb53b3cd3b03b004fe3114041fec1
MD5 6c232a9bf9e9561b007ab12a03ec59ac
BLAKE2b-256 b11f5ffaf3e0ee151ff101fa46da9841742420ae2909969bb1608e3a3a8af641

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.4.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 13.2 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.9.6

File hashes

Hashes for awkward-1.4.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 3c32db587cc5cd85aaee4ed71031d29e5687ea4976e44308ac45a560dde22f3b
MD5 99f24c67710fa407859b93c00ad6e3e7
BLAKE2b-256 2da0f2bd186eb29d9f89e0da225624cc752e885cbe6ddf83d42d72c84af3761e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.4.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 10.0 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.9.6

File hashes

Hashes for awkward-1.4.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 ece0d1777898b075582b2ec7612577f806dd330c8301ea76123fdbc0e710852a
MD5 10fdb549886aeffc4672347173b15f98
BLAKE2b-256 8c8aa7cc223f7cb7f80423ff6991084537edde62f043e9bc6b4391ab0e869c0d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.4.0-cp39-cp39-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 12.7 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.9.6

File hashes

Hashes for awkward-1.4.0-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0a4d6e07a10d589963d7541910ea0cc570be38dc53cf2ab1deb6aedd49e47215
MD5 a3c21f327926342911c1c253a9e7224d
BLAKE2b-256 3a04b5536e76ba827d440b55b61240eb72c2306bd6dd06806b0eaa9031e15072

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.4.0-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 13.5 MB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.9.6

File hashes

Hashes for awkward-1.4.0-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 d0ba578d7936034ebc754eaed14a305aacb880049b0336995c2437ba61d53e4c
MD5 86370fb8ecf8ed515c45da7dfbc6f611
BLAKE2b-256 2e8aa08365153e667a3d68e369f7a865d67697ba32e1cd2f37f8df22708812cd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.4.0-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 13.1 MB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.9.6

File hashes

Hashes for awkward-1.4.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8e544669b497f16ba18e67c7f4dfb0491a4f65e74294ae674570307e4f3aa0ad
MD5 c4c30a7b258d26977472364c893f3ef9
BLAKE2b-256 936953a449d2f3a70cfd357c49e08f086a88b70e36feca8b191284657170dc57

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.4.0-cp39-cp39-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 24.6 MB
  • Tags: CPython 3.9, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.9.6

File hashes

Hashes for awkward-1.4.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 a911d61c4e20d4612727ab2caf9a2fcf38ffa629d647b3f7fe80e1fda1b404a7
MD5 8cc3d6a4226ae546176815cc1e478ab0
BLAKE2b-256 ac369d315db7b408824fe74260a7e4852c7d85f180903878c885dd4751628ab8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.4.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 13.0 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.9.6

File hashes

Hashes for awkward-1.4.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 aca60d6ff7dbd493cb403afa1f47a6e6c12bb39f2ffd4b27e340f9abef72c808
MD5 e3c2f8189bf42fe77820d847411e2ad1
BLAKE2b-256 6f5092a6d97966e14c164b5c9073cf81001b953f0fdf3ed1cea337acc818c5ad

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.4.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 10.0 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.9.6

File hashes

Hashes for awkward-1.4.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 4b5d06bf63a693d1e660f6dad6a079f829d6134ff14df77a09b2faab9beb24fd
MD5 5a3c2c0f927b38c9a5217ef817f3499c
BLAKE2b-256 a59aa6ffbd061f9d017a82d603f213e47a1d8e9e3ce01a46d071284159a9278a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.4.0-cp38-cp38-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 12.7 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.9.6

File hashes

Hashes for awkward-1.4.0-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 74d2548302448d419a499d535919e425114d333d6b84ec642e19fba7a65dcd0f
MD5 b8739a7c00c6e030906c74fec68c58f8
BLAKE2b-256 9b3aacbd51dcc1666e6e4362c3a79c3c2f4c2f2990cf1f0b2af1ecdc5b1589b4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.4.0-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 13.5 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.9.6

File hashes

Hashes for awkward-1.4.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 95fe8e9dbc07431dac2fedc4499b09abd019dfd55d94661073f9f20510f8a0d9
MD5 21c552063d5554d7bf9dff81b2fbc456
BLAKE2b-256 d7ca382a0d5ccfe83e378f92b893788bf1389dc81049ea8351b20908b241dd16

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.4.0-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 12.7 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.9.6

File hashes

Hashes for awkward-1.4.0-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 94b5adbaf155cd67487fb0119f81697365e43c9d5667bf53166de97b8af33321
MD5 93dcea8cc9fe7a2b18c15378a2fcd4fb
BLAKE2b-256 372463ce410df39125739c7b9971a7d950d57ed57a90abd9a35532de3bb3074f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.4.0-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 13.1 MB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.9.6

File hashes

Hashes for awkward-1.4.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b5d2693b9d3923c89b917e83e158a74c2f80ab70e79413da93480db0a88fe9e5
MD5 41784d9bcda65402914bc7877ff75bbc
BLAKE2b-256 6ab4299d845fd725b8d744039b548bc8d2279fe509e84d49879e029b5d62e296

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.4.0-cp38-cp38-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 24.6 MB
  • Tags: CPython 3.8, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.9.6

File hashes

Hashes for awkward-1.4.0-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 9a028ba26e239a733ab1e5338391d8325401e98aed3a8aa1f3c81048904a19dd
MD5 920188ed0b64ac0406574d941e47f1ff
BLAKE2b-256 1276cfce706c86618c8bf0954d1f7f8e3e1954490b1b8a376633fa5898279fb2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.4.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 12.9 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.9.6

File hashes

Hashes for awkward-1.4.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 4058a9f49e7705ee66987b7fe06a3d4cbdc3e73a02abb27ebb6e4c95b0cbbd13
MD5 c1c1fa6c6a9699d663473949c4a06e30
BLAKE2b-256 1b9db886c8bb63a7cb503063dc1091e4d8fc65998f9d2bd4d85066ea91947c01

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.4.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 10.0 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.9.6

File hashes

Hashes for awkward-1.4.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 71c4dcbc19f2634d09387bbc7725e1ae7b95b6e20e5dd1f1b862267431afd673
MD5 21fc6558010c18d01f8f2fd553cde603
BLAKE2b-256 c9230156dad4bc1f0b9bdbca0974b029ceb800316b1d6a86febaff661ecc47cf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.4.0-cp37-cp37m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 12.9 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.9.6

File hashes

Hashes for awkward-1.4.0-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 561167b1774673265100fa53bdb34b0b13a6925368dff1446edd32114a53b227
MD5 75aae798595dc3cd1f20ac113480b6c5
BLAKE2b-256 b617e0c0a58c8612cfc22eba85359eea53bd7442df0ad07a24006d03b5b01bd3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.4.0-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 13.6 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.9.6

File hashes

Hashes for awkward-1.4.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a140a27d59bcbe21a855e3e5cbb6ffa3592bce554e4e482ce0c5ab10d56b6073
MD5 42adf6fb60e9fd29ed7fdaea41c3cfac
BLAKE2b-256 e9c8d4bc552838007f6f3e7accc5d92a55779bb94dadd001932885874c3b4dff

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.4.0-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 12.7 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.9.6

File hashes

Hashes for awkward-1.4.0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 9cdbd20bf7d95500e5226a1b70b0489a3edb419e768674381e1ae60994a71f73
MD5 b0c77751e536d05953c096ab1af44e15
BLAKE2b-256 5dbf03791a83cd8d24f2c585af6a13c4f0205837fe5cc75e6b5e3253e90f1396

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.4.0-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 12.9 MB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.9.6

File hashes

Hashes for awkward-1.4.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 dd096f59e8f9f81386426415edfb5220fa8d10d1bac3ed77eaf313d9f07112ff
MD5 1a66a8483d1057cdcc7c18fa21cc8be7
BLAKE2b-256 3acf5a5c92a7f32aaef89d8b665847a2b7d8f0484432535426f7c29686f07ab6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.4.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 12.9 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.9.6

File hashes

Hashes for awkward-1.4.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 dc348a2aa80bfb868bf9d04c313cdff2732c32dcebd4f3f9d98218dd8e7f2d8a
MD5 8e501c4d8ac2f6933d6af3619f77c24f
BLAKE2b-256 46707a95cf24cdd6fd45eb48f844553c77391d8c1cf775d7ca260c2b57537a70

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.4.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 10.0 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.9.6

File hashes

Hashes for awkward-1.4.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 d461b6ebc07c665413d7a0f09497631d33915df72b1fd0a6902f98efc1cefb58
MD5 c93666e8db626ef87f623faf99abd965
BLAKE2b-256 c0486e04c534f505efbcb7a5a459b50b2f7901d51f63569339098514c7c8c938

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.4.0-cp36-cp36m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 12.9 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.9.6

File hashes

Hashes for awkward-1.4.0-cp36-cp36m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a23c8735ed5eda05a1e368f7dc9399d9ace527e48b789e915f2b64437b0271bb
MD5 148d73c0a1a6e397769316378c1f975c
BLAKE2b-256 3c9dd6f0d28c78709c47fc2adb7bddd9239672a59c92ce72484614eccf85e21f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.4.0-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 13.6 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.9.6

File hashes

Hashes for awkward-1.4.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 900840eac4dcb2c5a20f9bafd58cdbfe32d909f91c74903a0ca0f4e689062d76
MD5 da0d07f7977b8b4a019a0d38e925405e
BLAKE2b-256 424eb7f187a36d0fd39fb51ec90ad8a2b687f7227914658048647e21db094d97

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.4.0-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 12.7 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.9.6

File hashes

Hashes for awkward-1.4.0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 0e5e3761173bb9af8d90dbc80db18f1de6c96fc9a364aaeb739d3c26003a3847
MD5 f9eab8795ee860b38f97ebfe2746697c
BLAKE2b-256 b06abf82192a8957f5cac368c6ad0e9485796929c2d4e877046b34226cb3165d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.4.0-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 12.9 MB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.9.6

File hashes

Hashes for awkward-1.4.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c81d4a26d24044ba40cbe5e1a3a737495162c08d8d9c8d0e70953ba114cdf9df
MD5 8fa246cffeaf8c5cf07841380ce1c640
BLAKE2b-256 3920f811cfcf002962bec9d059da5c01ead27eecfa24ed8dafb8b8f9274cb55b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.4.0-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 12.9 MB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.9.6

File hashes

Hashes for awkward-1.4.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 2671328646b1da7e0c9b935936afeae630b5b70da18c00d223801cdbdc456e50
MD5 6b46d864260638b91a0c90fe305192f5
BLAKE2b-256 414bd8852241afe2368bf3cde13146ac752d6e8b4c04b06004f111db2be9418c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.4.0-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 10.0 MB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.9.6

File hashes

Hashes for awkward-1.4.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 d96caf1062d82ba6dea08151eaf1e2a500aff405a732380f166a2aa08f345f79
MD5 9595824e80928568005a8c51557a985e
BLAKE2b-256 7bf2e8e40a0d6b7ab093ffb971bdd34fa0f9666133baf61bcedf5a808a55c372

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.4.0-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 12.7 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.9.6

File hashes

Hashes for awkward-1.4.0-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d9772c752c42e3df0d0e667569a6409096d69952e366b5d2f0ba62b8026ffd7e
MD5 52ca2c1de60ac8cf46c34571dbd2e65f
BLAKE2b-256 dc9f796553c59608bd5874ccff7e8d1bd828ddfa8747b03c7869fa738cb8b64c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.4.0-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 12.9 MB
  • Tags: CPython 3.5m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.9.6

File hashes

Hashes for awkward-1.4.0-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6cf0c0f5133019fbf8b0abf94fc234136b2c3e6e919bc28bddd8e0f852559a12
MD5 95bb62ed34ba7353ccadaa51b6bd6038
BLAKE2b-256 9d0b43c4d96caac0cbf9d1bc6932b7530106694b827d04be44a880a35f1f9fa2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.4.0-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 12.7 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.9.6

File hashes

Hashes for awkward-1.4.0-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 74a23d62998899197fafe194b094f3782fcb9ad00337512a97080eb9586e83b7
MD5 3bd31673bf4fa4f355066df45c35fd45
BLAKE2b-256 17632a3dd7b62bc7ccc3979d50d073946c484473cecacee87389188b2e175343

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.4.0-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 12.7 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.9.6

File hashes

Hashes for awkward-1.4.0-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 63deb3b46755633c89e05cb63ee75e863a91371b556a94e9d2ee78f20a744732
MD5 e1070a5cb59fec92a865c2f3adcbba9c
BLAKE2b-256 fad6d98fa9c7f112882d50ac08d8e4c17f9b65b247aab36640bd03db27562f5e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.4.0-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 12.9 MB
  • Tags: CPython 2.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.9.6

File hashes

Hashes for awkward-1.4.0-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a9b399bc4162dbc8a6ca88fa8a16eb6059fe4c5cfe12c82a8a475af560f54885
MD5 3af2d6ad6f9f58d17ffc2a52b2f696a3
BLAKE2b-256 7b69b4c6cd65e1ea5da4c772a2d39cbb637dc1f65df5844be7ceb6dbe2217d37

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