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

Uploaded Source

Built Distributions

awkward-1.7.0-pp37-pypy37_pp73-manylinux2010_x86_64.whl (14.5 MB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64

awkward-1.7.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (14.3 MB view details)

Uploaded PyPy macOS 10.9+ x86-64

awkward-1.7.0-cp39-cp39-win_amd64.whl (13.9 MB view details)

Uploaded CPython 3.9 Windows x86-64

awkward-1.7.0-cp39-cp39-win32.whl (10.7 MB view details)

Uploaded CPython 3.9 Windows x86

awkward-1.7.0-cp39-cp39-manylinux2014_aarch64.whl (13.6 MB view details)

Uploaded CPython 3.9

awkward-1.7.0-cp39-cp39-manylinux2010_x86_64.whl (14.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

awkward-1.7.0-cp39-cp39-macosx_10_9_x86_64.whl (14.3 MB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

awkward-1.7.0-cp39-cp39-macosx_10_9_universal2.whl (26.5 MB view details)

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

awkward-1.7.0-cp38-cp38-win_amd64.whl (13.7 MB view details)

Uploaded CPython 3.8 Windows x86-64

awkward-1.7.0-cp38-cp38-win32.whl (10.7 MB view details)

Uploaded CPython 3.8 Windows x86

awkward-1.7.0-cp38-cp38-manylinux2014_aarch64.whl (13.6 MB view details)

Uploaded CPython 3.8

awkward-1.7.0-cp38-cp38-manylinux2010_x86_64.whl (14.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

awkward-1.7.0-cp38-cp38-manylinux1_x86_64.whl (13.7 MB view details)

Uploaded CPython 3.8

awkward-1.7.0-cp38-cp38-macosx_10_9_x86_64.whl (14.3 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

awkward-1.7.0-cp38-cp38-macosx_10_9_universal2.whl (26.5 MB view details)

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

awkward-1.7.0-cp37-cp37m-win_amd64.whl (13.7 MB view details)

Uploaded CPython 3.7m Windows x86-64

awkward-1.7.0-cp37-cp37m-win32.whl (10.7 MB view details)

Uploaded CPython 3.7m Windows x86

awkward-1.7.0-cp37-cp37m-manylinux2014_aarch64.whl (13.9 MB view details)

Uploaded CPython 3.7m

awkward-1.7.0-cp37-cp37m-manylinux2010_x86_64.whl (14.5 MB view details)

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

awkward-1.7.0-cp37-cp37m-manylinux1_x86_64.whl (13.8 MB view details)

Uploaded CPython 3.7m

awkward-1.7.0-cp37-cp37m-macosx_10_9_x86_64.whl (14.1 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

awkward-1.7.0-cp36-cp36m-win_amd64.whl (13.7 MB view details)

Uploaded CPython 3.6m Windows x86-64

awkward-1.7.0-cp36-cp36m-win32.whl (10.7 MB view details)

Uploaded CPython 3.6m Windows x86

awkward-1.7.0-cp36-cp36m-manylinux2014_aarch64.whl (13.9 MB view details)

Uploaded CPython 3.6m

awkward-1.7.0-cp36-cp36m-manylinux2010_x86_64.whl (14.5 MB view details)

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

awkward-1.7.0-cp36-cp36m-manylinux1_x86_64.whl (13.8 MB view details)

Uploaded CPython 3.6m

awkward-1.7.0-cp36-cp36m-macosx_10_9_x86_64.whl (14.1 MB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

awkward-1.7.0-cp35-cp35m-win_amd64.whl (13.7 MB view details)

Uploaded CPython 3.5m Windows x86-64

awkward-1.7.0-cp35-cp35m-win32.whl (10.7 MB view details)

Uploaded CPython 3.5m Windows x86

awkward-1.7.0-cp35-cp35m-manylinux1_x86_64.whl (13.8 MB view details)

Uploaded CPython 3.5m

awkward-1.7.0-cp35-cp35m-macosx_10_9_x86_64.whl (14.1 MB view details)

Uploaded CPython 3.5m macOS 10.9+ x86-64

awkward-1.7.0-cp27-cp27mu-manylinux1_x86_64.whl (13.7 MB view details)

Uploaded CPython 2.7mu

awkward-1.7.0-cp27-cp27m-manylinux1_x86_64.whl (13.7 MB view details)

Uploaded CPython 2.7m

awkward-1.7.0-cp27-cp27m-macosx_10_9_x86_64.whl (14.1 MB view details)

Uploaded CPython 2.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: awkward-1.7.0.tar.gz
  • Upload date:
  • Size: 1.4 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for awkward-1.7.0.tar.gz
Algorithm Hash digest
SHA256 e4e642dfe496d2acb245c90e37dc18028e25d5e936421e7371ea6ba0fde6435a
MD5 df1e3d16cf42af4996663b00566a49a7
BLAKE2b-256 31fc832c64ba928b13009d927f1951196f400c0f2c5798eef6041013a3a88b3d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.7.0-pp37-pypy37_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 14.5 MB
  • Tags: PyPy, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for awkward-1.7.0-pp37-pypy37_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 148fe826e40a2bb360506ed42a9e78e24b4fd60772c57f89d66a1edb34610b69
MD5 0daa7db127c34b1bfd5231fab19ea5b7
BLAKE2b-256 ea0354855f3f98c2e9f17712785ab2d81303cd40980b023ea257300efe1490ea

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.7.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 14.3 MB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for awkward-1.7.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c30b5b92ca18e461e315473ca22de3677f691dbc76a07ccb39420e5631df469a
MD5 fd328641c23493f41e872af7d9d76ebc
BLAKE2b-256 4f9754413d8e59c6af2c11d0e0c21c23ae572abffec176ad8efd0016cfaf42eb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.7.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 13.9 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for awkward-1.7.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 9bd7ea9a4ff14d85b17c46264b32561eb0c72109be8b7189359e11a6e7c4ea65
MD5 d94b1274b3b823756ed5518b93139a86
BLAKE2b-256 93276dac03018423e3a12c1d2edda10cf8b2314d185a929197d33eaa9dec81d8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.7.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 10.7 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for awkward-1.7.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 668a663401240481c5dd63457c2860e4d70e54a1ebd7654fed894f607078bbca
MD5 204f04e0dd9e9cc369df3a4a23c2e45a
BLAKE2b-256 a1d7172e05448a4f9652e827e5284c215a65da9b933272e6e74a598ecdbc2dd6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.7.0-cp39-cp39-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 13.6 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for awkward-1.7.0-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6032e119b76e99ffae51f75fa64c8e974d98704b4269d14059270f8dd5f38e13
MD5 f34db4a83251301134e1b9abfec3d742
BLAKE2b-256 1813150d81f45db03aba7d1a6323edb4697e8c08fff77497f09d3cfd5d1fe290

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.7.0-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 14.5 MB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for awkward-1.7.0-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 ef6fda27004a089f37a2f9b2deb23a799c45e5455fcc5a15d94608dd775ec84e
MD5 4e50d80b5dec443d01f9a4cfd6c018c0
BLAKE2b-256 f3fb0dcf9abdbbd81986ece61232e6b96d7451301f52dd75496e5ab2871a13e6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.7.0-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 14.3 MB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for awkward-1.7.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a983e8b3348f4f40fb6220c906a50a01d390baeb389d37535fccad2b0e61d626
MD5 752e0ca6a98359a706368e7a1616e0d6
BLAKE2b-256 f45439adfd32327cdebe687da07f39821d6527e1f67584defa18c6909d187da6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.7.0-cp39-cp39-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 26.5 MB
  • Tags: CPython 3.9, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for awkward-1.7.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 69adbd994d1cfcb100e064d9b4e8111ac093185744ab59e6214fcfa1b63018c6
MD5 a33fb1a3768bb7d8060b130b84f11ed9
BLAKE2b-256 743c8b8fd4407884e05af52373d60ec7c321400256934f8d12219e55a6af9529

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.7.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 13.7 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for awkward-1.7.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 0bef337a0ea6b1ca2ae41bba14227eee58c191ff519470c175c11f0e7a8e4b85
MD5 2ec0cb45e3c760c13192de7bb57b663e
BLAKE2b-256 f08861cf411c4c6c513d5a063abb418d017583f263064e0f93c99a3d4b4a96c1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.7.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 10.7 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for awkward-1.7.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 623d6f2b393766b882645c823326303166169a2868416a884758f04c1750e61b
MD5 77b96828e6fcbdfbd253e4f13ba781ac
BLAKE2b-256 7eb6a65acf163b235832d27c5a263e8042b2992cc1fb79d76bdf7e0a9c331246

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.7.0-cp38-cp38-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 13.6 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for awkward-1.7.0-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 35b61c0b875edb7bc2f0a2548b1c91d7d456a562946782a5bb53f3107508c1d3
MD5 e37e70d38fb2b437b5affead227176fe
BLAKE2b-256 ae651fdd08ae47aca0fd679ff38b0d6c810e8a39ba55ead7aed0a7677d030abc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.7.0-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 14.5 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for awkward-1.7.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 4f7c70380797544a1fb006a065d04655c017e16ec3ca0fce7443cc496c375cb2
MD5 b0b6f83d4ef936a6b5759912c10bdd85
BLAKE2b-256 070e2389f14d00c1ea3c7d1a190ddeb7e365d6f246baf7c417880f6002098092

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.7.0-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 13.7 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for awkward-1.7.0-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 7f2a0d439106da4c079ded43a3c475f1597b0f3bdd4a4f423d765f2effc9d958
MD5 86976bc0a959b4849f3b0a72ffaf6cdb
BLAKE2b-256 c0b85f6c8143600c86fb9c6e7247bd5173d7967fa46766c5a56997f9f8464a10

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.7.0-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 14.3 MB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for awkward-1.7.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f2c55838bc73699f976abc1ae55a362f9c344ef684fdbbea52eaaf8e4c25f485
MD5 97575a1774586cd5b1ac53a96c2996a7
BLAKE2b-256 b6d0ab995eb00df68ff4233e1b84e86e7a97ff08fac52d3da156bd07f327d098

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.7.0-cp38-cp38-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 26.5 MB
  • Tags: CPython 3.8, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for awkward-1.7.0-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 55ecb0ecd4725de345ca61d80539f8f0966bd4e1b014b1f689b26786469e4886
MD5 4affc9003fcdff1e844d198ce640c0de
BLAKE2b-256 429052d9fc0d341e8dbfdc3c0577e9d1f58d6e3d075a1de7caa3a7c97288693f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.7.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 13.7 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for awkward-1.7.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 da8073e6480bc9cb5af0669a71906749f92347b6765dbc2587d43b0491481f5d
MD5 a542eef81babc5b2dd859e000716bf1d
BLAKE2b-256 b0c68ab1d55f579ebfabc16547c9281421cb7ec898cc747b0f751f432941b926

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.7.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 10.7 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for awkward-1.7.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 036ff59c0dd8caa1a95ab9c63c68c0884b28e71a8f2e324a2f5f838e291a428c
MD5 b667c2d43d0af055c26d7e929c3c28a6
BLAKE2b-256 598fc2d5ab7bca7b79edf8b90f76ae9cab0dbce29a66372768c32f4810d0d0d1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.7.0-cp37-cp37m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 13.9 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for awkward-1.7.0-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ba24585411d16f01313850b6b4815a7e2b1d60fddb33f7e97b13bba0fca44e77
MD5 7955c585a8aeea1f8239ff82522aad45
BLAKE2b-256 5e669372fc5ecf93f87a2280c32a3ac25dc9a813ad95d5afbe5a8132d2a089e0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.7.0-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 14.5 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for awkward-1.7.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 75b9948debdb76237ff2113dcec094c84c67a187e94e402668718e7198aafb7b
MD5 6a2201eef0b4d499b50931952cda84ee
BLAKE2b-256 40d92856455d0063d2c17c11301b48c86f33eee4e92fc4d3cf0d9e182575151f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.7.0-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 13.8 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for awkward-1.7.0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 8c65e846db02602eb8411751b6ae2ce3978d4ac2b1b46e5285e272685fbc129c
MD5 64e396dca4f00b0c12025fd3a78903fe
BLAKE2b-256 2074c3ed93a29dcd9813d337d7129c8414a827ffe0f129a7513bdd6eb8da38d2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.7.0-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 14.1 MB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for awkward-1.7.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6cdb4bb8ed7d9710864de774e75edcfdf46b75e4a9d977d1b595b2b5ce37b9ca
MD5 91794693f0dd61a432bcf45baa3ff279
BLAKE2b-256 261e1d2255e5acb7d35e4835f5372b0a4110f9effa2ff499c3715834c234787b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.7.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 13.7 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for awkward-1.7.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 84b0ffa5b437b89f1fecc32bbbebc2cbfe87af25d93ae1a7c558c94d2ea15cf9
MD5 2b3ddaf41a930f9e43fe3a2937cf82f8
BLAKE2b-256 24fac30c144dca4fa0aeef325099da627cb4e117af5a7e90eaf0c51504867996

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.7.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 10.7 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for awkward-1.7.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 7833252e3307c57f43fb7c9bf5f93619bd7f58976b341a89f2f050f2463c7e7a
MD5 eae35e9642876be3121904f2d88f8ef4
BLAKE2b-256 9cd5aa2e175185b96e9fdac90526629ba0cc0e9774ca19184e58dddb78ded921

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.7.0-cp36-cp36m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 13.9 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for awkward-1.7.0-cp36-cp36m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 959144dcbafc381c8c626091028ef3738b956bac2c723658ec458beccbb4de84
MD5 da222c21d3826f4312f9016592c32fcd
BLAKE2b-256 993935deda9f6bfb8715218d30ffcfe4fd62537122159b89ccb911e7d66904a4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.7.0-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 14.5 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for awkward-1.7.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 762a8d112c8a9584abbb9eb145bd0660e44065625a8ec170c73a0825bb82acff
MD5 5a966cfeea2868163696bffe80b5bbfc
BLAKE2b-256 7aaed257ca632d9ca971b816e7a1884d740821734e8335594939df9b77d12a55

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.7.0-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 13.8 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for awkward-1.7.0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c69d075fa1f1cd53a4c6e52fdb822c05824b9a7be70d5be78c2faad1cd3f8f25
MD5 681d244c2e04c07bba0f7ae374da430d
BLAKE2b-256 8ac0de512a83cf50d9462c1f39e088b52f3cf63c86a0de711f02e7f70ab9d1d4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.7.0-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 14.1 MB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for awkward-1.7.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3e0e5710b32fefae4457442765c6b2bc58d25298e98bcb68721076c6094b8b89
MD5 16be06c81cfb1e8e5f4eefac1b9dc39a
BLAKE2b-256 3540089a0bf542a9cd3230ecdee3fb9e59bec2a638e6eeab47708dbfb352601c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.7.0-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 13.7 MB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for awkward-1.7.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 bf51207b2576c7663a03057da276354d2329e533cf6ac2b042154dc93c191730
MD5 346af3c8b627c533ec7f8a52643f7ef7
BLAKE2b-256 7bd8a04ba09085312d84b9d1819f62d4baa3a5092a74cba254d9d64e7fdd3062

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.7.0-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 10.7 MB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for awkward-1.7.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 394911006a590a0653e52d44da879452fd5f08ba152e6926a09928efe50c4f1d
MD5 f2c470ef64d49f94e970a5d5cc354759
BLAKE2b-256 8c38e672d35afd6dfae20fbfcf1715b31ac18088ee89468e8f638f62d4a5ebbe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.7.0-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 13.8 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for awkward-1.7.0-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 8ba33f56c5b09bf28ab8a068d4b4ddb868b92b1459a2528d2ae84da22718d343
MD5 7e5854378dbc0de304c664d9b5af336a
BLAKE2b-256 12a7ff9eb59740cfce6130cb56d41a8a77e08490518be1c00c7d372e62de340f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.7.0-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 14.1 MB
  • Tags: CPython 3.5m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for awkward-1.7.0-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2fd2c195e324bce94d6531f2a090d66d983a227a8ea367102490f92477caf964
MD5 3c839de2d2f10724124bdcd1a3dbad23
BLAKE2b-256 3249d485e3f3c07d2b93f06ffe53aca86c38c01ae340cb7ed6f9fb04b4e8d690

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.7.0-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 13.7 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for awkward-1.7.0-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ab8df69aab809a7b7b06f833fc2f8817c822bcf228e99bc2b9fcde6d7292f01b
MD5 cdb7716d9669a393803283ca55d68efa
BLAKE2b-256 750450aa6af8e38066c90f6e1da241c17f6cd522643ce6d587b60ccf43f15fe5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.7.0-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 13.7 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for awkward-1.7.0-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 dd6b251b092e47500b03261f0007120131db4784016a7a20fce1d1dd5ef879c5
MD5 75d05da1da342cb70e0efb30068216c9
BLAKE2b-256 8e5e1e987a494f8091e3cca9ef54b779e8c373e5939b0b85ff5ed6b21e4a0ecd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.7.0-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 14.1 MB
  • Tags: CPython 2.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for awkward-1.7.0-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 442872cb534d63d0a31121bd5d9c58541a2d752d5088fbf50d70b058a58e4fc2
MD5 7eaf0a79a700689f312d8b8e6562de9b
BLAKE2b-256 67dfea81598429ca0d76755857ec09d8a375e4fd52da570cc58a48171cb77e86

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