Skip to main content

Manipulate JSON-like data with NumPy-like idioms.

Project description

Awkward Array is a library for nested, variable-sized data, including arbitrary-length lists, records, mixed types, and missing data, using NumPy-like idioms.

Arrays are dynamically typed, but operations on them are compiled and fast. Their behavior coincides with NumPy when array dimensions are regular and generalizes when they're not.

Motivating example

Given an array of objects with x, y fields and variable-length nested lists like

array = ak.Array([
    [{"x": 1.1, "y": [1]}, {"x": 2.2, "y": [1, 2]}, {"x": 3.3, "y": [1, 2, 3]}],
    [],
    [{"x": 4.4, "y": {1, 2, 3, 4]}, {"x": 5.5, "y": [1, 2, 3, 4, 5]}]
])

the following slices out the y values, drops the first element from each inner list, and runs NumPy's np.square function on everything that is left:

output = np.square(array["y", ..., 1:])

The result is

[
    [[], [4], [4, 9]],
    [],
    [[4, 9, 16], [4, 9, 16, 25]]
]

The equivalent using only Python is

output = []
for sublist in array:
    tmp1 = []
    for record in sublist:
        tmp2 = []
        for number in record["y"][1:]:
            tmp2.append(np.square(number))
        tmp1.append(tmp2)
    output.append(tmp1)

Not only is the expression using Awkward Arrays more concise, using idioms familiar from NumPy, but it's much faster and uses less memory.

For a similar problem 10 million times larger than the one above (on a single-threaded 2.2 GHz processor),

  • the Awkward Array one-liner takes 4.6 seconds to run and uses 2.1 GB of memory,
  • the equivalent using Python lists and dicts takes 138 seconds to run and uses 22 GB of memory.

Speed and memory factors in the double digits are common because we're replacing Python's dynamically typed, pointer-chasing virtual machine with type-specialized, precompiled routines on contiguous data. (In other words, for the same reasons as NumPy.) Even higher speedups are possible when Awkward Array is paired with Numba.

Our presentation at SciPy 2020 provides a good introduction, showing how to use these arrays in a real analysis.

Installation

Awkward Array can be installed from PyPI using pip:

pip install awkward

You will likely get a precompiled binary (wheel), depending on your operating system and Python version. If not, pip attempts to compile from source (which requires a C++ compiler, make, and CMake).

Awkward Array is also available using conda, which always installs a binary:

conda install -c conda-forge awkward

If you have already added conda-forge as a channel, the -c conda-forge is unnecessary. Adding the channel is recommended because it ensures that all of your packages use compatible versions:

conda config --add channels conda-forge
conda update --all

Getting help

How-to tutorials

Python API reference

C++ API reference

Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

awkward-1.0.1.tar.gz (815.6 kB view details)

Uploaded Source

Built Distributions

awkward-1.0.1-cp39-cp39-win_amd64.whl (10.0 MB view details)

Uploaded CPython 3.9 Windows x86-64

awkward-1.0.1-cp39-cp39-win32.whl (7.4 MB view details)

Uploaded CPython 3.9 Windows x86

