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.1.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.1.0.tar.gz (906.0 kB view details)

Uploaded Source

Built Distributions

awkward-1.1.0-cp39-cp39-win_amd64.whl (11.5 MB view details)

Uploaded CPython 3.9 Windows x86-64

awkward-1.1.0-cp39-cp39-win32.whl (8.5 MB view details)

Uploaded CPython 3.9 Windows x86

awkward-1.1.0-cp39-cp39-manylinux2010_x86_64.whl (7.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

awkward-1.1.0-cp39-cp39-manylinux1_x86_64.whl (7.0 MB view details)

Uploaded CPython 3.9

awkward-1.1.0-cp39-cp39-manylinux1_i686.whl (7.1 MB view details)

Uploaded CPython 3.9

awkward-1.1.0-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.0-cp38-cp38-win_amd64.whl (11.5 MB view details)

Uploaded CPython 3.8 Windows x86-64

awkward-1.1.0-cp38-cp38-win32.whl (8.5 MB view details)

Uploaded CPython 3.8 Windows x86

awkward-1.1.0-cp38-cp38-manylinux2010_x86_64.whl (7.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

awkward-1.1.0-cp38-cp38-manylinux1_x86_64.whl (7.0 MB view details)

Uploaded CPython 3.8

awkward-1.1.0-cp38-cp38-manylinux1_i686.whl (7.1 MB view details)

Uploaded CPython 3.8

awkward-1.1.0-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.0-cp37-cp37m-win_amd64.whl (11.5 MB view details)

Uploaded CPython 3.7m Windows x86-64

awkward-1.1.0-cp37-cp37m-win32.whl (8.5 MB view details)

Uploaded CPython 3.7m Windows x86

awkward-1.1.0-cp37-cp37m-manylinux2010_x86_64.whl (7.5 MB view details)

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

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.6m Windows x86-64

awkward-1.1.0-cp36-cp36m-win32.whl (8.5 MB view details)

Uploaded CPython 3.6m Windows x86

awkward-1.1.0-cp36-cp36m-manylinux2010_x86_64.whl (7.5 MB view details)

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

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m

awkward-1.1.0-cp35-cp35m-win_amd64.whl (11.5 MB view details)

Uploaded CPython 3.5m Windows x86-64

awkward-1.1.0-cp35-cp35m-win32.whl (8.5 MB view details)

Uploaded CPython 3.5m Windows x86

awkward-1.1.0-cp35-cp35m-manylinux2010_x86_64.whl (7.5 MB view details)

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

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

Uploaded CPython 3.5m

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

Uploaded CPython 3.5m

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

Uploaded CPython 2.7mu

awkward-1.1.0-cp27-cp27mu-manylinux1_i686.whl (7.1 MB view details)

Uploaded CPython 2.7mu

awkward-1.1.0-cp27-cp27m-win_amd64.whl (11.5 MB view details)

Uploaded CPython 2.7m Windows x86-64

awkward-1.1.0-cp27-cp27m-win32.whl (8.5 MB view details)

Uploaded CPython 2.7m Windows x86

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

Uploaded CPython 2.7m

awkward-1.1.0-cp27-cp27m-manylinux1_i686.whl (7.1 MB view details)

Uploaded CPython 2.7m

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

File metadata

  • Download URL: awkward-1.1.0.tar.gz
  • Upload date:
  • Size: 906.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.0 CPython/3.7.9

File hashes

Hashes for awkward-1.1.0.tar.gz
Algorithm Hash digest
SHA256 7876d91094c48cc2c923d6084fbe4266b60d89e81f832242be9f59bf1d1ffe4e
MD5 85908e9c4fecd9a8e9a53bbfcdbf032d
BLAKE2b-256 66fdfce8b387f3dcbcb0a19e151db72f13b94da5bb12202d6bbbf9bbb8929b44

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.1.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 11.5 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.0 CPython/3.9.1

File hashes

Hashes for awkward-1.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 94b2860c46859af5d9659f80a439e63f1afd27cb07369c80df68976d88cb86b7
MD5 5a193649c4723dbcf9aafd3acd27ea0c
BLAKE2b-256 211a5d7bf22272cc920f00bb017fe96c2be2075d4c3ef8e75683272f9073ffdc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.1.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 8.5 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.0 CPython/3.9.1

File hashes

Hashes for awkward-1.1.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 9647cf88d75b37ce8b3a26e21c0e1d84536c37f5ddd135b44c9867b14a6dc626
MD5 3bd31c8d9b891f89e71a1ed5f57bc23d
BLAKE2b-256 613582618f904ed42b653d87e8c4e94a8f93f07551957999c3433a9070bd206f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.1.0-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 7.5 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.0 CPython/3.7.9

File hashes

Hashes for awkward-1.1.0-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 6235e76292669b69f23257f09ccdb0a403103c35143bf87d1f3c3543e5f0f1de
MD5 b3584626c635fcbd9324e466c2d84d6a
BLAKE2b-256 2dcaed9ea920867ddeddb1cd2fa475f20cd09b10df3a3b43b2144386d1ec4aed

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.1.0-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 7.0 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.0 CPython/3.7.9

File hashes

Hashes for awkward-1.1.0-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 561dd72c08711725d173d59c5e621b53c7cc989d0e20ae736e2afa0d95035e00
MD5 e70a6616ec43b0c6af70760970ceae00
BLAKE2b-256 d7125b5c8f02aa35285479ae5c55f79bfeefe9d9ada6001ce5522d57abcace17

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.1.0-cp39-cp39-manylinux1_i686.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.0 CPython/3.7.9

File hashes

Hashes for awkward-1.1.0-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 c29329f79029ad4987decf42f4683c38c6d2f2cc2e8d1c866b5b6c7979b97e03
MD5 10ced541b8e2f27f97ebc2ae4d9b94ca
BLAKE2b-256 f6f3feb7e92c8aa524fe85bb11634e516a43b5c67b308e59ba22c26674974f76

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.1.0-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.0 CPython/3.9.0

File hashes

Hashes for awkward-1.1.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 dc57f742b33cad5673eea0cdad1549d3ac3b77bfeb526ef37369ce38fffeee74
MD5 2c9aa13b2c0b2ef50524c11f3a759d25
BLAKE2b-256 31125e13d5d88cb9f6173fdb2e86fd9619099680c12984d2cdb626c69e0df144

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.1.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 11.5 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.0 CPython/3.8.7

File hashes

Hashes for awkward-1.1.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 388610dd123e7a2a787a6f0a32d26112af0bde6eaa36467ed6e09a7e3c8e0b3c
MD5 ef11d79f51668e803bf6df54ff38e237
BLAKE2b-256 e9f0674030491eecee42cb8647e127351e2ae05ef0420a1d2a12de7e0f8b084f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.1.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 8.5 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.0 CPython/3.8.7

File hashes

Hashes for awkward-1.1.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 ad21ee46b02343c80daf7ea3514b9011ccaff73a8816295702b6ee5b1a5722cb
MD5 66ac2058109ef02acf0126d10de0058a
BLAKE2b-256 a6c017d74dde777e70d0012542821fe37405566ffde9c77e8ca6f56be02e9d61

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.1.0-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 7.5 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.0 CPython/3.7.9

File hashes

Hashes for awkward-1.1.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a7627bab466686bf1e204f46637b95080815f94f709933801786c1872891fadc
MD5 2a3b215e84a288288e3b0aa193840d7f
BLAKE2b-256 1b728fe3426246de3270748e445943fb63b4ac678947feb8d64d417e456f197d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.1.0-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 7.0 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.0 CPython/3.7.9

File hashes

Hashes for awkward-1.1.0-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 72b121025cb55c75dda19ffa7a84a277faa2e15727fe0884fd455e42f32b9934
MD5 54c44e75139a6f5fd051a2c3d3f520bb
BLAKE2b-256 6a6d7bd865710c236fe9c11af6a730859c5eb3cd115155ba1bf7294ef63a7917

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.1.0-cp38-cp38-manylinux1_i686.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.0 CPython/3.7.9

File hashes

Hashes for awkward-1.1.0-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 cf625cab10f7cdd4e673cfc7ec99fcd40461d0da203a6472839b6f58a72d0cf6
MD5 ef4e1bc1c1680b4e4be81eea697bc7b0
BLAKE2b-256 84624fc970683488d5838134041c3628670023fcea09bd2bb8f77a5a6ff6bd59

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.1.0-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.0 CPython/3.8.6

File hashes

Hashes for awkward-1.1.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5d79112194a62e4cca8dc21e91e91a4bacdf104c8d1734636f3c1b444fc67aa2
MD5 ec029fc09e45b5a14301f65d88e944b2
BLAKE2b-256 de60eee3e64624cae232d4d9b490b6897b822db5ded32ff84208f99268389dca

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.1.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 11.5 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.0 CPython/3.7.9

File hashes

Hashes for awkward-1.1.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 d5e22a5bcf3f449b7ed1055622e6850d81ee61435a85c977159038750ba152a8
MD5 e0fa97cd8881dc7b0114bac73a519bba
BLAKE2b-256 f8f03581e0c6a68b38aae2fcb06eb6f6cb7814a07ac7dec09d84a79d408312e2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.1.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 8.5 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.0 CPython/3.7.9

File hashes

Hashes for awkward-1.1.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 a3b8caf2e0c21136c5053f4a1ee4c17a3fab12d314fafa726933bee3748518a3
MD5 1ca1e7a8e5e9e9bade5eaee10493bf05
BLAKE2b-256 ca51c01ee9eb4a892d76447e07cb7635aea9d146dde4f25e2b28db438388adec

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.1.0-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 7.5 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.0 CPython/3.7.9

File hashes

Hashes for awkward-1.1.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 0a61becb81e4cc5ea8c3fbccfaddc15a01772c23c73d115ac02e3854fd9ec418
MD5 2faef3063d5777febedee158c7223925
BLAKE2b-256 6600c948c43d03eb79a6de3ee1c92de486fab612928a4ec60a57545c3c25f29f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.1.0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 7e24624e9a78f888fdedecc218b21977a6d1d9bb77a770bcf64a6f1b61867b17
MD5 d64ec698cb7dde0d0f95a66159a96dae
BLAKE2b-256 dfdc5880a46d5128551bcd038e1e607be3a77283c390a7bce7f78a8930dcd244

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.1.0-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 c227729c845d8a451e2b5bb74e39ec558cd018aa0b550a7b756d2773def23783
MD5 d0d0f43120f2be58cb4c494b300515fe
BLAKE2b-256 c4f2426d250e0fa9616b246434382c58ec9cd733aa49028fb3d32a87994669c1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.1.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 469abc43a671644f7e3c0544cdfc89926668bac8e3b59e1f7365c2a593a492fb
MD5 e84fbf6791f7abf80fd73c5fc735cbb6
BLAKE2b-256 e8948e43598c3a9e49d987a80462424508fb67d2189a6f63f258f413c3b43f19

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.1.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 11.5 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.0 CPython/3.6.8

File hashes

Hashes for awkward-1.1.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 ea3fb5b506c247e3afde794abab33b0fdb58477217af15b642ae62850d5be1a5
MD5 9818eb0d7e1924cf7a71a6d9a54dd24c
BLAKE2b-256 4eca20b04d1eb561c3d06fc7b8dcfafb3026fafc08abb1d892af608e24f6a23a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.1.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 8.5 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.0 CPython/3.6.8

File hashes

Hashes for awkward-1.1.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 8649fbede77178142c283bd7c31b2a6d46964c94ed0ec9f2e082dae9e1f4acd9
MD5 71e3b974d23c7a395e366c38109eb6ce
BLAKE2b-256 651c5ca0f1d081d0ac127e5dd996f587e5ca819a43ec17edd9333a6bdc1b5883

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.1.0-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 7.5 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.0 CPython/3.7.9

File hashes

Hashes for awkward-1.1.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 7685685e0a94f7e9a536c2e0e6576300554a3e4db7ac6826582f533c5ce63ed2
MD5 a921a6f370ee39ce4b71b8c6a6756d0f
BLAKE2b-256 817bd09542028a29f3646768cf6e9c6ce2045e8d8d1c50f511e3d43e30908add

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.1.0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 89e0a32c8811d7f709ae4f339a769c20421bc91c24ac1cf222c012d3b66f5bce
MD5 2d717fb56e222aa13ba80320048c5f9a
BLAKE2b-256 33354a4867c39b844eb3e929c40a7560b9a35e4c917475d664c7950225763a27

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.1.0-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 7fbd222d8fb76935ae362feaeb0593d22d8333037a73c3e6926a8d2de66ca271
MD5 16a17a66a1df0ade47611d550e01bb42
BLAKE2b-256 d290c0e6123827e304b71c318ea1a6c3807f567aac13d516d5f298fafeb77db4

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.1.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 e9c16939a5e67489ab40d0e73474ad5bad59b08a3c9f58939bb4bceb0a2a002f
MD5 0a8dfd652b4108d5a4d9893e79b4ef1a
BLAKE2b-256 3733d22efda45dd17a01df333eb07cc9618d6b18d61df43a7b5f9abfe6401346

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.1.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 adf86d88f0c4169c5c4993ca8bf262efd285ca828c4ac24bdbda6a73973ab126
MD5 7cdc15d4e280fcf02ff79484c88aa76f
BLAKE2b-256 d0fb6efe4a1e4d32e07795c57e0fb321c704f2ccc23430fe60a6f0d764bfcce2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.1.0-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 7.5 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.0 CPython/3.7.9

File hashes

Hashes for awkward-1.1.0-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a20a992e68d46108f8b3801600b487b140d0685ba96339c749dd32eb7f0f99a1
MD5 4c8684152b2919424112df3806516612
BLAKE2b-256 a74a0054c007bb8c9ee70b4728dabde439a9d0ce889c5c9669a030efb5630e4d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.1.0-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 81fd58411621d726aec747f2848694da64221e1c62b34d416f6ea78b2b9c763a
MD5 885c312812bf570b3fb8a02fc515c19a
BLAKE2b-256 26bf835ad44eb1ec7be6337d265159b70ae429bbf2d8d14d120425f14c7e46ec

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.1.0-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 1e5331264c62df7f0a4ea4eebf91240df8a073e398e77b9eba87b8dbddbe9cd3
MD5 33b3e6a40221db9307a467a8675b3730
BLAKE2b-256 94f606f853b03d209d7996de7e056f36f7a78740846e90ef1ef4e2ddc4b46034

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.1.0-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 3e508f480b9aed0a8d7fc4581e8916e791e0bc3f31e5baca7d28d8162ca17743
MD5 35ca376e1507fdb075092878f7e46dc9
BLAKE2b-256 d9e30751a7d75603da6b4c117c698937600462d18d656d31ad4a5f9d15a2b3b9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.1.0-cp27-cp27mu-manylinux1_i686.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.0 CPython/3.7.9

File hashes

Hashes for awkward-1.1.0-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 1c26fbb46c3f83a6e3bfef9db5ce5168f98353fc3627d60d0c74c2bbc2005765
MD5 522b748e183e56d866a31422bc8c32cf
BLAKE2b-256 ff6673ccb56248097fd2511179b5f082ec2572013f858ecf0100042869ae80b6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.1.0-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 c72a76d0fae9990f4938bae0c23d83ea645f1068c0d6ea1a096ee7f684f2aa3f
MD5 a21fe90b6cc475a680cd8192aaaecc8a
BLAKE2b-256 1892fdbaee5769f5f79b62e32f2a7f15438ee65764294911e00f2c85714e0b6d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.1.0-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 9e2ce6b5969ff28fb3c7d331ca0b2c023f4b77cdfeb2cd1dcaa6785968e64936
MD5 f33a8ea934d24f3c9bfd3a588e26cbb0
BLAKE2b-256 13d906299aab3a0a23a0896ca1694adceb1ab2c30cd38c2f808ccceb347aeefc

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.1.0-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 95f80841a801447b12abb5626de02894e375b20297daa3f973ac4d63bad9a2b3
MD5 43215bb01d5e59054b5be3505170a04a
BLAKE2b-256 7e7e0a749451747bb2e7969961e92a08784e687c45ac83807e6fb0d31569e894

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.1.0-cp27-cp27m-manylinux1_i686.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.0 CPython/3.7.9

File hashes

Hashes for awkward-1.1.0-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 dca8a7abb7c4cd5465c9328f3f54cfa39b40a581c68adcf73ca9ca7f1d025f5a
MD5 f06e714847ed71423be925d7cc1969ba
BLAKE2b-256 b0c0dd7ac1dab81994b79a270bbb0c9276755d39382db490f512145d84ca2e5f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.1.0-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 077c7d341ca7e185d6d13e4d47ba7906bdb04663f5b328a98c8d92765010a866
MD5 49dfea4c2e3912a6220dc37f86194651
BLAKE2b-256 7e36ab9fe54a311480ed512c122e656cf23a760e4f817d2266858961b9815099

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