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

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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.9

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

Uploaded CPython 3.9

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.8

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

Uploaded CPython 3.8

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

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

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

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

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

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

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

Uploaded CPython 3.6m

awkward-1.1.1-cp36-cp36m-manylinux1_i686.whl (7.1 MB view details)

Uploaded CPython 3.6m

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

Uploaded CPython 3.5m Windows x86-64

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

Uploaded CPython 3.5m Windows x86

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

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

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

Uploaded CPython 3.5m

awkward-1.1.1-cp35-cp35m-manylinux1_i686.whl (7.1 MB view details)

Uploaded CPython 3.5m

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7m Windows x86-64

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

Uploaded CPython 2.7m Windows x86

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

Uploaded CPython 2.7m

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

Uploaded CPython 2.7m

awkward-1.1.1-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.1.tar.gz.

File metadata

  • Download URL: awkward-1.1.1.tar.gz
  • Upload date:
  • Size: 906.3 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.1 CPython/3.7.9

File hashes

Hashes for awkward-1.1.1.tar.gz
Algorithm Hash digest
SHA256 ecd885f75115b26c4407a2249f895312d4548534b17117af9e4572a691745132
MD5 1b0c07f9ba9f8f7dc23a7aa2259bf909
BLAKE2b-256 038e70034328f6e3022a0e975d2f81b925b18fbdcf4803e03b8ce907f33e9ca2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.1.1-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.1 CPython/3.9.1

File hashes

Hashes for awkward-1.1.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 3d5a99b1177afe61fe2fc4420fc737397cf5d4487d5409724c2dca92c0edab3c
MD5 46323e5e40826215ed4ae689ace7ceeb
BLAKE2b-256 1e9ee0cb465da15fb230a5cbd36c06de41edfc59de50d38cec55ee4943f23fc8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.1.1-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.1 CPython/3.9.1

File hashes

Hashes for awkward-1.1.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 9490ccc4139f84df9282596719b7dcaa57c80623da663c638ad1640f3dd53d7b
MD5 fbbd8ba1b4e278a10f3014efcabe44ef
BLAKE2b-256 a98eb4b084f151c1df166b6f407aaa575a6a94899a04ee3a63fae80efa9944a3

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.1.1-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 d538c178a2a0ceb7971095c78633a06de72c7732632847de9eb5fce10da1ce97
MD5 a998396af2d924d7616f6bc2ad8c48dc
BLAKE2b-256 c098a6d45d612da4b66a2a12191fa96d352cd1e8c2b08676f1c942d6352dabe4

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.1.1-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 943ee2393ac818d6035e5f29fdec334bf80b2089e98cd82fdd42abf05d813b72
MD5 5cb066bd3a7424059b927684e2dc7f50
BLAKE2b-256 a9ae9461a17dad4e5db73f21945ab42cb9e855c6dd088be130619a923b5753a9

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.1.1-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 b3324e03ca6733d4ecfc8e9f006d4d7534d9ecf3c532b70fa140a6b08f62b02c
MD5 122a3383098408c190c7152844eafdc0
BLAKE2b-256 8536361143e627ee0817356807c8252cd301781f27daa64fb7c7a40a6866875e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.1.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a18210822cf6b111845b35bed53f85d07eadd37949fa65b88c5da14dc6f52560
MD5 4e2a1a6c0ff0301a0482a1a287b11d64
BLAKE2b-256 945c6d3ae52a1b69f0e2e378ba41d6233ae58dfa0e1bc741edd445fb8385bdd9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.1.1-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.1 CPython/3.8.7

File hashes

Hashes for awkward-1.1.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 7309fef56e9c37fce45fa05a6135b394783fe5487eb486daeb891df6d888f180
MD5 72d9fe478420edc449a28c1c6f4bbeac
BLAKE2b-256 4262ff7749ab560c4185ac407e8790bd53f9b6263c173dc4cca79b6234f2c86d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.1.1-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.1 CPython/3.8.7

File hashes