awkward-1.0.1-cp39-cp39-manylinux2010_x86_64.whl (6.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

awkward-1.0.1-cp39-cp39-manylinux1_x86_64.whl (5.9 MB view details)

Uploaded CPython 3.9

awkward-1.0.1-cp39-cp39-manylinux1_i686.whl (6.0 MB view details)

Uploaded CPython 3.9

awkward-1.0.1-cp39-cp39-macosx_10_9_x86_64.whl (6.0 MB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

awkward-1.0.1-cp38-cp38-win_amd64.whl (10.0 MB view details)

Uploaded CPython 3.8 Windows x86-64

awkward-1.0.1-cp38-cp38-win32.whl (7.4 MB view details)

Uploaded CPython 3.8 Windows x86

awkward-1.0.1-cp38-cp38-manylinux2010_x86_64.whl (6.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

awkward-1.0.1-cp38-cp38-manylinux1_x86_64.whl (5.9 MB view details)

Uploaded CPython 3.8

awkward-1.0.1-cp38-cp38-manylinux1_i686.whl (6.0 MB view details)

Uploaded CPython 3.8

awkward-1.0.1-cp38-cp38-macosx_10_9_x86_64.whl (6.0 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

awkward-1.0.1-cp37-cp37m-win_amd64.whl (10.0 MB view details)

Uploaded CPython 3.7m Windows x86-64

awkward-1.0.1-cp37-cp37m-win32.whl (7.4 MB view details)

Uploaded CPython 3.7m Windows x86

awkward-1.0.1-cp37-cp37m-manylinux2010_x86_64.whl (6.3 MB view details)

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

awkward-1.0.1-cp37-cp37m-manylinux1_x86_64.whl (5.9 MB view details)

Uploaded CPython 3.7m

awkward-1.0.1-cp37-cp37m-manylinux1_i686.whl (6.0 MB view details)

Uploaded CPython 3.7m

awkward-1.0.1-cp37-cp37m-macosx_10_9_x86_64.whl (6.0 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

awkward-1.0.1-cp36-cp36m-win_amd64.whl (10.0 MB view details)

Uploaded CPython 3.6m Windows x86-64

awkward-1.0.1-cp36-cp36m-win32.whl (7.4 MB view details)

Uploaded CPython 3.6m Windows x86

awkward-1.0.1-cp36-cp36m-manylinux2010_x86_64.whl (6.3 MB view details)

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

awkward-1.0.1-cp36-cp36m-manylinux1_x86_64.whl (5.9 MB view details)

Uploaded CPython 3.6m

awkward-1.0.1-cp36-cp36m-manylinux1_i686.whl (6.0 MB view details)

Uploaded CPython 3.6m

awkward-1.0.1-cp35-cp35m-win_amd64.whl (10.0 MB view details)

Uploaded CPython 3.5m Windows x86-64

awkward-1.0.1-cp35-cp35m-win32.whl (7.4 MB view details)

Uploaded CPython 3.5m Windows x86

awkward-1.0.1-cp35-cp35m-manylinux2010_x86_64.whl (6.3 MB view details)

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

awkward-1.0.1-cp35-cp35m-manylinux1_x86_64.whl (5.9 MB view details)

Uploaded CPython 3.5m

awkward-1.0.1-cp35-cp35m-manylinux1_i686.whl (6.0 MB view details)

Uploaded CPython 3.5m

awkward-1.0.1-cp27-cp27mu-manylinux2010_x86_64.whl (6.3 MB view details)

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

awkward-1.0.1-cp27-cp27mu-manylinux1_x86_64.whl (5.9 MB view details)

Uploaded CPython 2.7mu

awkward-1.0.1-cp27-cp27mu-manylinux1_i686.whl (6.0 MB view details)

Uploaded CPython 2.7mu

awkward-1.0.1-cp27-cp27m-win_amd64.whl (10.0 MB view details)

Uploaded CPython 2.7m Windows x86-64

awkward-1.0.1-cp27-cp27m-win32.whl (7.4 MB view details)

Uploaded CPython 2.7m Windows x86

awkward-1.0.1-cp27-cp27m-manylinux2010_x86_64.whl (6.3 MB view details)

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

awkward-1.0.1-cp27-cp27m-manylinux1_x86_64.whl (5.9 MB view details)

Uploaded CPython 2.7m

awkward-1.0.1-cp27-cp27m-manylinux1_i686.whl (6.0 MB view details)

Uploaded CPython 2.7m

awkward-1.0.1-cp27-cp27m-macosx_10_9_x86_64.whl (6.0 MB view details)

Uploaded CPython 2.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: awkward-1.0.1.tar.gz
  • Upload date:
  • Size: 815.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.9

File hashes

Hashes for awkward-1.0.1.tar.gz
Algorithm Hash digest
SHA256 d856b4a166ae054363368aed2e4a44338fec069baa4242e7d567c8323ebcc1eb
MD5 8317fb538983621ab331572d271b6bde
BLAKE2b-256 e3b3f1889492b1c242d23903e93b46c356d44e4c6531873065dc6ac883bae717

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.0.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 10.0 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.9.0

File hashes

Hashes for awkward-1.0.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 cf30e790c53fb056ba5fcb4505e60af1c87ec4bc4680c87c367dff77cfdb9b80
MD5 ed348f3f1c330eb31887f1b3b9aebca2
BLAKE2b-256 90e66530539df30fa31b25e2cf01277ec5f3e82afcbf634ee4859b631aeacbdc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.0.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 7.4 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.9.0

File hashes

Hashes for awkward-1.0.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 a3a1cc29f85ecf6e3df25fe5985ad52a9f3735ead1475104e029e7f075e8e688
MD5 f10d8ed07d599eab35bf7b16c52f9af6
BLAKE2b-256 416793252be0ca19b071b9c5b1530a8c44ce3cd8ad7a960c80fb7f57854d75ad

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.0.1-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 6.3 MB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.9

File hashes

Hashes for awkward-1.0.1-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 0ad6782507051537232f166c83504a1ab029ea1218b85156e76e7c445ac85739
MD5 ddf45ad3d30a8b1e604d49fe8f019a56
BLAKE2b-256 165322867a2afb88c32de4e16809f0581790c5299f77ddc651fdd08433632e4f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.0.1-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 5.9 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.9

File hashes

Hashes for awkward-1.0.1-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 976b2ed51a1b2313dd6d27f4fa1ce0fc1a78b91351ea57635eaf07fa09543ab9
MD5 31193e730037cf8318ac1d551bf726f5
BLAKE2b-256 6bd6ef3590ff58f3f012b97cf8b1caa6ded05b54a0a3990986de9c6d28c7cf2c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.0.1-cp39-cp39-manylinux1_i686.whl
  • Upload date:
  • Size: 6.0 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.9

File hashes

Hashes for awkward-1.0.1-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 f8173260c9b26d377a5f1f649bb0b2e4cd53255df71691e9ac2a4be6744ebd3e
MD5 b1c26a2a75123c967ca32fb05b3cd4bd
BLAKE2b-256 da04feb7fe6c45d0f4f81046fedbc8dbaf9e0c1db6c6450bd203f67b04e5404b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.0.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2162eb8e7f48c36ffdcc246388496611a524d96be14ac6b1eb2a0b960c925f35
MD5 88c345cae8f064935c91f5d6f3072b34
BLAKE2b-256 24075a96313511248c186008d9a1c43cce1ad04d673f072b8d08bcb6d3b7d76f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.0.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 10.0 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for awkward-1.0.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 26931b6d9447b7646d8f5627c81c94bd75503d0b49d6321aa1d9320dc1673b7c
MD5 fa3bdc70fbf907d7225f9c74e300ae7c
BLAKE2b-256 247a4132ffdfe6746ef891c823bdd2f45a70064e217db245f1310cc4307f1a8d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.0.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 7.4 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for awkward-1.0.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 deeb008d7e9934c22591cb998d10ada939efe75d50ccd1514325178f6941e662
MD5 8e08b70b2944d44c61a3b5e56f7f7adb
BLAKE2b-256 6629e308db3ecbf7bb96eb49bc410035d2835c717f0d03d96c148d41fa42c419

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.0.1-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 6.3 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.9

File hashes

Hashes for awkward-1.0.1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 6f3b10d8d15d372e9a0bd45330dd7399bac440367f9870b0ebd721ba7a7a2e80
MD5 456e8053659747cb51ad2c6da15c952f
BLAKE2b-256 ff31ea39014e10312bf8f8501d7caf6029518fd69eba674e83191f30c35289fc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.0.1-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 5.9 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.9

File hashes

Hashes for awkward-1.0.1-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 fb809fc1176c555cbf1c1d086f83c2749b60d79a0a6d83d4cee5bb6cda7a7464
MD5 1b1716b7ce917f8c94100655c16cfa3f
BLAKE2b-256 2472d648f02077359a179e2656fc3e9f16f75799c4e69de8e82af4c1f8dc4175

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.0.1-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 6.0 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.9

File hashes

Hashes for awkward-1.0.1-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 5ac6bdd3ac29b93387dc461195dc73260af5be988a43750d5222c1a8acf75810
MD5 d6dea76c9a4769521c0b6a75ef6c6ca0
BLAKE2b-256 b14f60597df5867ac751dc75042cb2767aae4cf42cdb002cc52bbbff5a191d17

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.0.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 31b600d60a2c3fbd5fb44844cf6d75d12894f23b94585fde9ba654a8d4debd3e
MD5 35bf7570a41fb0e1651641a94aafd186
BLAKE2b-256 312cc14b21712e1768f4e11c2db7e825d1d401829d9867c00e7d765f171fff9d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.0.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 cf1feb571a5914ca6608f22c553ccba5bfd2cc54c8344e19d40be00abdef957b
MD5 015b928f8a64177e0fb3bdff0b8b8cce
BLAKE2b-256 5abc84e4fb0a6fa876ba31c28b399a4b107c60c0d5a8104261eff0a236df5793

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.0.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 71530dc4f88e1f1e54be987e03a3b9ac60d8851c1276acd0adf42e5eecfa3ca7
MD5 13c60973349025e7ecb26e35d20851f9
BLAKE2b-256 e960c453cbab4253cd6acf0907287ff4fd0554494e4f5d96bcf59642905e5ef2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.0.1-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 6.3 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.9

File hashes

Hashes for awkward-1.0.1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 4e402d91875e5cd2171928130b7de3f688e6f45e34a6722ef87ba683c3d0c847
MD5 b37738a10131b487c50ad702d1c2978d
BLAKE2b-256 91f8fcdcfc3fdb11d2019ca8685332fe15ea1adb4af2f8d759002ba859dab8fe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.0.1-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 5.9 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.9

File hashes

Hashes for awkward-1.0.1-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 16103f4f9e71f0102946d90a224e073a575b4313bdb62f112d756f058e88414e
MD5 b71aef488731f6b4bb0da2256e5ffab2
BLAKE2b-256 700a2a5c87ddfbe7d46a87c08567998d343bea913cca246fcf4de5682e9f9174

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.0.1-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 6.0 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.9

File hashes

Hashes for awkward-1.0.1-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 896b70e0869a32262369254f830694a4a7c7a41e8f5635e0f188dccaba93f9b7
MD5 93a83e70b62c153b21bd2d9bb1af21b3
BLAKE2b-256 71afbf00fb58896926df42ddc4835f59e9679d47f1f8028a01971acc9dd39200

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.0.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6b503402d5a2f331ad1614a488abf3ae02a7e1c3c2eb79c46f0328ea397b3f4e
MD5 f0a13d3565af1c3be7ddf6809b2449a9
BLAKE2b-256 8aa79805ee2afc3dbabc042acae35cdd1c3e74b6e326e14b9899f1cd2e36d232

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.0.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 bb849ffc5255cc872af3aa713c13328ac84e37164bed2c289036f2623951ae95
MD5 1b7709f13b3d3b3c5ff7b77180097111
BLAKE2b-256 14aaf6b0c21865c77db29ed4a76722d758a355887ba78337b867939e8f500cea

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.0.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 0e4f42a8d082507a9ac24a46caeb95590432b892c05ce37be2e774df9a24f88f
MD5 335b8d6babf3a03387fa7b39945f2f56
BLAKE2b-256 4b2549927dbff8860367799a379cf0ded2d5ba5cca3fbc3b82a0fed7486f5c37

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.0.1-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 6.3 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.9

File hashes

Hashes for awkward-1.0.1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 5cafe398741c6b53edbecb14e209d05ce016a5ccbf041807e5f53a04bf858530
MD5 84ca2028dff0e7e0d9f0735ac36efa6f
BLAKE2b-256 21eda86f1503ce9bb86c0d719b298b55edd9f2eb28bbc09c54367b13f21765a5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.0.1-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 5.9 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.9

File hashes

Hashes for awkward-1.0.1-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 2b7824f4e5f8105c0ad94a9969fd958a6d54f86c561fe13e157fc14ef0633d20
MD5 8ae2d4a1987d6c80ba2fa587b7b86679
BLAKE2b-256 7a3eae09e1e20139c06ee31c58b7579e3c97d61ffd0e9278b592cd0dc24dd6df

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.0.1-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 6.0 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.9

File hashes

Hashes for awkward-1.0.1-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 de263919775273836aa4e5c1ca773ff8ec469d8edb38b6b3ca07e868259b8d8d
MD5 c1dccd8f6da4e5925b982239eec6faf0
BLAKE2b-256 56b776362544d8482afb2b17fa93e75528b40cb489009099dee5530d6c098f78

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.0.1-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 10.0 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.0 setuptools/28.8.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.5.4

File hashes

Hashes for awkward-1.0.1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 d8647f8c2cbadfe8fbc1d0c89447eed35488760c19169e8046d239c365695dd9
MD5 e7f603a5e370e71e150d3c2aec833953
BLAKE2b-256 18abcad4b3198e945b3b14d648ebbe8c3c3e5961d548c870892ef35f8be460b6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.0.1-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 7.4 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.0 setuptools/28.8.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.5.4

File hashes

Hashes for awkward-1.0.1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 e681006a1e347ef1f4fa28b74e2f62a027f9752e3ed35c3a3d86a5439a9fd14e
MD5 6f7b377ee3ec1f9d28d530c393c7675e
BLAKE2b-256 2e32d290e9b411ce34e0db15e7ca75c43e9eafe2075f7147479869683a8a9343

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.0.1-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 6.3 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.9

File hashes

Hashes for awkward-1.0.1-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 9b398838561c11a08ec0b08ed6e0499016249f71b940ef555a3eb5a18e5fd5bf
MD5 bf9f98d57df58db3ce1957e73b12014e
BLAKE2b-256 39543b79e8e1ab8c29e879ff2f36dd586b3fea0456682c1d2363219dfda52b5f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.0.1-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 5.9 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.9

File hashes

Hashes for awkward-1.0.1-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 01dde4e8c4c8e75c1b1fb66d435b6e10ff3dc401f62ae7c4ab06fa2fb95c6dba
MD5 565b708e3ea7f280f40beb70ad2d280b
BLAKE2b-256 4a69a3ddd42f248258b8f6237fdc736056d550831ddefde84b255c2a7a34338f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.0.1-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 6.0 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.9

File hashes

Hashes for awkward-1.0.1-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 6a2db65f2a35970625f498add5a65d4031b22a6a2df0b510d309de13b4bc5e2a
MD5 3f0515fc6b94183d7ed451f0b2a5e527
BLAKE2b-256 31c29f9dd09a9944e5cf018201f5049f3cd19a128a38cebc2ee971bdd1a44b7f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.0.1-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 8b9f23af2a5a94379d61861ec56e41f5c5334c11d6d45195d165ecc7f688c412
MD5 457e725cf4140ff375b2ca2d2d325905
BLAKE2b-256 2f7055b99d9fcdb92220916d1c9292b0c9ddede12ad62ea262fcc57b33d11f10

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.0.1-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 5.9 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.9

File hashes

Hashes for awkward-1.0.1-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b58a3905b4f20687aa38ddd53e7007aa3e0f47fd0c8c28bbcdf1679a0e0d4bba
MD5 b7353b622bf9384a49b6515b1fc08aa9
BLAKE2b-256 546253425422f99f585b369a07d5b5bcbfa2c4ddf7999d8288f4ff911826da36

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.0.1-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 6.0 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.9

File hashes

Hashes for awkward-1.0.1-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 7cffa52f5a67252435a011ec059e20330800d01c6817ad46243af8578a94d70c
MD5 a783ca615dea914e4732d84126fac3f7
BLAKE2b-256 9eb3436c60ce0a5123738ff7ec87cb436bf5748930a6e36bbf8d1060a36ca252

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.0.1-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 10.0 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.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/2.7.18

File hashes

Hashes for awkward-1.0.1-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 9c34146a60e27753bd99b63a69992e08df84c41f5927ca4c4d65aeb635d3efef
MD5 693f3ee5f480d186a1027bee60a515cf
BLAKE2b-256 322d15464a8ff8b6f94aeaf68552fcd6d05e8cc2043d25503134fefc8a655461

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.0.1-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 7.4 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.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/2.7.18

File hashes

Hashes for awkward-1.0.1-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 cb76fe05e05d2233322aea6c5100cbf910ba29064f70792257abdbd4b02bba38
MD5 1c2ceefd60254837baae6ba52ea14f1b
BLAKE2b-256 ccf75f553f2b068de3ec3b0c981ad63c434e9e83eef91a528907f07c2c92e9a2

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.0.1-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 882cc5f9746999bcc526fc0935a8b0a1ef2a2d16947f5c607a0e07762c016552
MD5 6b51f511c670771141b72d95e0341623
BLAKE2b-256 36f8f7845c572f1c2459ef12cd0db1e6655455ba9b36225a1940d9623db7ad26

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.0.1-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 5.9 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.9

File hashes

Hashes for awkward-1.0.1-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 4ef9ffc051c58bf830dff80908092e63dc3979ac94b49066c573c9de85a6d6dc
MD5 0f2d05c50865f30da1f7750cb8667cb3
BLAKE2b-256 a515a843cecb36022b837eff506a621e0e7e416fc2b8ff003c44d6d06d410ff5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.0.1-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 6.0 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.9

File hashes

Hashes for awkward-1.0.1-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 ea366e62666b8eb782c751c4201aeb483cfcb0cbcdf940c9e25096b9409360a2
MD5 89473e74813c30542bc298e7936c4cf7
BLAKE2b-256 d243fa203da9afdfcaf52a81f2570efaf15c7992f00c5b86ac4b6a6c5e18a97d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.0.1-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 6.0 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.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/2.7.18

File hashes

Hashes for awkward-1.0.1-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 23a22a2620c3a234c01f5a6e06857627dfb1b6a58a13121042c61301711b1ea7
MD5 ad2677f623fe2e74cc8acbabde1440ec
BLAKE2b-256 893c82346210a3fda4d4aa1b6ea1908009bc66dac9e6442f03718e0b2f9fcac3

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