Skip to main content

Manipulate JSON-like data with NumPy-like idioms.

Project description

PyPI version Conda-Forge Python 2.7,3.5‒3.9 BSD-3 Clause License Continuous integration tests

Scikit-HEP NSF-1836650 DOI Documentation Gitter

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

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

Motivating example

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

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

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

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

The result is

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

The equivalent using only Python is

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

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

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

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

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

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

Installation

Awkward Array can be installed from PyPI using pip:

pip install awkward

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

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

conda install -c conda-forge awkward

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

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

Getting help

How-to tutorials

Python API reference

C++ API reference

Release history Release notifications | RSS feed

This version

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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.9

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

Uploaded CPython 3.9

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

Uploaded CPython 3.9 macOS 10.9+ x86-64

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.8

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

Uploaded CPython 3.8

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

Uploaded CPython 3.8 macOS 10.9+ x86-64

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

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

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

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m

awkward-1.2.1-cp37-cp37m-macosx_10_9_x86_64.whl (7.5 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

awkward-1.2.1-cp36-cp36m-win_amd64.whl (11.7 MB view details)

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

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

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

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.5m Windows x86-64

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

Uploaded CPython 3.5m Windows x86

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

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

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

Uploaded CPython 3.5m

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

Uploaded CPython 3.5m

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7m Windows x86-64

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

Uploaded CPython 2.7m Windows x86

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

Uploaded CPython 2.7m

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

Uploaded CPython 2.7m

awkward-1.2.1-cp27-cp27m-macosx_10_9_x86_64.whl (7.5 MB view details)

Uploaded CPython 2.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: awkward-1.2.1.tar.gz
  • Upload date:
  • Size: 1.0 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.7.10

File hashes

Hashes for awkward-1.2.1.tar.gz
Algorithm Hash digest
SHA256 71882002d82178bce411dfb86c35045a24ae452e9b68b4adc9119762ee5678c9
MD5 361fdf983801ca326ccf85396fa6866d
BLAKE2b-256 b25397f129f4f51e0f20f8f8e894305bfa6bb637e05bef7596a746d982838961

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.2.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 11.7 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for awkward-1.2.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e163cb43b8a5c8ba229da76dbf6a06bb4a4b2905fec43cbaf3200d8c199639b5
MD5 6dda3df967623e9820f684469ce1586f
BLAKE2b-256 c6fe18c0af34c9d913349520298d57afcb799c8d91e81b9589eae8600d1601cf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.2.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 8.7 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2

File hashes

Hashes for awkward-1.2.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 d8c9a8db78e0981b0d0fc9ae9ec176f0f7e2597501a68b9bb9e460066bd183b9
MD5 fd67fd6b0489173feff7f8b44b292463
BLAKE2b-256 f53295d36dae2e0cf20420c27e0c71cc9d4428f224bdc1ed52ee5b9def45f70c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.2.1-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 7.7 MB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.7.10

File hashes

Hashes for awkward-1.2.1-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 de7ec3f212cc06c336399ffc4047cb0a3b0e0dd304d9349834616ad2d17b2f81
MD5 7c7f9765d51ad2d0ac62d779c61df867
BLAKE2b-256 8cbfd5c397e253c2b03f8f625f2fa6f792738439b37c73e0937111c43159a44d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.2.1-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 7.2 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.7.10

File hashes

Hashes for awkward-1.2.1-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 330bd98f734dd5d52aeec390ebe10efcff815c8d52ec9cee24017d117731b1fd
MD5 34d768787c8f93549e5f15c5ad085d50
BLAKE2b-256 92d5b5da8fa6bb1af3c7fb4161e5e1553de88f30f3e13cd0f0d4585d784e60bb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.2.1-cp39-cp39-manylinux1_i686.whl
  • Upload date:
  • Size: 7.3 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.7.10

File hashes

Hashes for awkward-1.2.1-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 050094122827b27247597cbc898055a0fc4acec379712ad24f2c7a4149a58c92
MD5 8e2bd2478e16325665a510fbf2035b30
BLAKE2b-256 ba157c7e7ff6d73331bc3b35c1389e33353a79994e69d58a5bce8cc4890e4fd2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.2.1-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 7.5 MB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

File hashes

Hashes for awkward-1.2.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8a1ed444cf6604bac775b500b4a3c89796dc61347e4c4a453b1506fdd566513b
MD5 2162fd36a24b0f6ebb9b4881ac84471e
BLAKE2b-256 1d22ec7a175b8659ce13afa6c28f54ea08b846eb38965953a173f6dc2b3e68fb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.2.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 11.7 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.8

File hashes

Hashes for awkward-1.2.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 4d2c4346db593022ad0745112d8b51e06007d55305269e665b967d833630b80c
MD5 c175bf3d8d0ed78b7b6ecb9669ac83a6
BLAKE2b-256 86cf4fe5a2d62b1cc9b3c17ecf0b8e6f52dbdaeaba049fac178f29b54604e6b8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.2.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 8.7 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.8

File hashes

Hashes for awkward-1.2.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 23c025dee1e6282ff8b4d744d1fba96c231dac3e1d5d4b00e6d8789838be27e3
MD5 def3cb77c4692c13f0e79af2157b2569
BLAKE2b-256 def95f782bf1d934b28a37b7b3b1389273c48e8b6175f8c2c4f91e5da384b8ee

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.2.1-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 7.7 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.7.10

File hashes

Hashes for awkward-1.2.1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 b10a7d136708f27ab6784940458737d90ee007b324d6404fbb4b57ae9fb95bd0
MD5 0433ef48f1b6949406e681e949ef3b90
BLAKE2b-256 968b64fee1c2abf1fb02f9a6b9eeac91a79d8fa252d6ade6537710abbc983d04

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.2.1-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 7.2 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.7.10

File hashes

Hashes for awkward-1.2.1-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 8e886a2ca18e471735468c125dd4172f6da2405fbfb1b20d7ca5079ebcfbedac
MD5 6b700aa386ac60ff2c446ba364f96314
BLAKE2b-256 b673719aa6ad75b62d2cbfad01a87247788a647c61b8a67898258f088d002525

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.2.1-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 7.3 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.7.10

File hashes

Hashes for awkward-1.2.1-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 05031e54c93c66fcd59feec9589c2c06ac220b3752d8d518453ea28104204d16
MD5 947eee14cf1ea830202f25f43d6c231f
BLAKE2b-256 36d3099f7bc4e4100d55067e1fffda65f9175d6f7c2353072e06745f759faeed

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.2.1-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 7.5 MB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.6

File hashes

Hashes for awkward-1.2.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c9c34a709d5d7f2daaa0e81f8f673abe831434e77b05358e88e47e7cfc656521
MD5 6921d044d7b8db918b71fe3d18911d17
BLAKE2b-256 1a3dca212a3f9fbaf116a3f66dbebb3d641ee15d61013bf71313c2f986926ca5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.2.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 11.7 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.7.9

File hashes

Hashes for awkward-1.2.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 b21b5d8cad9562fc8a776b81f1b7d34e36d0a19ec8053c05a4b6c67b7dedfda6
MD5 87ff9f2cf6ecdca2ebb7ee974d3b902f
BLAKE2b-256 6c4967cc2f6ba02eb0fb650e59b0130657acaecbe7e1bc46604d68bf0027bdb4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.2.1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 8.7 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.7.9

File hashes

Hashes for awkward-1.2.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 381e3687c4c0629b1e28c41cf62f2928756984670256a4d0795aa78312eb0ce4
MD5 1d864124c0c2c4564547c7fd70a56c9c
BLAKE2b-256 4b96c6c3937706bbe7efca0d4b6723e59ede726091b35c7a3852f52e10542d96

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.2.1-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 7.7 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.7.10

File hashes

Hashes for awkward-1.2.1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 14798913f34bfba49d555b42f3403063ec7157fc9f66173256f2c5ed373460f1
MD5 00a3e9906eebe7edaa419946365a0451
BLAKE2b-256 e74c4f119656bd85fa3a486ac2b188a51d38405a4b472e1e9bb0b92c0eb0afa0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.2.1-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 7.2 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.7.10

File hashes

Hashes for awkward-1.2.1-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 744a4919aa31911179f53f5b6431bb3d4ddd87da9ab2cc34eb3e92ed6062f997
MD5 ff491e5a7196167fd6bf48082519c338
BLAKE2b-256 cfaaaa363b34efeded0d1ab3435605b0725920f0bb45aa7f3156c0a469f478b1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.2.1-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 7.3 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.7.10

File hashes

Hashes for awkward-1.2.1-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 be1899d5bb3870fb5528a24d6f4f622b7b7eecf6d8341bef099f0ccb7a2ab8c1
MD5 44348e084901734565891faa5fa8bdc1
BLAKE2b-256 2a9e1fe9fea260ff569058418ca75aca4a6d28e6e7c1ff91e0a97206562e0c1a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.2.1-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 7.5 MB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.7.9

File hashes

Hashes for awkward-1.2.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4c5cc7cde5a3315cd069794d82460bff060508e3d53de1137763bfebfa4a68fa
MD5 92890443b4ac03386ac6abe072021023
BLAKE2b-256 a41a08383129e2b6aeeca8ebcd10f46fd5739020533bbca5e1c8cc29d3e3c72f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.2.1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 11.7 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.6.8

File hashes

Hashes for awkward-1.2.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 c05ea5fa1ceb5e299759808fe1ebe215cf6cc8c50690035b653ebdd9e080c5d8
MD5 9784a4e7754809f5d82923231284e93a
BLAKE2b-256 adb842162f8881cfbd5cfd0dda8b471a0409e7310ca72382024068d2b9d82f81

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.2.1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 8.7 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.6.8

File hashes

Hashes for awkward-1.2.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 7e9e2ead61891115e7c872d6bb8ea0ee3143a333da32960d661bfcbac8290c6e
MD5 17a3d07645249f9cb4d56488994afacf
BLAKE2b-256 74e15f06f9d280a1d4687334ec3949e69a5e430c81c6f320e4b41abb7d5ad3ea

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.2.1-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 7.7 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.7.10

File hashes

Hashes for awkward-1.2.1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 6393080b2d64ad4a5371fc4fd846ac798fd803f1e5186c055baf2a6919e889bd
MD5 52c24485b5f8e3b1c4b757f0ecbd046b
BLAKE2b-256 f37f5227d518f53dd6efd7ad1335ac7c347083fa95c7b825e5aed5351a5be07d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.2.1-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 7.2 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.7.10

File hashes

Hashes for awkward-1.2.1-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 50d94cf2fc435f4fb9e17c44b6e081a4b5c1f1b6b07ca583012ae752b412bd8b
MD5 d4694bfa4b7c755e53a5a390eece7cc1
BLAKE2b-256 8e76a638dd49e161ee3730e4aadf927b57720db0bcd587c6d2e412ad6903aeca

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.2.1-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 7.3 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.7.10

File hashes

Hashes for awkward-1.2.1-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 11a0c88c73aaae979d49ddcdb056c09247d8e98dc5682bededad7025961e9668
MD5 db96c4d6ea74fca26a896a85c2dce044
BLAKE2b-256 ab8685df391bbdb21f2fa4620e2a02bccdfe0091a7e29874f37bbac9ea952bba

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.2.1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 ee93d6d38a70f457d850aeff9022d446dcae5ebc4b497166d6125c0a401f2edf
MD5 5b3fed32e77c9176855256f349b912f9
BLAKE2b-256 b6127222c4232441e34fc347709530991225671044a97f9d3e80e341a5d56a49

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.2.1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 a23b7482ed0df8a79903fa8f43ef76d16a406f00d5597df770ecba6b7950670c
MD5 4b680a183d82e968f68ddef5f10184f2
BLAKE2b-256 b044bef4d6d836bcb1358604f570233a9cf7bab71d39b7439d326d80317e0ef3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.2.1-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 7.7 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.7.10

File hashes

Hashes for awkward-1.2.1-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 3bd49d6caf0ff45e79edec405c09e4e3442d46fc872e2a79eefe68ee7bf658dd
MD5 b248fd011bd69608524f7c17c89689c2
BLAKE2b-256 cb5a73c48b240a03df63bcca2cf2db5b853f909b9ba486557127211fc35d9549

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.2.1-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 7.2 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.7.10

File hashes

Hashes for awkward-1.2.1-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a07ecf293d3a63608f918b33b51bc4eb49925c03f616f9cb18cbc3afeb158ca4
MD5 39979f50f9d877b26e42830e93168445
BLAKE2b-256 5f62508900cb71c3a57c8711678acdf21ea5e72a65e64ef36107132189b2355c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.2.1-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 7.3 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.7.10

File hashes

Hashes for awkward-1.2.1-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 98d00b899180dd757b2293243ef166ba4db8ba54f4116110e6baa5366bf92b1c
MD5 81eb74870c63df1c662c0cafc145f21b
BLAKE2b-256 b16932aee396527acb253343be0c8cfa7cc7c9b3c3188ac8e7b67d3d4f2a8c90

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.2.1-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 7.2 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.7.10

File hashes

Hashes for awkward-1.2.1-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 33300086fc5235ffc0f5cebff9b41d9f517710d310689535fe13f9d79bf981c5
MD5 9261b9230d5ffc1e5b94ba3382ad2902
BLAKE2b-256 fd11c6632d84e30f65e28bb13ddd7a30df1bb2dd4e28d789b35404206e31a22f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.2.1-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 7.3 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.7.10

File hashes

Hashes for awkward-1.2.1-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 a83cae47aaed337e46d19c6754007f1995bd221a0bb1933400f60b4da8af3360
MD5 c176fc36230b90b0d835c45855f440aa
BLAKE2b-256 bafbdbce3c01da5efb1bdd7bd308b5c6f644c89d389ee54afa95409b8d39e0da

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.2.1-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 3b8b9c5b99110a0aec4a67eacd3ee26108ace8caaac77d06b028ccc29e8a40b1
MD5 92f2ed2e5c440d75216c3e2760b7dea5
BLAKE2b-256 e425693c8f2d295e46e0435e871a1ec975d92aa7d3fefc3fa8e2f59269d4ef43

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.2.1-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 d659e75d8ca1571ce552a522b6d93c1c2b9fc9913fc6bd0127c690326416cdaa
MD5 1a8b09bfe442c6dd8bd08f0bd6585620
BLAKE2b-256 479f73de57d78f6043d8061bd382e1bea365798ac558ca6c80e2fe07fe540df5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.2.1-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 7.2 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.7.10

File hashes

Hashes for awkward-1.2.1-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 6421b16fcd19be341932b8475ef39eb47af33d43dc5f5704da7bfbafea11ba94
MD5 be1efae67f0908d46207420cc2420023
BLAKE2b-256 58d600a27ac3f4923c9c137decad64be6c0b7ca93e8b164835e7790d47fda9bd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.2.1-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 7.3 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.7.10

File hashes

Hashes for awkward-1.2.1-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 423729907889d0d35c9ad2d2f38eaefeffbd704f7ab89b638c8611698b52531d
MD5 bb54cfaaa155a1a4e6929649c349edfa
BLAKE2b-256 06eb715c3083372478864039f6781c9936b6f8211d35c9b27e879b9ee0ba3305

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward-1.2.1-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ba389dde186bf6eb884a35d8117c9b74d9a2f44ce0fb713180fd0b46a796c4bd
MD5 00f45fccfaabdbbb4e873717628c5c11
BLAKE2b-256 0b77d161bafea37b44b26bdde00d9fdf8c1d8e50ccd2932a0bb359192384f8ca

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