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

Uploaded Source

Built Distributions

awkward-1.1.2-cp39-cp39-win_amd64.whl (11.6 MB view details)

Uploaded CPython 3.9 Windows x86-64

awkward-1.1.2-cp39-cp39-win32.whl (8.6 MB view details)

Uploaded CPython 3.9 Windows x86

awkward-1.1.2-cp39-cp39-manylinux2010_x86_64.whl (7.6 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

awkward-1.1.2-cp39-cp39-manylinux1_x86_64.whl (7.1 MB view details)

Uploaded CPython 3.9

awkward-1.1.2-cp39-cp39-manylinux1_i686.whl (7.2 MB view details)

Uploaded CPython 3.9

awkward-1.1.2-cp39-cp39-macosx_10_9_x86_64.whl (7.4 MB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

awkward-1.1.2-cp38-cp38-win_amd64.whl (11.6 MB view details)

Uploaded CPython 3.8 Windows x86-64

awkward-1.1.2-cp38-cp38-win32.whl (8.6 MB view details)

Uploaded CPython 3.8 Windows x86

awkward-1.1.2-cp38-cp38-manylinux2010_x86_64.whl (7.6 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

awkward-1.1.2-cp38-cp38-manylinux1_x86_64.whl (7.1 MB view details)

Uploaded CPython 3.8

awkward-1.1.2-cp38-cp38-manylinux1_i686.whl (7.2 MB view details)

Uploaded CPython 3.8

awkward-1.1.2-cp38-cp38-macosx_10_9_x86_64.whl (7.4 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

awkward-1.1.2-cp37-cp37m-win_amd64.whl (11.6 MB view details)

Uploaded CPython 3.7m Windows x86-64

awkward-1.1.2-cp37-cp37m-win32.whl (8.6 MB view details)

Uploaded CPython 3.7m Windows x86

awkward-1.1.2-cp37-cp37m-manylinux2010_x86_64.whl (7.6 MB view details)

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

awkward-1.1.2-cp37-cp37m-manylinux1_x86_64.whl (7.1 MB view details)

Uploaded CPython 3.7m

awkward-1.1.2-cp37-cp37m-manylinux1_i686.whl (7.2 MB view details)

Uploaded CPython 3.7m

awkward-1.1.2-cp37-cp37m-macosx_10_9_x86_64.whl (7.3 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

awkward-1.1.2-cp36-cp36m-win_amd64.whl (11.6 MB view details)

Uploaded CPython 3.6m Windows x86-64

awkward-1.1.2-cp36-cp36m-win32.whl (8.6 MB view details)

Uploaded CPython 3.6m Windows x86

awkward-1.1.2-cp36-cp36m-manylinux2010_x86_64.whl (7.6 MB view details)

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

awkward-1.1.2-cp36-cp36m-manylinux1_x86_64.whl (7.1 MB view details)

Uploaded CPython 3.6m

awkward-1.1.2-cp36-cp36m-manylinux1_i686.whl (7.2 MB view details)

Uploaded CPython 3.6m

awkward-1.1.2-cp35-cp35m-win_amd64.whl (11.6 MB view details)

Uploaded CPython 3.5m Windows x86-64

awkward-1.1.2-cp35-cp35m-win32.whl (8.6 MB view details)

Uploaded CPython 3.5m Windows x86

awkward-1.1.2-cp35-cp35m-manylinux2010_x86_64.whl (7.6 MB view details)

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

awkward-1.1.2-cp35-cp35m-manylinux1_x86_64.whl (7.1 MB view details)

Uploaded CPython 3.5m

awkward-1.1.2-cp35-cp35m-manylinux1_i686.whl (7.2 MB view details)

Uploaded CPython 3.5m

awkward-1.1.2-cp27-cp27mu-manylinux1_x86_64.whl (7.1 MB view details)

Uploaded CPython 2.7mu

awkward-1.1.2-cp27-cp27mu-manylinux1_i686.whl (7.2 MB view details)

Uploaded CPython 2.7mu

awkward-1.1.2-cp27-cp27m-win_amd64.whl (11.6 MB view details)

Uploaded CPython 2.7m Windows x86-64

awkward-1.1.2-cp27-cp27m-win32.whl (8.6 MB view details)

Uploaded CPython 2.7m Windows x86

awkward-1.1.2-cp27-cp27m-manylinux1_x86_64.whl (7.1 MB view details)

Uploaded CPython 2.7m

awkward-1.1.2-cp27-cp27m-manylinux1_i686.whl (7.2 MB view details)

Uploaded CPython 2.7m

awkward-1.1.2-cp27-cp27m-macosx_10_9_x86_64.whl (7.3 MB view details)

Uploaded CPython 2.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: awkward-1.1.2.tar.gz
  • Upload date:
  • Size: 997.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.7.9

File hashes

Hashes for awkward-1.1.2.tar.gz
Algorithm Hash digest
SHA256 4ae8371d9e6d5bd3e90f3686b433cebc0541c88072655d2c75ec58e79b5d6943
MD5 111905c6720f7a439aaaf38d07da4472
BLAKE2b-256 8882f13c3c09b1295d1a4e5d449eb0d27a2d4513429f12059a3ca7c737ebe478

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.1.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 11.6 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.9.1

File hashes

Hashes for awkward-1.1.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 8225584ebf9e70107e9906e04bdc4f861733194ab15c38299220e503da11501e
MD5 278f451edcf87360acb9d17450509aed
BLAKE2b-256 9a3f5d149ff2d4667b829b44f77e569f8dc0a07ad6d3f17af848ba0228682f9e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.1.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 8.6 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.9.1

File hashes

Hashes for awkward-1.1.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 995f5ee507c166d668c5dab5923b12ec4136c29f1ff600c4593de53080eccdd4
MD5 fb86f5f8557d4e96c214b5434e172d4c
BLAKE2b-256 40c45f3b8190644decc75f026ff58f6dcea288c1d9e541a45583440ba6c8c691

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.1.2-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 7.6 MB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.7.9

File hashes

Hashes for awkward-1.1.2-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 92092be588d1a273a100cdadf5dfbadc717298d5aa5384975ddb8e43595c5513
MD5 baa1dda3ad38a7a90df1690fce96419c
BLAKE2b-256 11650b21a93a8f77fb8bbb2fce8c33ec733ae86a66781307a10b9c3425926f99

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.1.2-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 7.1 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.7.9

File hashes

Hashes for awkward-1.1.2-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 672fa8ddc75103f891437676789c1746c46e683a60a2af170c8e584cb8f4e301
MD5 82501572e5ed16de959eb88697b99d0d
BLAKE2b-256 87b4095e44cf457c469db3cb8a937a45fd401da6d5d82f62d015b19ea3eea54e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.1.2-cp39-cp39-manylinux1_i686.whl
  • Upload date:
  • Size: 7.2 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.7.9

File hashes

Hashes for awkward-1.1.2-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 8b4eee661a8d6c40f9628238a95c4ea5e20d2c25d2693cd12517678e56eb81c8
MD5 58b1df695fd8136766441fb86003630c
BLAKE2b-256 bb1bf51e1bd351055e25c96015727c60cc6df827f105d6138739fc4cb5fa8a25

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.1.2-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 7.4 MB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.9.0

File hashes

Hashes for awkward-1.1.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 35930ff2a1381c4b557d5638957144a793880fbe837729d0728a46d74e4bbe4c
MD5 010160a5257160c2fc85f4c3d639ccfb
BLAKE2b-256 81bb5984af227f1f66ebd1d4a7999bd66cd5ae96319c49682e50cb62b3648a96

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.1.2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 11.6 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.8.7

File hashes

Hashes for awkward-1.1.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 45f88bbf2cdfe661e7a22894f67530b1d9e3e948b148e7896b41d51fd9db865d
MD5 5fb053b6e3de8ef9a6b907b4c5483c14
BLAKE2b-256 5dac75e152801581197f2e35de3cc15486530b97356879ffd298f80a8d617005

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.1.2-cp38-cp38-win32.whl
  • Upload date:
  • Size: 8.6 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.8.7

File hashes

Hashes for awkward-1.1.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 e84da027871f92f208b31854fb13ae675cebf3d51089f7b37c4bdafd5f7a84b5
MD5 e9800aef9cd5efb5661857e4feb09977
BLAKE2b-256 48a1d3602b93da1495708283d93dac61394a53dfe0d64da409a38e308bbcaba3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.1.2-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 7.6 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.7.9

File hashes

Hashes for awkward-1.1.2-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 abc5a4f4f4449a87a0adf043822c6249d5e8cb114e276edd4c9826ad015358bf
MD5 9840b0f31559668cf05981bb6776ba0a
BLAKE2b-256 995da0fea22dccda14bb0ecfc6b553cd1225b164064161bab6c65c0c9c0a9bd2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.1.2-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 7.1 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.7.9

File hashes

Hashes for awkward-1.1.2-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b027ac31b0455577cb89777f4b74bf2f8e8333f0b10c9111d4c512d501e5e5ff
MD5 921b8afd72f9b363a6355b17cf919817
BLAKE2b-256 040dbe2cd35bc46b95a802ab296ff413c8632920f2e6cf7a23ae9cb3e2d93dba

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.1.2-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 7.2 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.7.9

File hashes

Hashes for awkward-1.1.2-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 5ff20f5e1b430c19f158cc5ff47dc85c9d7941c5d4661062780ab28729410b48
MD5 173d95d9823da16cce7059a29acc5f2f
BLAKE2b-256 4a4047da880c49dbc90fc0fa8822080c798c40a0b347e73d11440c5e0ed27aef

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.1.2-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 7.4 MB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.8.6

File hashes

Hashes for awkward-1.1.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 649e01b549795ef40c2aecc2bd5bdeb0337c15e94b6c3e090dc313396db2cd4a
MD5 fbbe15b02c8c7650738615bfce0f3fd2
BLAKE2b-256 f1813cd36396249e2b149fd3c44714dfdf7fee9a78570ab0415f6ca3055a9897

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.1.2-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 11.6 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.7.9

File hashes

Hashes for awkward-1.1.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 9d9e6f084729a7d0dd033d023424a064c55754ac5b7804ccf0cb7dda90d78145
MD5 085a8c2c7e12fd8454c5c624222a6bbf
BLAKE2b-256 5a452433736c5fb6136b0c0047788e9de9ea36b3c33890da94ed8eee3698ada3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.1.2-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 8.6 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.7.9

File hashes

Hashes for awkward-1.1.2-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 b63f5acf940575fcb201a5ac8c35c96f16cef7623cfa17a6e9cc1b9f572a747f
MD5 765cdbf3aa431434b753cfb1fdf412e1
BLAKE2b-256 6d4d3d51f16fd08c7075fc1d20d01413f66c6369ef5b929c45588ac1e7ebd8ad

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.1.2-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 7.6 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.7.9

File hashes

Hashes for awkward-1.1.2-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 d8c18b36f369373ea3e41bd5d2ec3dd5365003b752c1c0f73489d54d3a79af44
MD5 d52e4635fa0e0a82bd31ba3f8c6206f3
BLAKE2b-256 d454575f4e8d28de53775e85b3ce3d79a0eb07b02aa1fd94f050b76bb26f5045

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.1.2-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 7.1 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.7.9

File hashes

Hashes for awkward-1.1.2-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 49b84872ad6b7d32a94fe716779f5f33beda1af1bfd9fb31f98469e0e88fe3f5
MD5 120253ac844642b918bddf378c870ead
BLAKE2b-256 f260ffb261aa29f5f06651eb637c8b357fa8d90d27fcbb6e02626e4ea6687ea4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.1.2-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 7.2 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.7.9

File hashes

Hashes for awkward-1.1.2-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 27ea6b736e0ae7eec8d1b314e1eaae4cedcb08ffcb75656f3d51b6ca1f605234
MD5 495d0efd8eeb90ca6bffecaa1208e474
BLAKE2b-256 e7efb887c1110fdb3ae98d9c86b3569606ea296179ebb9ab710dfa69c8323543

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.1.2-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 7.3 MB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.7.9

File hashes

Hashes for awkward-1.1.2-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3ebfe63e4d77d533d58b60d3ee2c7f42e2022bd82c1d95be54482d83360c96f4
MD5 6994e5f9cce9568a1acf1f325e9a652f
BLAKE2b-256 f5f0a9725fda4034df234c35d766228b01b972949682ddc9d1117722f30b83b3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.1.2-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 11.6 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/40.6.2 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.6.8

File hashes

Hashes for awkward-1.1.2-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 bca47f34534f38a747842542c7c7af3d1ec7bc9531987b12ee1b13318f733f4c
MD5 04d68f3a635344bc34f4a0f0148f6e7e
BLAKE2b-256 0dd8a0787230bf7f92057f8759436839d2234fc1531f81c7a220c9177e6477d4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.1.2-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 8.6 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/40.6.2 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.6.8

File hashes

Hashes for awkward-1.1.2-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 84f7d65e0773a660b0f6f141851340f37521041b190ffa69b38082e2c849c3e7
MD5 ef6d6553d6bee232fb4e1f4eabf1c655
BLAKE2b-256 3687488a4a2fbd450119b59bfb6e4bc08dddf87a26a4628547f66fdf718c159d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.1.2-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 7.6 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.7.9

File hashes

Hashes for awkward-1.1.2-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 9fc31b0aaa5854da378ddea930d41036e7ef880475a32db9d6bea6f57486da23
MD5 fcb22acf849f98bf140aee370c5692b8
BLAKE2b-256 14f878f86fa67b40b7791ae7324e2feb949d536b984f0232a6f2c1d11a48d97b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.1.2-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 7.1 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.7.9

File hashes

Hashes for awkward-1.1.2-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 aa9a03017abf9b5dfaa14714ca04dd48700d45b9baddd58a5820d511c832c70c
MD5 0d3193c3e79857c869dfb3f910f2ecff
BLAKE2b-256 bb5a6f9b743d366152136229436e9f632a4c47d353f12f3b1fbe0f3c9454fef5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.1.2-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 7.2 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.7.9

File hashes

Hashes for awkward-1.1.2-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 9d72e79f122290cc3807597dad40bdca4dff275c198eb51ad600733114b1d598
MD5 1b37c3252cdd185bc8b80ed612ae88d2
BLAKE2b-256 a2cfd534f6276dc17faf891590664eebad9700cf5e57401b9705dc5352ad29b2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.1.2-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 11.6 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.56.2 CPython/3.5.4

File hashes

Hashes for awkward-1.1.2-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 9758f54d2fd3af1c3f012384409ef28f5b8eda87c640c15e3b3d486096e6f9e5
MD5 c3082cd7f6c4f89b2bdc0d79fc2c248a
BLAKE2b-256 1556ecaedfddf415044628fd2023406bb6bd236368f38abefb71a707042d9749

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.1.2-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 8.6 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.56.2 CPython/3.5.4

File hashes

Hashes for awkward-1.1.2-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 280d307e884daf2477fc1fefd3538587ab9176d249d59c02dc12e778333d18cb
MD5 ca5377be64c25b5827531dbe534837a8
BLAKE2b-256 96e21b13d34de998852f75629623b3286cac17e982a393bcebb06f6c896154b5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.1.2-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 7.6 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.7.9

File hashes

Hashes for awkward-1.1.2-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 eca7be661b595e379f99b43ae4ffd2cb6b7c24a49373bf9653ed143a62e5caed
MD5 175ffbfb0054b1feceb489a21b812dba
BLAKE2b-256 5415b6da29ff43c3d110d422cfd45f3686e025597f8e079188f6f5d67c21ef23

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.1.2-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 7.1 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.7.9

File hashes

Hashes for awkward-1.1.2-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 be445e3b668392d3194258dd93e918a2594df5605948e6f27dbcded8894ddd5b
MD5 6d319feeedcde87a4ce8998306ac098e
BLAKE2b-256 a6c576bc4e445d4756eb6109dd4247aa7701b75fa6ce4c2cce19b406893b13a7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.1.2-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 7.2 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.7.9

File hashes

Hashes for awkward-1.1.2-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 224afdaab5dfcdfdc7ad1bb65ba696bf172076ec070118bf62e21b261e3fed81
MD5 485db68dad3a13fbd659cbb1e05a6a67
BLAKE2b-256 c2fec2238c6927bb1c2b5631bcf254cd3545255fe22c3be2e7e6588f6d22f470

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.1.2-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 7.1 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.7.9

File hashes

Hashes for awkward-1.1.2-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 57d58d5352bd38eec2e62a1bb8ed2aedfa2be8bef56e3defd70d174c838b311a
MD5 f2cf0272aed3800e8607052b3cacc5f7
BLAKE2b-256 31e753eeb975841d514ac72661fecd21814138e4e85aae9ccfdbd147a5256f20

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.1.2-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 7.2 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.7.9

File hashes

Hashes for awkward-1.1.2-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 7f25fd669c4ada72a06e0e4dc839542aa8c2e61d8777e20b5b80b7be8bf04a4f
MD5 1fee314c5a0a97c8ffd9608f3ace64ee
BLAKE2b-256 307342004fcc6262dede0d99be472a3ed95a8d5b5e347782367a116727d78a54

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.1.2-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 11.6 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.56.2 CPython/2.7.18

File hashes

Hashes for awkward-1.1.2-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 0f2a6a09489d00df07d97fd61e7a8e68b2ca5b5aa81d3dabac474bf745f87643
MD5 032aaea9bb8552a0b70d90bd1f11ab56
BLAKE2b-256 77d9a63cb6b6a13774ded422281b45d39c3ad32843f7eb7f5cebbbcbf960d2e1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.1.2-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 8.6 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.56.2 CPython/2.7.18

File hashes

Hashes for awkward-1.1.2-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 49f54f1189d21516d62eab1241963a7e40936884e3a52c3e47d2f4fde768c39a
MD5 e859ec7a804a97f951554f077fcba9a2
BLAKE2b-256 5927438999dd9030dec9c82db3da7b82022f41655d57eea140e1bc04358ce6d6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.1.2-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 7.1 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.7.9

File hashes

Hashes for awkward-1.1.2-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 63150fb5d3f0889f3709e292ed778cf860f513a4007aea2579c4567b4678384a
MD5 8ef27277ff6a83d44a3a154e0a8db73e
BLAKE2b-256 c5849a5d95008880798d9a91d549caa9d4d59d18ffd51915e860caa9c70eaea9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.1.2-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 7.2 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.7.9

File hashes

Hashes for awkward-1.1.2-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 6573e8f39f44b76a75e580d5c006ab4e6a677505de532342d129994353f6f8fa
MD5 c45a9b495956b0161c35fbf7404cd1a3
BLAKE2b-256 e600f453b64d6e775d4b37f76aa5f026d52f71e455c35162c263547d1afc971c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.1.2-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 7.3 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.56.2 CPython/2.7.18

File hashes

Hashes for awkward-1.1.2-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9ebeb47acc7619ce2b93814814688bb569986ba69037a93af22debc52e802121
MD5 240e35f5fa0074c071284b94cf73f3ed
BLAKE2b-256 610583ae2798f51d5e4dbc31fec23c63bee10df3b7cd264ff77497c631fbe704

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