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.0.2

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

Uploaded Source

Built Distributions

awkward-1.0.2-cp39-cp39-win_amd64.whl (10.3 MB view details)

Uploaded CPython 3.9 Windows x86-64

awkward-1.0.2-cp39-cp39-win32.whl (7.7 MB view details)

Uploaded CPython 3.9 Windows x86

awkward-1.0.2-cp39-cp39-manylinux2010_x86_64.whl (6.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

awkward-1.0.2-cp39-cp39-manylinux1_x86_64.whl (6.1 MB view details)

Uploaded CPython 3.9

awkward-1.0.2-cp39-cp39-manylinux1_i686.whl (6.2 MB view details)

Uploaded CPython 3.9

awkward-1.0.2-cp39-cp39-macosx_10_9_x86_64.whl (6.3 MB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

awkward-1.0.2-cp38-cp38-win_amd64.whl (10.3 MB view details)

Uploaded CPython 3.8 Windows x86-64

awkward-1.0.2-cp38-cp38-win32.whl (7.7 MB view details)

Uploaded CPython 3.8 Windows x86

awkward-1.0.2-cp38-cp38-manylinux2010_x86_64.whl (6.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

awkward-1.0.2-cp38-cp38-manylinux1_x86_64.whl (6.1 MB view details)

Uploaded CPython 3.8

awkward-1.0.2-cp38-cp38-manylinux1_i686.whl (6.2 MB view details)

Uploaded CPython 3.8

awkward-1.0.2-cp38-cp38-macosx_10_9_x86_64.whl (6.3 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

awkward-1.0.2-cp37-cp37m-win_amd64.whl (10.3 MB view details)

Uploaded CPython 3.7m Windows x86-64

awkward-1.0.2-cp37-cp37m-win32.whl (7.7 MB view details)

Uploaded CPython 3.7m Windows x86

awkward-1.0.2-cp37-cp37m-manylinux2010_x86_64.whl (6.5 MB view details)

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

awkward-1.0.2-cp37-cp37m-manylinux1_x86_64.whl (6.1 MB view details)

Uploaded CPython 3.7m

awkward-1.0.2-cp37-cp37m-manylinux1_i686.whl (6.2 MB view details)

Uploaded CPython 3.7m

awkward-1.0.2-cp37-cp37m-macosx_10_9_x86_64.whl (6.2 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

awkward-1.0.2-cp36-cp36m-win_amd64.whl (10.3 MB view details)

Uploaded CPython 3.6m Windows x86-64

awkward-1.0.2-cp36-cp36m-win32.whl (7.7 MB view details)

Uploaded CPython 3.6m Windows x86

awkward-1.0.2-cp36-cp36m-manylinux2010_x86_64.whl (6.5 MB view details)

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

awkward-1.0.2-cp36-cp36m-manylinux1_x86_64.whl (6.1 MB view details)

Uploaded CPython 3.6m

awkward-1.0.2-cp36-cp36m-manylinux1_i686.whl (6.2 MB view details)

Uploaded CPython 3.6m

awkward-1.0.2-cp35-cp35m-win_amd64.whl (10.3 MB view details)

Uploaded CPython 3.5m Windows x86-64

awkward-1.0.2-cp35-cp35m-win32.whl (7.7 MB view details)

Uploaded CPython 3.5m Windows x86

awkward-1.0.2-cp35-cp35m-manylinux2010_x86_64.whl (6.5 MB view details)

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

awkward-1.0.2-cp35-cp35m-manylinux1_x86_64.whl (6.1 MB view details)

Uploaded CPython 3.5m

awkward-1.0.2-cp35-cp35m-manylinux1_i686.whl (6.2 MB view details)

Uploaded CPython 3.5m

awkward-1.0.2-cp27-cp27mu-manylinux2010_x86_64.whl (6.5 MB view details)

Uploaded CPython 2.7mu manylinux: glibc 2.12+ x86-64

awkward-1.0.2-cp27-cp27mu-manylinux1_x86_64.whl (6.1 MB view details)

Uploaded CPython 2.7mu

awkward-1.0.2-cp27-cp27mu-manylinux1_i686.whl (6.2 MB view details)

Uploaded CPython 2.7mu

awkward-1.0.2-cp27-cp27m-win_amd64.whl (10.3 MB view details)

Uploaded CPython 2.7m Windows x86-64

awkward-1.0.2-cp27-cp27m-win32.whl (7.7 MB view details)

Uploaded CPython 2.7m Windows x86

awkward-1.0.2-cp27-cp27m-manylinux2010_x86_64.whl (6.5 MB view details)

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

awkward-1.0.2-cp27-cp27m-manylinux1_x86_64.whl (6.1 MB view details)

Uploaded CPython 2.7m

awkward-1.0.2-cp27-cp27m-manylinux1_i686.whl (6.2 MB view details)

Uploaded CPython 2.7m

awkward-1.0.2-cp27-cp27m-macosx_10_9_x86_64.whl (6.2 MB view details)

Uploaded CPython 2.7m macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for awkward-1.0.2.tar.gz
Algorithm Hash digest
SHA256 3468cb80cab51252a1936e5e593c7df4588ea0e18dcb6fb31e3d2913ba883928
MD5 761ef0fc930e6c008e6c0d5a33a3bedf
BLAKE2b-256 210a9988d6c23a2d12d64552f9436bace86e1c6cb441ad3017386a312d4c51c4

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.0.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 6d610a055751cf5a53705d4344b7be5a10ad8fa44c13cbac2b4a9263075014fc
MD5 3c8c56bc4852ea4f6d4cc5c52cb90155
BLAKE2b-256 ff3eb47bbab65e6cb13e103e1846785820c442fa8181dd46407f8fe9606c088d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.0.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 bf54200a0ef599a9de738d0adc3e1e802cf4e3fa4c729a472c45364db0d77d97
MD5 4bb30acca652fa9aef7ce39ab8b19ce4
BLAKE2b-256 dd0d662549089dc471e7865a678b4cf0d27dffb8534edfb2554e8edd5822c6f0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.0.2-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 6.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.6.1 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.7.9

File hashes

Hashes for awkward-1.0.2-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 8a9eabfb0444c33a5d9942ca19c7e51b4ac0e9a3026e43b77347cc9a8de0d355
MD5 4234e49bbba6279c26d63a690ab6ae04
BLAKE2b-256 331b8294471c4de8a2f77910f6ec443ba4427178e714107e9dbb89c547719252

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.0.2-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 1e5be4598883651483c371e5dc93428c72df54ffcf67baa754aab83322d80898
MD5 436c9a7f986f7e7dde154d90cff24b47
BLAKE2b-256 78f02443e4f00defa9e11335d22bbf30848a007c6851bb8b01938149813d977f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.0.2-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 beaaa680eff619f39dafb1b51d007840cc5ede16a30aaced6ddd966724cfb109
MD5 a364b9e9a73e069433aadb1cde1da9a5
BLAKE2b-256 f490795c18e610066478cacaa10e88f9e62130cd2f30008352b04ad605513099

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.0.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 251ef4f3fe854cd2f7d74c68f8ce49ce1bb8300c60fdd3a185f805c6b0733c24
MD5 1278634980aba0b86c949a0541c3804f
BLAKE2b-256 3df9ccf823ea254e3cba94869bf378cd6a55a230f9810dc84716be827a18fdb1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.0.2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 10.3 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.8.6

File hashes

Hashes for awkward-1.0.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 e37f1286c25802fd32871a24f2c5ee8cf095c6549ce2a7c4952a14c039990b0d
MD5 f925f3cc73a39dd423c6c59bb53cb52e
BLAKE2b-256 26a5eb9992832368a02cd7b1d6b6c80f12e9721d5b0a7f988cff35832023980e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.0.2-cp38-cp38-win32.whl
  • Upload date:
  • Size: 7.7 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.8.6

File hashes

Hashes for awkward-1.0.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 a5bd2936827acae617d5ab0d46863d6f891388d878c1c0e8c9e992e8d165d6fe
MD5 74f5926a26eacede30bbe80fb0fbe534
BLAKE2b-256 8eaddf8990076890416bcaab3fa94b01cde828934e235eb9494267b48fbfc563

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.0.2-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 6.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.6.1 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.7.9

File hashes

Hashes for awkward-1.0.2-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 be6cda1f1e35b0cb719d9825fd74df622720cbc3b337ddd7f137a57f99081150
MD5 4c1575683ccbc4cd8abbdf49810f390d
BLAKE2b-256 9a4ec97effa86799925322473a80ffe64a3d84577f3ae1941ab8021ef89f4282

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.0.2-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 75abc4f966c2cc4310964165ea6f8fae35c98f415180523deb149a30b0b03ee5
MD5 a38c1653e5d5abb18b8acceea2c08785
BLAKE2b-256 f1ffbac6c67183940cff96be2251647504a37a62d05128cfad92130b65b535f3

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.0.2-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 b678e04e7b48615d0da2e64992823d1cc49c1ff94e475879e67deed33f14701c
MD5 1df7788cb14bb558a24f9b134f378af4
BLAKE2b-256 5d8309aa3136c9adb55c681e96dc89276caab47cac178143192bdb522ba34cb6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.0.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 897832decb5c39140edec14f55272741f2bce26569955f45f0e05143ee1d2a44
MD5 f5b69acfb1b969faecf26d481a1355b0
BLAKE2b-256 9be2b877a1665ad9bf64c57c02f6ecef4557ebe95b40c89d9948e01aa69ab48d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.0.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 b64f078da97918a64c7315c06318711c03e126659e8047f3fd1a3ee6bc710881
MD5 e9b2b9da99f28b03d94fec49038debf0
BLAKE2b-256 f2ca42c7db444a450cfb20a39f0d9b7de6aa69dfe711972b2cc382c38173401c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.0.2-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 866cd678bd30b4aac0bfb7f6de4a08b970ec157d649b0e2cdaf95483a0ab3583
MD5 2a4ac3b9e05dc0f382eb619124850216
BLAKE2b-256 423f1486fbd2e4f2ed921c8219a9529750088eeeef0efc9785393732bf1bc314

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.0.2-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 6.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.6.1 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.7.9

File hashes

Hashes for awkward-1.0.2-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 75d6408774aa4eaa09849d0c800bc966382e1260b1b13b4040213e3a17bf5007
MD5 c40e931c126acfc18c3adbf555eed569
BLAKE2b-256 384007ee0928039f49780cf9dfd9a1a57cfe289cb3d5529a26e13b26b73f61b2

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.0.2-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 4a45a87bdf48ea47521e779cfda6bdd1f039b3c3a42bc982be903aba92e60560
MD5 cb60d69a219b3cd8d903038f4299c5f4
BLAKE2b-256 8046eb00f63ac7887c4131da9e75dcd83708aac0696b60198089fa96b6495587

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.0.2-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 4738b3b954b085f30a1dc1ca32409c5abd8f9af3a6a9832e7d36ae37e1748800
MD5 c1d441d21ef92893623cb054c46b7f8e
BLAKE2b-256 8518286bcdfa5a187df3ef225aeea452abef3a9b71b3f28f31eec9a1bbeca6b6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.0.2-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 855d3a39f6e8c2acd61c2552404dbbb54f693f4a5469b751a6402b4aa55a0344
MD5 652a7bd5d698ec89b85b0702f79d7d4e
BLAKE2b-256 e91721ec6ed34bc6ac29d854223abaffefcf84d2c063a7ba27306770b7e2d5bb

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.0.2-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 c9cfd4892f64ff03cca3f2993314c086b760f080864f8a129586612a5f45749b
MD5 05c26475d1ced0be8501f509e3846262
BLAKE2b-256 a8d387de02442aebff25d368f2b6708636d10c2fb1b0c564c42304095a7325c6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.0.2-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 0e6c4a84f065496f424fcacfd1ab1dbdfa12d89d976897102b8166e1784fb2ab
MD5 07c8973a21b91da78f694f55a777a468
BLAKE2b-256 25ab1af183905d42e75d87aa41f5fcbb346fcf6506679971965ed17d60b302e1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.0.2-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 6.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.6.1 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.7.9

File hashes

Hashes for awkward-1.0.2-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 6337ef7a446b5f3dff79c386327282196e5554d8aca5afe5405b72cf92ed9949
MD5 7d667edb1ed8b95701dc4875d8adb119
BLAKE2b-256 acb3d6f45cb4a46e384415a49cf873e88fd85494e41807ac84a1f7938fa64c5c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.0.2-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e74e33110c25ce36182c92d0c8f1ae6b4bb75c243e484cf6c814148c0ff939ec
MD5 2ce658bd6a65b344835a48b8a3c2455b
BLAKE2b-256 891e63d5f6bb67af09a4f3d25db56fb9992c14057b9cee6cc6ce16d17cef2771

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.0.2-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 fc0bb7a517017de8e701e216c0b150e4cae5f193c00ed6457c941d3a1074912d
MD5 0e62ef8b2169ba52a1f2817934596a0d
BLAKE2b-256 dc7e4661beebc19f1d819f88b42f3373a8f03a1387c5555e07d551d7cb65d89f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.0.2-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 e4b1235efcbd6a8fce5fbe0b5a7f63292a70db0e43b6a902a5f3b61ed980c000
MD5 613776d0d7d2748b7d4c9ee52ebf9ae6
BLAKE2b-256 a012d055992d1b09ae4ea005cfeae99dea8f8524025df8947100f3bbe7c143d7

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.0.2-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 34ae34be084952f30152bf3c1b05d6f4b8923da89e6c966281d3face65cf3e1d
MD5 1a9698351401b5e15a998dd1c0a9fcef
BLAKE2b-256 03155f4c2d3c3fb734eb6898da52e5d2356d6058f498a3d186b21a28f823a410

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.0.2-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 6.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.6.1 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.7.9

File hashes

Hashes for awkward-1.0.2-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 347eb3197501c4916c531e52057ee7a86c98129c5f136c40eb9880d5fe5e95e0
MD5 d844cbf988b59370ba7c744662941ebe
BLAKE2b-256 716e3a08da01dfba6094b40766c2e74c75c276f5d8148d3453cf3e5f1b9e0ddd

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.0.2-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e9386e6ff33c56a97f95e43483afe460a42025444e3b7b9e14c0d6f6404d34ef
MD5 7340b1078aa2258c16ef24a9d5752771
BLAKE2b-256 6f590dca23eb4d0c894d5533aa85a10f8194183cf0206510a5fd2b5df9f1721c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.0.2-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 92525d068a1e52e96206a8a6e0421ccae3480d8b911a0256b3b42917c3d66dc4
MD5 d09295e11bde7f35fb7bf298eb90173d
BLAKE2b-256 af0ea33d8c00a267aada2f16e56c3d783f018338113c1868686e29f94f8a6870

See more details on using hashes here.

File details

Details for the file awkward-1.0.2-cp27-cp27mu-manylinux2010_x86_64.whl.

File metadata

  • Download URL: awkward-1.0.2-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 6.5 MB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.7.9

File hashes

Hashes for awkward-1.0.2-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 d1412e55a33b010cac4a087343a300148ba91a2e8db7a01b79f00056d1db9391
MD5 cac61fcd648c5d270fa8685079f3752b
BLAKE2b-256 852ceb13d069ec30870ebe4ebd4a1b5742a56f228f77ea682e6c17e0fb5b74a6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.0.2-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 717a0ab0ccd5db259040ff6c097dc34093664cad0c06694cda4735f7c28ec547
MD5 ea03a9724396ef13d11f4297e28f6950
BLAKE2b-256 c2069b1d64861d057e9cbafcabbf1a9a7a6b076567fbddfc3b7a9e2c908b1e09

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.0.2-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 f25b8578bf80f9d2f96deb34da7ce4381d5a7aafaca9aa70c10f3f751c25fe0d
MD5 41eec3f88c544baf68694ef7ead07a68
BLAKE2b-256 72f6d8bb22bf27980272ed6ef9947c9368edd9c9c9818c913e06bbbda93d45b2

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.0.2-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 b2dcd03e003506d8f221a73008c76320ef0fd52f33e4e9896be9712351d5bf33
MD5 a7454a77a125cee793bb15271787b276
BLAKE2b-256 3d998eb25d190afdd654d01b18e9f0269a57d3a5c2dee9205baaf454818ee84d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.0.2-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 5b95d207e70e79f5d5cb129a1a7acd785b13dec6f6b4dacf1836a12f049c76f1
MD5 e266056802796da2d47e9041770cb120
BLAKE2b-256 e6a2eb392ed1d88b28ebf67574a565964eef7920372be1c3a74c0193e5adbc84

See more details on using hashes here.

File details

Details for the file awkward-1.0.2-cp27-cp27m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: awkward-1.0.2-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 6.5 MB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.7.9

File hashes

Hashes for awkward-1.0.2-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 779e154efa06fb5ab8006199f2c7164a8be08d171ef6a7f7058d44d39f8e2e92
MD5 ef74e0241f5ba87bfb13467316b94845
BLAKE2b-256 0950d20633f5faa38f283f2a7ff50280c6333f8edeb61bae2d49f3bfb7c04768

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.0.2-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b98ff2a01800f865c68d3e78b32d01df3796db8f3eab6ea4b02e2c4dee832cbc
MD5 fc7135ecc3932dc95b7cda00e6f632fe
BLAKE2b-256 bc6e03dade2caed4769c092dcaac97d45e5c0cba4ef7788143e9aca737b0735a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.0.2-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 502f210f796433ffc05e76e8725ca8eb2df5407a0cab500d26fd364b90c50b40
MD5 eaa8a3e1ce562cf50ebd04be74bda911
BLAKE2b-256 87ed6173856472c5b3ffbf0f17bfee7f8c00dfd61a5724456724016deb65ae34

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.0.2-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0711d5d5e0546af4ee54a555eaaf641ebf7c71f121b937dba25449f2057d996d
MD5 3cc586359ebcc2b60df246a7e2d77151
BLAKE2b-256 3e313c2e391a091c25303777847454a1266056d2985023586b4bf08acd1e045e

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