Hashes for awkward-1.1.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 74e131269b7d4b944005fff77b7c6a9a40cd75f57d44cc040038bcc7a018c3bd
MD5 6e13b4dca4c80729a075407adcbb0575
BLAKE2b-256 ef7c3eddea56d2570de8acc6ae91055f9e3cfd67a1b8c782e7ae033747116105

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.1.1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 67758b8706c475834be814df8e4244d1c408aac5eb8151bcb949bd660575604a
MD5 f6674a86b55e9cf2ec70f518b9b9e594
BLAKE2b-256 a353069495d1576624eb91e4a58f615ad9c9e8fc1c09f8c51bbe1fe7364a64d6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.1.1-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 70781eb242735041f4bae3e4ad6ff8650c8ac33c17542e3d746e332cc6d44ae5
MD5 19593fcd51eb885b32e355f45a656dbd
BLAKE2b-256 ddf75b5de8f229aaff79b5871e946fe225068e7efedb8240cc32861f8be03ebb

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.1.1-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 226e74f8093ea184afa75100612940fce814df4adf755841631fc80482f24a96
MD5 efdedf78a14c699f720f65d3890253b9
BLAKE2b-256 cb02b86cb4420fc42fb9b727567a60959c38aecdfdd7c67b018ddb5f1bdcf9f6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.1.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5a26b5d2e0162b0de6244f2fbd4aadc0d4b3a8582bc7c124edbb9b04f89b5725
MD5 bb12872c5d6e51d9095d6a79be73ce5e
BLAKE2b-256 0ee17fdcc055c52c7f951f661f780e2907a3cecc6e3302827ce8d082bfbbf9c9

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.1.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 7cc1f68cb49d2afc9cad3cd55a863b9d34ab7358e460cfa12d3e3a8963a90d03
MD5 40853a6c81fb5c55cc7d4d7acb743843
BLAKE2b-256 49cd922fc9b0bba0dfe349b89256f769e9c06a55eb78294a2148386ef87c393f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.1.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 a8a8d4219aa8732f4edda587ed03969362c83a9e1d9ea1352f3f15989c08c37b
MD5 2e199029fd9d237c9b5e42c6bc97e0ee
BLAKE2b-256 4a690ec5850b70d6cfa4f14ad54a3a8a0e3f9f2ba12b9a47048262f190167dd9

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.1.1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 fbb6c029b4858dee02367f18e653d3a581f4f45bdf23e88e639c1acffcfd7533
MD5 4694156c5b36fbb26f57a4a5042ff3e3
BLAKE2b-256 32ed733c226a22bb5a3cff5428a68f5c25c0a380d6c6586bd1e228e269c291a4

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.1.1-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 fae2abb5e20bc4b545d04cca7f2fc5840918c5c2d6734fb936a75581f38b17d2
MD5 5d814b121da5e5d12380eb59c605c29c
BLAKE2b-256 e2b5978417d52317f44854e9cf350d5fdbd38ed48238e5f333a2d02957fb3938

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.1.1-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 1d5671707852c4f9920dc63943c9e9cf88ac0c50fd530e48ea1072acb96e78b7
MD5 36f65f5deba87bd7f6ba6173f993b2c3
BLAKE2b-256 0c47fa82b045b3ab05d0b3df0c7c78a8b545838ca419dfc3b91490df2d65a593

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.1.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 47c27331d3229dedfd2798bfa2495dbb358a2e51afc5cafa02e9e784c1f14fcf
MD5 e5d7417ae395d1459b359a8d9b892016
BLAKE2b-256 f29ce39e1f9eff424aafb10f3de94e1d93e504c24f9986e8a8413e2f076188c8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.1.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 b4068be450e6cd7980d962ccd3168df83240d344dfdbaf8f7412f606264b72b8
MD5 b13a22408ba3cd6e49ed355c74d01c4e
BLAKE2b-256 b864f2f8407ac5cf75a73da82edc1c88661543577d1a6f7c7aa3f8a201620603

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.1.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 736042ed0eea259d268a7e0edf9e356e01cdb9f20a6ddc99518224f1df3aab9c
MD5 dad06d74ba0268b7b0b3bd6d96ce8683
BLAKE2b-256 cafbbddd7aa8f34f07580e9ae5c20f4d0de54c2d4d2ca45b66770c23936d5584

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.1.1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 089518d80c4ed3f8454da4f191227210f6548f3b580079d8471f3392e5ec1ecb
MD5 80c2d99dc2700be4bff560e21c06ca58
BLAKE2b-256 c20382de755d4f7055877bc61af20ea7eccdc54b7a5cb8996a1f169b689df50a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.1.1-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 6562be308b94ad9ebb917e86885ed4eba445bdc3e37f276b1be9267c3797f0e1
MD5 58a15ba3b6246da3d55463a6853797ed
BLAKE2b-256 b34067000b14e40b770310d7d612aa214d86fe0114ce9875de1b724decf259c1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.1.1-cp36-cp36m-manylinux1_i686.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.1 CPython/3.7.9

