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

Uploaded Source

Built Distributions

awkward-1.2.2-cp39-cp39-win_amd64.whl (11.7 MB view details)

Uploaded CPython 3.9 Windows x86-64

awkward-1.2.2-cp39-cp39-win32.whl (8.7 MB view details)

Uploaded CPython 3.9 Windows x86

awkward-1.2.2-cp39-cp39-manylinux2010_x86_64.whl (7.7 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

awkward-1.2.2-cp39-cp39-manylinux1_x86_64.whl (7.2 MB view details)

Uploaded CPython 3.9

awkward-1.2.2-cp39-cp39-manylinux1_i686.whl (7.3 MB view details)

Uploaded CPython 3.9

awkward-1.2.2-cp39-cp39-macosx_10_9_x86_64.whl (7.6 MB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

awkward-1.2.2-cp38-cp38-win_amd64.whl (11.7 MB view details)

Uploaded CPython 3.8 Windows x86-64

awkward-1.2.2-cp38-cp38-win32.whl (8.7 MB view details)

Uploaded CPython 3.8 Windows x86

awkward-1.2.2-cp38-cp38-manylinux2010_x86_64.whl (7.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

awkward-1.2.2-cp38-cp38-manylinux1_x86_64.whl (7.2 MB view details)

Uploaded CPython 3.8

awkward-1.2.2-cp38-cp38-manylinux1_i686.whl (7.3 MB view details)

Uploaded CPython 3.8

awkward-1.2.2-cp38-cp38-macosx_10_9_x86_64.whl (7.6 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

awkward-1.2.2-cp37-cp37m-win_amd64.whl (11.7 MB view details)

Uploaded CPython 3.7m Windows x86-64

awkward-1.2.2-cp37-cp37m-win32.whl (8.7 MB view details)

Uploaded CPython 3.7m Windows x86

awkward-1.2.2-cp37-cp37m-manylinux2010_x86_64.whl (7.7 MB view details)

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

awkward-1.2.2-cp37-cp37m-manylinux1_x86_64.whl (7.2 MB view details)

Uploaded CPython 3.7m

awkward-1.2.2-cp37-cp37m-manylinux1_i686.whl (7.3 MB view details)

Uploaded CPython 3.7m

awkward-1.2.2-cp37-cp37m-macosx_10_9_x86_64.whl (7.5 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

awkward-1.2.2-cp36-cp36m-win_amd64.whl (11.7 MB view details)

Uploaded CPython 3.6m Windows x86-64

awkward-1.2.2-cp36-cp36m-win32.whl (8.7 MB view details)

Uploaded CPython 3.6m Windows x86

awkward-1.2.2-cp36-cp36m-manylinux2010_x86_64.whl (7.7 MB view details)

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

awkward-1.2.2-cp36-cp36m-manylinux1_x86_64.whl (7.2 MB view details)

Uploaded CPython 3.6m

awkward-1.2.2-cp36-cp36m-manylinux1_i686.whl (7.3 MB view details)

Uploaded CPython 3.6m

awkward-1.2.2-cp35-cp35m-win_amd64.whl (11.7 MB view details)

Uploaded CPython 3.5m Windows x86-64

awkward-1.2.2-cp35-cp35m-win32.whl (8.7 MB view details)

Uploaded CPython 3.5m Windows x86

awkward-1.2.2-cp35-cp35m-manylinux2010_x86_64.whl (7.7 MB view details)

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

awkward-1.2.2-cp35-cp35m-manylinux1_x86_64.whl (7.2 MB view details)

Uploaded CPython 3.5m

awkward-1.2.2-cp35-cp35m-manylinux1_i686.whl (7.3 MB view details)

Uploaded CPython 3.5m

awkward-1.2.2-cp27-cp27mu-manylinux1_x86_64.whl (7.2 MB view details)

Uploaded CPython 2.7mu

awkward-1.2.2-cp27-cp27mu-manylinux1_i686.whl (7.3 MB view details)

Uploaded CPython 2.7mu

awkward-1.2.2-cp27-cp27m-win_amd64.whl (11.8 MB view details)

Uploaded CPython 2.7m Windows x86-64

awkward-1.2.2-cp27-cp27m-win32.whl (8.7 MB view details)

Uploaded CPython 2.7m Windows x86

awkward-1.2.2-cp27-cp27m-manylinux1_x86_64.whl (7.2 MB view details)

Uploaded CPython 2.7m

awkward-1.2.2-cp27-cp27m-manylinux1_i686.whl (7.3 MB view details)

Uploaded CPython 2.7m

awkward-1.2.2-cp27-cp27m-macosx_10_9_x86_64.whl (7.5 MB view details)

Uploaded CPython 2.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: awkward-1.2.2.tar.gz
  • Upload date:
  • Size: 1.0 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.7.10

File hashes

Hashes for awkward-1.2.2.tar.gz
Algorithm Hash digest
SHA256 89f126a072d3a6eee091e1afeed87e0b2ed3c34ed31a1814062174de3cab8d9b
MD5 0c9dd5a9083365951b3851103d7b00a9
BLAKE2b-256 4d6a59a260ba06f088a8885d52c9db26a64428831f406bc5770f70c14c23722d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.2.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 11.7 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for awkward-1.2.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 4fec9384fa94ce084298af94084b024b491fe8bc4cae591522728b9f2e7e9fcd
MD5 0d420814028d9700685583d8416af9e4
BLAKE2b-256 a47e4792f6b61a26c605757c067d8470050cf5a43aba6ad61ea5f5403864feac

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.2.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 8.7 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for awkward-1.2.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 3cf8ae3ba1df729481d0768ec06138e6bbc9533726f0b305bbf90828a14d30fb
MD5 03ad31bcdb838e72e1c793a38eff8dee
BLAKE2b-256 16ffbf8dc1db43c25c72f8e737a8ff0056064694f1dc0f2c5c219a5187f70bf1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.2.2-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 bb8cd2e626ba65a5b100922db2e6a1fe367ee5af23151c47f8c6db2657574dc4
MD5 6b9114eb1abb0651529bb47aee5c51fe
BLAKE2b-256 e2c3658eddf65021eb6637fe395e0bd47c9d6f8def7e10c670a061f05ab8b279

See more details on using hashes here.

File details

Details for the file awkward-1.2.2-cp39-cp39-manylinux1_x86_64.whl.

File metadata

  • Download URL: awkward-1.2.2-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 7.2 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.7.10

File hashes

Hashes for awkward-1.2.2-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 55357c8fb379c059b2d461b2171c741e343e1ed1fbd1a471a3c2ec64a7a0464c
MD5 7a846336755dbb02de5baa4eb7b09b12
BLAKE2b-256 bb4f6e947fe9913d7b16039205b6c61b16e2211bc127b313e9afa6c7134b4093

See more details on using hashes here.

File details

Details for the file awkward-1.2.2-cp39-cp39-manylinux1_i686.whl.

File metadata

  • Download URL: awkward-1.2.2-cp39-cp39-manylinux1_i686.whl
  • Upload date:
  • Size: 7.3 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.7.10

File hashes

Hashes for awkward-1.2.2-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 c41dd9a31939c84fa0844e1520c5520044ac842230e57031191d640e046fe3b0
MD5 9fb423e3fe76d43d43a953fe78e783b0
BLAKE2b-256 c15da242261f10a2fc880087d4b208fa806ca342f66f10fd9ca8709ad195726d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.2.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0876a125ee95e79e096c1150395991c533ab315a47c116b482d3c29222264f19
MD5 6f45433b7989f90ec94841f39500ff08
BLAKE2b-256 e48d73021022a4c3183785059b6163491f1a8b0179eebacf609d03e6639034d2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.2.2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 11.7 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.8

File hashes

Hashes for awkward-1.2.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 ba6f0a4256c37eb1b4d3e3c3865d1ca38688e8d548ad266ce65d58ff47af8bd8
MD5 711475734c0a346e1699409ef1815e9d
BLAKE2b-256 e631505744920d0fef5a9b07d06aa999707805df434c6c0abbb456fd52266a9b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.2.2-cp38-cp38-win32.whl
  • Upload date:
  • Size: 8.7 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.8

File hashes

Hashes for awkward-1.2.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 d7b6d978d07c685d6d38744d4d39239a71098edc217d2aabe850f04f4c2ffad6
MD5 ff243cafcf6e82631082eb0e376f227d
BLAKE2b-256 9037d53bb60b7858d0e74201c81cd5b30af8c1fc00bc33ad9ffd52e9be51ede2

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.2.2-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 3b11d8179066748eb59eebf5bd9721c498b6541f6abc75a06597641bf80a884d
MD5 88bfa43fd991233c2386809fd0038dbc
BLAKE2b-256 8932304f1890c1ce55bd86d65fdece318c849635a7357ac22ee9e0c62ee6eb51

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.2.2-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 7.2 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.7.10

File hashes

Hashes for awkward-1.2.2-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 decc06b663b1fe09e7783a8b3d497521fd073121fe89448f042f1fdbc67a8081
MD5 9d558042928416f89f0f90980a656318
BLAKE2b-256 072f89eff1ec623673d602dddf1cf790b9e0d9e178a77fbb0068804f4bed98e6

See more details on using hashes here.

File details

Details for the file awkward-1.2.2-cp38-cp38-manylinux1_i686.whl.

File metadata

  • Download URL: awkward-1.2.2-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 7.3 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.7.10

File hashes

Hashes for awkward-1.2.2-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 f2b46accda32c2bd7889e28e5fa5b2c9a1dc1fc164517fe5af9f40577cce4666
MD5 93f014a07f212d7472516a43ac30620d
BLAKE2b-256 42297f110b15d5baf1d03f89ada0d8c7b774b478139423980a6bad6231b7ddca

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.2.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 dd126dd90a66a8d7efe0d8478219fb1a37e8598c3cd6e6f974c809489fd3af32
MD5 32b719bbda3f2c348df59876d8aa2500
BLAKE2b-256 89f103f83048453ca5bd985141e741cb6b1e17f1d626c38c78e10684fd2183fa

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.2.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 eff98cacd0b88c74b2bc289b6d7835c50983062fd02bb7582cbff72863d9813a
MD5 4644e9a51dd19326d266c9865da080a2
BLAKE2b-256 2ba3b1c0004aeb3c7d3df0269c939a28e36e32653d12a66dc19fca4e6991250b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.2.2-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 5141526dc372c482150191ab986f78fece12c418d58a907663702e2bc9489609
MD5 880072501c0af6b3ff57fea7d18b128e
BLAKE2b-256 c85d023329a874f6b73398a4990d70350d3e69a25167b6774cc9de4730f99a40

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.2.2-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 d1722fc16098611d454d1f81f1fc61c28d9dc70ec7d1b8952d3612f6532b689e
MD5 01d375135580c25ba2b561284d2fced4
BLAKE2b-256 188ddbf48ed371fd999dc5d11b60a2429795f9b2787da6fa20db15c102bce7bd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.2.2-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 7.2 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.7.10

File hashes

Hashes for awkward-1.2.2-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e622851dea0ca4ec54be8a549437d884573e4ed340f298760fe5ce530482a0ed
MD5 09ef2358ea1d9445758640377520e48a
BLAKE2b-256 71ef0ab9356b4a8d446d8b38612a4e8cc3f7e9e5d0f38219131d5c792cae118f

See more details on using hashes here.

File details

Details for the file awkward-1.2.2-cp37-cp37m-manylinux1_i686.whl.

File metadata

  • Download URL: awkward-1.2.2-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 7.3 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.7.10

File hashes

Hashes for awkward-1.2.2-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 41498c0411890618e6395d1e112ea5b7bbbf53a0e38bc389f225c2fe90a912a8
MD5 b94a76cc493a6705bd72194f05cf51ae
BLAKE2b-256 1f244d8a0cf8f984ecd8721ede7a336ad8a38384553d64186bd7b87ac10e6537

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.2.2-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3215605e439fbf9f22fcc87ed3824e4193237468a1fa655f6cdc4a6490fb3f1c
MD5 f741b176dca4a0002e4e7030db1511f4
BLAKE2b-256 a2d231a1471a40b8e5a3354c9c4736876b9e58c368e553cc60296a8c2d668c82

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.2.2-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 d3f419b46beefacac0fe8f350561ec7d192487f662b77a0a364a618d20929a4d
MD5 0cc57ebf29e991067fce577e36590523
BLAKE2b-256 147e4a97801e3e0e14c9b6a0a09931a74208930eb9d4f8345b1da5ae9a9f243b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.2.2-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 44d4c42c4c193a83b8754d181abc2328fff3dd280d694b37c7f0f12d86790d55
MD5 79684fea1ae4afd238bac6cd139cb1fb
BLAKE2b-256 3cd279d03d3a801ad15f804f74f2bd75c69ca5194b52b7faf46b71487199552c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.2.2-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 190a06067940a4beaacb60000b473f2e13f3056226f04126c7178f4b0f6b4fce
MD5 cc366072f202777b5671fc2a1a7d1a40
BLAKE2b-256 01090177ecb801f71009abf969e21f7e35c7105bf07da052ff308fb2498bfc8b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.2.2-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 7.2 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.7.10

File hashes

Hashes for awkward-1.2.2-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 8de3d4981450fde104e783310d24ec55ed10f984a6292f279c8b4522931fed66
MD5 67548d1302d61e71953ae9acdd13f641
BLAKE2b-256 7ad831a34b867acd504bc2cf9512a92c0f0070fbeb070936c1434e6952252262

See more details on using hashes here.

File details

Details for the file awkward-1.2.2-cp36-cp36m-manylinux1_i686.whl.

File metadata

  • Download URL: awkward-1.2.2-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 7.3 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.7.10

File hashes

Hashes for awkward-1.2.2-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 ec641bad6d80476e91f08f0adaf2b16e3df6eaf93fb43d334cf9d9ee2cf59d62
MD5 50f158258fa18f6c0507f7fff5b334a8
BLAKE2b-256 bf953e7e54abcfe31585826849a0637c5f19553f48459273f4b9053029f8f465

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.2.2-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 11.7 MB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.7.0 requests/2.25.1 setuptools/28.8.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.5.4

File hashes

Hashes for awkward-1.2.2-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 e10aff7ae012e311c8afd756b52aa62af95d429e16ab53082d312d75c090aba0
MD5 e2d7e84b7958ca9ae0c67f02c07ba7a6
BLAKE2b-256 cf099b1d1525079a6eab69aa8f7dc2ed8abf86c05679e1076c78b2dec229005e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.2.2-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 8.7 MB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.7.0 requests/2.25.1 setuptools/28.8.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.5.4

File hashes

Hashes for awkward-1.2.2-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 46804903fc803b7e7f894bd33616f0ef16b09d87ab5a1b64d8d6a36835ac117c
MD5 1e622929aa597ccbd1facb94ee49a53d
BLAKE2b-256 3822b176c36b50be42497735323abd5e4abe60e7c5857933899dd8fc3ae8c3e7

See more details on using hashes here.

File details

Details for the file awkward-1.2.2-cp35-cp35m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: awkward-1.2.2-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 7.7 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.7.10

File hashes

Hashes for awkward-1.2.2-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a7d584fadba7939da732fb76e53e084effcd756bde0b5d5e035a2b360798578b
MD5 efda147f968e1baadc5616e94880c335
BLAKE2b-256 86d9a9cc942f9a4871626904a07bc5e3d6e90f49f6412b16a864c0272f4bff99

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.2.2-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 7.2 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.7.10

File hashes

Hashes for awkward-1.2.2-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 f46be85daf137fcd4f41e3813de83ce1dae799c90b720fb3d415951dc597fcb9
MD5 277b42ac8169519814ddae7d3aeecb75
BLAKE2b-256 3a13dc5edf6e06aa92b3f433b03733dc28ccd6f23fa63d86a9ae601150495d56

See more details on using hashes here.

File details

Details for the file awkward-1.2.2-cp35-cp35m-manylinux1_i686.whl.

File metadata

  • Download URL: awkward-1.2.2-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 7.3 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.7.10

File hashes

Hashes for awkward-1.2.2-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 b0a2fa7938ffe752a038cace78ed494b5e713245faa1fad01b6b2bd2da90ad9c
MD5 78905037edabbb429c598da5be8967a6
BLAKE2b-256 8968ac25d93adb752784abd4ebc910fb60b206e2812e0f1502600cf6450aebfa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.2.2-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 7.2 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.7.10

File hashes

Hashes for awkward-1.2.2-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 9aecd837d689bb04b2b7b0c20e159ca12bea45ba8d61558c28fea3f1648660f9
MD5 e4cae74276e8328e0dfc92ac5768ba15
BLAKE2b-256 e5aad569e72e57e0cb2c840c495ace9cf1de4bc7b8d5c49ffb6d329f5658ea19

See more details on using hashes here.

File details

Details for the file awkward-1.2.2-cp27-cp27mu-manylinux1_i686.whl.

File metadata

  • Download URL: awkward-1.2.2-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 7.3 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.7.10

File hashes

Hashes for awkward-1.2.2-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 25700e0aecb6b26e2dd8c23cd6634307cb4fd0381ae37e070fd73b134e2b3c7c
MD5 cab6ff47e6956ef2019ffc35d2a73058
BLAKE2b-256 2b19fba35f1a1eb53ed68c429fa6cc431affaaf697c4c934ec494e87efc2e3ba

See more details on using hashes here.

File details

Details for the file awkward-1.2.2-cp27-cp27m-win_amd64.whl.

File metadata

  • Download URL: awkward-1.2.2-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 11.8 MB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.7.0 requests/2.25.1 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/2.7.18

File hashes

Hashes for awkward-1.2.2-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 2b4e473085f2bcf79c382727f77a46df05b776366c931c37fe540918f1246e09
MD5 245e36267230d4b321985d4ce0cfc30d
BLAKE2b-256 d8f93660b66b354a1d04ccd2e9bd44d24536e63870f8e79852190af2036b608e

See more details on using hashes here.

File details

Details for the file awkward-1.2.2-cp27-cp27m-win32.whl.

File metadata

  • Download URL: awkward-1.2.2-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 8.7 MB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.7.0 requests/2.25.1 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/2.7.18

File hashes

Hashes for awkward-1.2.2-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 fc79961321b672e59ef2b6a04e9a9da35b6c172d8393851871fb37f7193d5c15
MD5 0d0a1115caa1fd2a8512bbf33909ea1f
BLAKE2b-256 f79afab62388f93bfa79a7bbfc6f935a85989330143c9dc8c9eb5d2648942c4a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.2.2-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 7.2 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.7.10

File hashes

Hashes for awkward-1.2.2-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 49f19bcf61e65e45fe40e28a615a3cd039f2141a214ed0f5b155f1350e7fdefc
MD5 ae87f9c749f41a73cc7be01004709650
BLAKE2b-256 dfb73c07ccb68f3fd0f64562f45dddf3b5d218ac6de031cad36e6981f10682cb

See more details on using hashes here.

File details

Details for the file awkward-1.2.2-cp27-cp27m-manylinux1_i686.whl.

File metadata

  • Download URL: awkward-1.2.2-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 7.3 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.7.10

File hashes

Hashes for awkward-1.2.2-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 a0d5db72a39b63c9a152fc6a3c5229d238d702e7970ced14707309f9e25606ff
MD5 005d9ac3e104c5d7e6d6f83cd5759605
BLAKE2b-256 8614db5b8dfe1a55740c93249a2d90842174341eeb1b6f57b87b9881ec87fa1d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.2.2-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 7.5 MB
  • Tags: CPython 2.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.7.0 requests/2.25.1 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/2.7.18

File hashes

Hashes for awkward-1.2.2-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 04d6c573fcbffeb6f797b1c0171cccb3cb2d83e457378383a3f8020b4041cf9a
MD5 f937d0f6e8d967d83f0750ea76448dd6
BLAKE2b-256 56a71d33e7276ece1216317727c260ed917901d6c4ddd57718016e8943dec928

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