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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.9

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

Uploaded CPython 3.9

awkward-1.2.0-cp39-cp39-macosx_10_9_x86_64.whl (7.5 MB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.8

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

Uploaded CPython 3.8

awkward-1.2.0-cp38-cp38-macosx_10_9_x86_64.whl (7.5 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

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

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

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m

awkward-1.2.0-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.0-cp36-cp36m-win_amd64.whl (11.7 MB view details)

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

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

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

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.5m Windows x86-64

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

Uploaded CPython 3.5m Windows x86

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

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

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

Uploaded CPython 3.5m

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

Uploaded CPython 3.5m

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu

awkward-1.2.0-cp27-cp27m-win_amd64.whl (11.7 MB view details)

Uploaded CPython 2.7m Windows x86-64

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

Uploaded CPython 2.7m Windows x86

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

Uploaded CPython 2.7m

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

Uploaded CPython 2.7m

awkward-1.2.0-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.0.tar.gz.

File metadata

  • Download URL: awkward-1.2.0.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.59.0 CPython/3.7.10

File hashes

Hashes for awkward-1.2.0.tar.gz
Algorithm Hash digest
SHA256 11ef6f467fc2bdb31af7a2dd0bc08014bc15b8a0f0fdbf3a272b118068824bbf
MD5 72d20c4eea0c29c908c1fe9912ea2d20
BLAKE2b-256 8df174927c6d5697ecc377d300bb78f24f1879b6b6475af6b179ea90700021fa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.2.0-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.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for awkward-1.2.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 80c056a7cdb9402786260c6daaefba146e670bdd493813afd66aa7221a2aa0ad
MD5 f7e86e1fbbdae23ef6c36b07fcf7fd4f
BLAKE2b-256 21f2ab4e0dbda635f6c6cbd0367ca4087188430527292d100bfd81bb29c51e64

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.2.0-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.59.0 CPython/3.9.2

File hashes

Hashes for awkward-1.2.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 8aa80f1dc282a58a7c17aa08479925d14e113b93e6e8131363662ce277b965ad
MD5 2f4ede753af408feeef9cbf3aab1022d
BLAKE2b-256 d488267a7428388c94c698acfeaa79bd82ec356e3332699a994126334edab63a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.2.0-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.59.0 CPython/3.7.10

File hashes

Hashes for awkward-1.2.0-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e97bb08e004c38b674576f30b19d76af2bf583d9c5f001840fbbb4bebc17f077
MD5 c4781afd43fd30e3ed7b5efca1fc62ce
BLAKE2b-256 24b01c58fc8e8a1e94122e2300da894a48efe0df3d4feee5fababdafd18c6192

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.2.0-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.59.0 CPython/3.7.10

File hashes

Hashes for awkward-1.2.0-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e352db847d0e5efd0e0d7c175d51d7abff1fad2f70506d153f10dec378242a0a
MD5 b5bb4163bf24c06c9628bff3d3d636aa
BLAKE2b-256 e2c19ce465962167b0673b3b145049634139c4ea5e8b30c9608ddc34774d7917

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.2.0-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.59.0 CPython/3.7.10

File hashes

Hashes for awkward-1.2.0-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 d63abaf9e44e39ef72ad3cbcd98d63798e45c774c715716333fa0c033ec58f78
MD5 9bcb6078a9c084ead2fc7ccd659ae44d
BLAKE2b-256 6224426d28669bd2239c4eedb9057c6c9de70cd4a19689770c9a78acebb9ba27

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.2.0-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 7.5 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.59.0 CPython/3.9.0

File hashes

Hashes for awkward-1.2.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0d162fc737f1f9b16103e22c01e7f003d66cc1309b8c902195305695b77ef4dc
MD5 a065e684c5823ce2bb33109034ecdb2f
BLAKE2b-256 e88d4410d32b09e99e9772cea21b5cee3ec85d959754efae790dccc5bf00a364

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.2.0-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.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for awkward-1.2.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 b1c84cc3197d3350246081a50fba9e6d5831983155feaf256085c08f737ff33a
MD5 106c1a41c9280f95f38ae0a929d1478f
BLAKE2b-256 db4546e895cbb860627e299e07f3d563d95b27beaef160d568680cbe5e6797a0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.2.0-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.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for awkward-1.2.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 0efe48a9aa79b36bed19718b46f61b770be22820feaf9b09ecf980779c4dd6b2
MD5 e5d25dd56d1b015f7b38fcae39cebd01
BLAKE2b-256 0bfdec557c3d5931aa57ebd965d12da9834d24eb26c3624302318699504e3bdb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.2.0-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.59.0 CPython/3.7.10

File hashes

Hashes for awkward-1.2.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 c4d028223965a1d79aaefb8c2899d164a398501a51ff85fc1ffbdcb4c4816de1
MD5 61dd7bf6d73bdfce6bbffeb60b07db44
BLAKE2b-256 1a594a0320dd53b53bf1639655377a6f2b3f4d2a1ef86ca0067b4ff5c684ce6e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.2.0-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.59.0 CPython/3.7.10

File hashes

Hashes for awkward-1.2.0-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 fd1e8e1e9e8ea7d2d50ac250e8e1c34f5af40b56a9bb17709e7fa5c5a253e4c7
MD5 d55803e67f59c57ed80bb3538be0d862
BLAKE2b-256 cf5e68b1ac6821b9db727b4d07f83e4c8fabcd6d4d3528e668503ac9690dcd1b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.2.0-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.59.0 CPython/3.7.10

File hashes

Hashes for awkward-1.2.0-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 d6a7debaf2fa42cdac0cf6892083f51393a045d4bdfc3f45343c00c59f6e2b8f
MD5 1952fd3a2b077c43355453e32b667517
BLAKE2b-256 28ffd6bac8ea8fa997be25ed336c7648200e7e99383a90f7139632e9aadda39a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.2.0-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 7.5 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.59.0 CPython/3.8.6

File hashes

Hashes for awkward-1.2.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7820a46f45d94ade7772b6b2df4626cd00f7d6a8be43d3295943c296d4a06af2
MD5 c5225c5ef86bd0b58ec6054a7e9dee6d
BLAKE2b-256 11b7a6c0d75b317338c85f736d1031b346ee7f38df9fa6f57b856f101f8a90f3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.2.0-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.9.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.7.9

File hashes

Hashes for awkward-1.2.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 71f48d09251fdc7de172893d598dea5da2e1b422aab399761aac68aa3bef853b
MD5 4b314e83a9316c45ddd8d3a96c7a68ab
BLAKE2b-256 c6609c281fd1ad7a63e9f509f4b8f527b2d55e2ebb3509d04fe644a9949df032

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.2.0-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.59.0 CPython/3.7.9

File hashes

Hashes for awkward-1.2.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 a9df0c1f27b848cc4af664b7dc657469699398616a6af423b7589a87767c8e80
MD5 6a78b94daa5985d51fc3b1fc6789192e
BLAKE2b-256 5ae7523f1bc16e3526a9cc8721a5653fdf00885697f12edb831622e377e238d2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.2.0-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.59.0 CPython/3.7.10

File hashes

Hashes for awkward-1.2.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 38f691182235ca441845bd52e32d0db3308de647e155fb1abacfcd017cdf8487
MD5 0fd19eca3c132f0edbad09a9eaa6667e
BLAKE2b-256 c62cc7f15b1bed7ceaa05b733cce00b3a3b88cfceb534ed4096b0591a88e86c8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.2.0-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.59.0 CPython/3.7.10

File hashes

Hashes for awkward-1.2.0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d9e55f79a76c2c0930fc6b170707bd809807368ab50e8759c2b29ef550680489
MD5 b56c672cf73f3987a0cb8abea0afd5b2
BLAKE2b-256 df47279acec1b0d84d43b9b904f1269003ab6a8e2dff9f710353d2f86c3d019b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.2.0-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.59.0 CPython/3.7.10

File hashes

Hashes for awkward-1.2.0-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 a21d61e87ce7098c109ef8cd048f8885c223069e2dd2be00b11f42779e781135
MD5 f6be0d0115642c7135700d4f23f92815
BLAKE2b-256 75192944ac39919451d67bc6a7f24cd54d38534edb830281a81f85e02480f6d5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.2.0-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.59.0 CPython/3.7.9

File hashes

Hashes for awkward-1.2.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8a7ce89439b838faebc3af655777cca0a2825c2fde456a5406b9ae913bd80ffd
MD5 33cd7e075d88da5578e915a932056ab1
BLAKE2b-256 fb90ce2b978a433cf529ebe73c511456e9f93e55b37b7f7d2e84616fff1af487

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.2.0-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.59.0 CPython/3.6.8

File hashes

Hashes for awkward-1.2.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 ce3cff4ccf3214adf5937bf7c83dd9a6e79f70552817f66cb90bc2dc08c242d7
MD5 27f08afb02f41303c88fd2d0d2f118c8
BLAKE2b-256 f52b11ba74e1953af8dd1e7ab618e34383294c35b5c10ee0db2091947cbcebce

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.2.0-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.59.0 CPython/3.6.8

File hashes

Hashes for awkward-1.2.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 0e803e5271f0fa26cb87e6f55be11c9b72ad518f5bf76deca9066e03d9edf635
MD5 4c10abf71dbfe4e24c3ae593ef0b0e30
BLAKE2b-256 97bb630a0cf74ce227c1df7ac9fcf9fb9d1d8477d8811cec5af710961e5e6322

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.2.0-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.59.0 CPython/3.7.10

File hashes

Hashes for awkward-1.2.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 ab658479a31a239177737e541822067ccf6c8ff3a5f7a6a0ed4e27055dc5817d
MD5 565510c2bfa15f31930dddf707ec46ab
BLAKE2b-256 6bc8dadbd98ec59b7bfb796010db772d3944bcca70076e42246acce02f485995

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.2.0-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.59.0 CPython/3.7.10

File hashes

Hashes for awkward-1.2.0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 2beff2be715e6c6e41fbe7def7947217178484f8c7eebd69e412f19b2eb43160
MD5 a2424b0b209c7a71ffcedcc4a6228960
BLAKE2b-256 c2e0e4d7ad394b34dba9fdac2ce65601fc4082f0225881079259ed3dcd11f1f1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.2.0-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.59.0 CPython/3.7.10

File hashes

Hashes for awkward-1.2.0-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 3398b9a7dcba9eca5a652d20f5327ebd24d06ab5f50db4724111de1c1faa45cd
MD5 71c50855d93cf3824948e11109c09e9d
BLAKE2b-256 90dcdc772f845276b92fa5448f4b44f8f4c9ab7d1423a25fb2179b11de3e6298

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.2.0-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.59.0 CPython/3.5.4

File hashes

Hashes for awkward-1.2.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 3291206eb3513f521745e3ec05eb6a41f74ee7c919a68643217f2aac3c12baf2
MD5 0f9f9acb5e2a6be28d671619f27fae27
BLAKE2b-256 321566344c4f062c8a2629456e20fad1f1144df458fc74d812b58712086f5b9e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.2.0-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.59.0 CPython/3.5.4

File hashes

Hashes for awkward-1.2.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 e74f3b9e0379e99e35e220b26eb93984617bf165cfac7611c380fc6b06d37280
MD5 8aab1965b4da649e20107b7c89ee23bc
BLAKE2b-256 38b28e09d98198e2938037e656b8465e5132712538a5764b70b188e932311ece

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.2.0-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.59.0 CPython/3.7.10

File hashes

Hashes for awkward-1.2.0-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 0150ce938a354341a29ef901a708cb660510ab2a8eb007b2e7163f97ce8d0c50
MD5 34d0a6bd31ad0bbd5d3644ed413c902f
BLAKE2b-256 749846e7ee65f179bf8052888a3a4f52f3b1a5fbf1e05eb6b177ec8f1f86ad76

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.2.0-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.59.0 CPython/3.7.10

File hashes

Hashes for awkward-1.2.0-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b24105cb07cadd9b5e1a9d69ac0cef1649a36972f0810dbc6ccdd5282160ca5f
MD5 6a0af20efdedd869cb5a11fb0f8d49ee
BLAKE2b-256 31451cc691820cf58ad7cf99289fe02937c187bf81a9d8cb4e104d025135174b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.2.0-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.59.0 CPython/3.7.10

File hashes

Hashes for awkward-1.2.0-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 e73e74e7e5e6afe9d926050ad0ed6c65ffc9e63ed43c3a5e6de76db1085825b9
MD5 c0e0bdc7c7909f53b74463f1d6c8ebda
BLAKE2b-256 99d0b7093a9fb1f6c141cec7b56cde48ffb0fb72c9bb9479b439b3a5ee5e6218

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.2.0-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.59.0 CPython/3.7.10

File hashes

Hashes for awkward-1.2.0-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 854a5543e8c70ad8443c844c0742f227736d27c4bd109ca11c571c303f6dd232
MD5 f75e48832e10997ea04eff8e873c553d
BLAKE2b-256 34a0b2bd15679b96d1e455379fbae6dbbf6d53e0d96a8596aa633c36e2ca10ec

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.2.0-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.59.0 CPython/3.7.10

File hashes

Hashes for awkward-1.2.0-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 d99013b950d7849de85b9b6a00b454c761ce986b3fe5fc3224180db2c9223a27
MD5 a71b8ee96b328c3a4d74aee791279c1c
BLAKE2b-256 52486a518d094dc6250e8f7b78b40600e3f6ca3278ca77872460eff117426a25

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.2.0-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 ff56bcbbda15069b4492049373ad8a137810b6c1f8e84d3d0cf34d707e464205
MD5 b8e74cf9c439e9ad9607b964f14178bd
BLAKE2b-256 603eb7bdd31249ce698e9df11121f005960335fd47756d6292f9ad0278d22949

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.2.0-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.59.0 CPython/2.7.18

File hashes

Hashes for awkward-1.2.0-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 8e7dc54126cc8f926c30b98063994dde83fb4a0fbae1a5b5c47dc8a09369cbc5
MD5 7a960e5a88200baf5c9cc6c667be366e
BLAKE2b-256 beaee2e4d83f56cdbf2c9f7a492556e31b56c68b3e997e01018d47effed6a819

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.2.0-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.59.0 CPython/3.7.10

File hashes

Hashes for awkward-1.2.0-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 9a5a588a18b42bdd4ff9f50b70c1b6067d8018a4d4bc893cd9363e1e64a4ccfa
MD5 2a8cb7a6db7ab4c6b1a0458a6d9b6f79
BLAKE2b-256 720c8d50dbfebe868f41ff423ab9cc6931b55e7b704d55342a27ba5ef0faf25a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.2.0-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.59.0 CPython/3.7.10

File hashes

Hashes for awkward-1.2.0-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 ba8bb3c6bf274ec5fd00bb21e801d899acd0605d99055b3988999cdea3003312
MD5 22adc51be146fa4792374cb25943cb26
BLAKE2b-256 8d0b98602a01701d45f381898f2208775846dd294a0aed1a5aef00588178184a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.2.0-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.59.0 CPython/2.7.18

File hashes

Hashes for awkward-1.2.0-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 878a4954ac8e1f48c219d19411ab1c38af3f1d49bf11c3a700438f76ce58baad
MD5 ad03a1a7fb1ebcd14225e143c2f1f5ad
BLAKE2b-256 efc31464750c860f6582daf9af5db1e8c844aa17c89cceaa6adf361d587971cc

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