File hashes

Hashes for awkward-1.1.1-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 2f3f2302f90340bf926927f526f7892537988318038d8973d94ef27f4db29486
MD5 48ad104cc4e1992185a7b14815645a16
BLAKE2b-256 e047bcc2291b886f39af91ada3249c3cd7efddf65c06be6f916c047311a93205

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.1.1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 d64ff1ec8e328d72324d9c89b1fc0934c2c9bc525b1e34132ca91bbb0fc9ebbf
MD5 1a425ad681264d349d0f58d64e4849e1
BLAKE2b-256 279fd49eba547a38041b6fcc93f7d469c54e0cec5e0c6cb6e29dcaa260dbafac

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.1.1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 571ff9855c1e27bcebfd9050f0a5012fb7a4b613be2f91cf9922c4e410854fda
MD5 55b69ca76524d220844a29e0a611e4ca
BLAKE2b-256 ee8fe73e54cece8df2e8688ad3fac5a1c174b003d8feab721ffa589d60c8a96f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.1.1-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 038ff6ccb542611851c5aa580def68b93b09faf4127e73296bb20654cda2f12a
MD5 2949d6812a9418936beb82febb8fa2d2
BLAKE2b-256 a559e077c1a12f7299c3f5b40fea9968b09e0c2e0692f0247a6cc0fa448c3ecf

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.1.1-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 bc19e85dfdf695ad32252054503da4a59b3df60db04d2088880e248f215ef118
MD5 66bb9bd84c9249cb8e372892c1c108b2
BLAKE2b-256 8ad19e959ac134d6f4ecda1a398f8c39e785e3c3d327008ba25b50f37b1efc0d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.1.1-cp35-cp35m-manylinux1_i686.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.1 CPython/3.7.9

File hashes

Hashes for awkward-1.1.1-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 3aa633e667de933edbfb7715087fd5e4e46b70af85d7d567366710719684484a
MD5 17ea391d481a2263edc3d909a2905a0a
BLAKE2b-256 9b32c3dba9543eb2192f053fa2c06460c5bd65d3bf6fb9d8edafa1ab2c029322

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.1.1-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e459ba6886c6cfbf8250ebee9be5cc43547f9acf6d6dc407d9997418bcf5ca00
MD5 dcab9981ba9208567ca84ea8e5f7eeb7
BLAKE2b-256 67bbe09816ab1ad0dd1b3e94305e0643d47130a173ca4cca0c2dbd0eac0dcc50

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.1.1-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 5baaf76f97549aacdd8ef007ad7198387ba07680d3090ed57b4882f741d0ead6
MD5 28f5a176eea100c99c9ed85afd535d3d
BLAKE2b-256 b2b8d4a3c174f720e84af8c9d895d88b11bbfaf3e179343c50710321e1e6a281

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.1.1-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 6b3abac66d6bcaa3eedd8dafb54929e67846f798986543b8199cd4d2aacaa78d
MD5 ba7781db874359253c74aef636c5f808
BLAKE2b-256 75d9a59212b58ecb519d9637f03559635c72ee51b549fc00feea4c96181446bd

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.1.1-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 543a61d93fc7c447332a7436c204600869399411f20b08602e86e42616346023
MD5 51a742607e94bfb24eb37e1be9730bb5
BLAKE2b-256 13ce338278f750e99b42e3db484ff6ddbbc215ff102888cf5f3883e96731982b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.1.1-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b612d0e575c656e9c9c404928b67fe3d0a42bce177437318c67dda6452faf51c
MD5 8579b360624a4b2c41c4105520504f33
BLAKE2b-256 83fc6c1aa81e79eeba7e895cbe66190c344e8aa3e37ac8c3deca9f23b9a1a08a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.1.1-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 026b239b4cc0a3d912c66a09de76f96605a22a1a2d6cb21dcbccc4cb5f2a618c
MD5 2fa4c6b1fc1d25a395446d4f1d250d15
BLAKE2b-256 12f86e0be9005396210998a096c29e6273ee65269942c5cf81c907a56803dc63

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.1.1-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5b2fb6c1daa87411115b068b37abeae55e2e6758a1087cca18b2c01c7f0e00ad
MD5 83b2d28d8066f8341b06996505368068
BLAKE2b-256 73338cbf72079676a6268da541cb5a8f5d146d4788778adebd6595cbcc3d081f

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