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

Project details


Release history Release notifications | RSS feed

This version

1.0.0

Download files

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

Source Distribution

awkward-1.0.0.tar.gz (804.1 kB view details)

Uploaded Source

Built Distributions

awkward-1.0.0-cp39-cp39-win_amd64.whl (9.9 MB view details)

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.9

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

Uploaded CPython 3.9

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.8

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

Uploaded CPython 3.8

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

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

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

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

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

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

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.5m Windows x86-64

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

Uploaded CPython 3.5m Windows x86

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

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

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

Uploaded CPython 3.5m

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

Uploaded CPython 3.5m

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

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

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7m Windows x86-64

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

Uploaded CPython 2.7m Windows x86

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

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

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

Uploaded CPython 2.7m

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

Uploaded CPython 2.7m

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

File metadata

  • Download URL: awkward-1.0.0.tar.gz
  • Upload date:
  • Size: 804.1 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.0.tar.gz
Algorithm Hash digest
SHA256 b0fd5d74bdca62e6914e4d013aa10bc5fa67b8bf60f3051c88f2f91d3a27c199
MD5 bc9cbdbfbefe23f7fa8069386577ba0d
BLAKE2b-256 d13bfec04ad68213c4bbf04411e644b5db84cd05b822cbf61d1db243830a0d28

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.0.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 9.9 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.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 0ef06ce4143e36ae77a371d4bd8ea77658341b5f85b6b38199c8f0c479de7ed7
MD5 9131508bf76c4fcd6e256c0fd9ae0d2f
BLAKE2b-256 cf4028c0ed50341bd82646a7772927cfba62f567ad01435300d2cd92fe7701a2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.0.0-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.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 8527fe985edd5e3f14b3f68a5515618cd73ac00422db8cf4b495b8d3b7effd9a
MD5 3f76d091f4765761c0c05ba9f68401ec
BLAKE2b-256 558ab9a05bff8117c3fb302b4d5d1f7adf0bf433ee82bbdca9788b1e44e97ad2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.0.0-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.0-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 434e55640b3e623ff2a9b85490ce8b019a79af6fec9a6b7dd9c42ff68a8719af
MD5 c1dcada95e7797b6a8b55c0d28750b5d
BLAKE2b-256 b52b3f7e755a742b69dd15c720699bd484c60aeb2fa697b051afe10bc90173fb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.0.0-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.0-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b54402fafcae828ad6ccde76851a83852e4f2bd292e1f263f6a92a9b216d4b92
MD5 a7e2a99e05a7fbae49ea004a90070a8b
BLAKE2b-256 4f80d2a32adc71aee9ad3f22f7981c6381bb8a8327b98a9544bf791f0b4195b9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.0.0-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.0-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 aaacad52cdb3a415546a4ccb2ab6ff34551ec773456b8485a37ff2af1050bb9b
MD5 d80ac2faa4fa06946bcbbb9acaedcefd
BLAKE2b-256 a9200d297a8be812585556914b42a415181ae9ff1bc022f2cb66eaa34d6066e9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.0.0-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.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3f1b63d56fca671e631df634598b58e714a435e35d654abd72900402de0ba10f
MD5 6f4de8218548338376102209eed81861
BLAKE2b-256 65d869ecbe2b0587377cfaebd3da33a83df6a501538223739e5a3cb4c2ddbf6a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.0.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 9.9 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.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 1d2b78d2a7e0473c7e39c35814010c7feecd993966540487f06669aabb58a6a4
MD5 eccf278963e5b7c22742abf5f7ddcfc2
BLAKE2b-256 f7f5dce748e980918781aae39810380880cf88e008c0242e5cb5c1eaee346895

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.0.0-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.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 4bbb37302ee18a8b80752569d27db6ae2120c5b30c6fef0b4c612d10ea85a2c1
MD5 cdd23a83d699084ba630becad36bc4f0
BLAKE2b-256 0fceda6a655cde1837e16e22d9abf096696d882537957344505f3a6d5622091a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.0.0-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.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 b8f4576c01f83f0d8f986c324907027d39c3403b7be81738753ddb741edaa763
MD5 a605925f88ef47515b90184d535b0105
BLAKE2b-256 b8938da49f0277f6bb39d885144eb92bdbfcc42dbe53b16ec16f8b4692c0a780

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.0.0-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.0-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 6aaba0a5d5d1fd36f25a7f737660c6eeaae97e27e5dff93d0a0a5db02134932a
MD5 db4e71d3988739d3a4f43722605b0de6
BLAKE2b-256 7d63c6b378abbda2f03f627775a3bdfb92cf13cceb5af53f47797b81dba12409

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.0.0-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.0-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 67ab14a6c230875ef6dccf3cacb4cc394657288e83a75d594520f4207f035f9f
MD5 aebfef1be43876337ac7c0016e2780d6
BLAKE2b-256 228cb48b0ce65a2c96e5bd7c1401c9331605a2e949659770a5a49c7856cd12f1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.0.0-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.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 30a4b155332995ee5e8da7f67380d4255ce2238097d48358b54262ed963aa359
MD5 cdd376fee0be26560dda30bf5a0aa137
BLAKE2b-256 ce256b820293f82c1482c23158c450f53b46f30f69f83b517c8af1b2fa439551

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.0.0-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.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 f00527b2e4322038864b051921d3655c6a9c18e74b42f7b45a44da78d73c818e
MD5 0fcf5fc79449ddda3027a9ac1b90f90c
BLAKE2b-256 a794bf9f369016696cba99e0203b688810af1961fd82f20f935f0bd9533ed3ce

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.0.0-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.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 7f54f939b91e4ebe66d6570523afe33338e8b65972152c6d23c33aa369aa4428
MD5 b1bbf024cdb60a30f1c3aa6e15cd253d
BLAKE2b-256 bc88e1be0ba691a2bfe57e82cf2b6c70e0f75c39b315df64f78b51f240c1ac4c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.0.0-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.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 b219c302c2dcecc3d5c67a6ed942afcfd59fcf88f78d9038e4fa2807a48d9b40
MD5 78eaa7f31990d9e276d7749b5c9da553
BLAKE2b-256 40fa7215c75bcbc368e96d556440df5141dfda675aec4c93b012651310c4022b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.0.0-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.0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 2d265c531fa724a357fb2597ead48560e1e66ae7468f2ce13f7f401b217590b8
MD5 d2fbcdbc41b066906cadb0507be15a22
BLAKE2b-256 f66a5702f8a2b9652cd7d4b16288c0facc33f683643383f83088ec1eddd12938

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.0.0-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.0-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 aa398c076d5f355f4338d71cf430849222324143ad8c48d8337912dfa3b41f87
MD5 2aeb1c90bfea09d7f5576f9e823d97ca
BLAKE2b-256 a2b7d41ddcaa31fb3ee865b61ec43c6a404821ac23c617344506ba965a868cf0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.0.0-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.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 25834f3d648c060e2b66f772bab009b142cd62f1e0e8daba8df21cf7c86c71d5
MD5 184060ee0b9d04f54a444c861ff9f4a4
BLAKE2b-256 1b59c768b9c87158b5b1a0891377eda9b617ba5d3329696a0df13fa1f51abfb4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.0.0-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.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 2c966e083cdea4f548eac4b847838eba1a16dcc7c839d071d5a172e730465114
MD5 7a0921161dd4e4861576b5a46a2fdcc2
BLAKE2b-256 85df849d551a7d3c492c11fa80349604013e3ec047835917a0086825ff0da813

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.0.0-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.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 6b61a073004ecb74fed82024d33ca7af8e68223d7145e7be3588fe319d58ede4
MD5 4bc815f57669e97f6fe14fdd48de825c
BLAKE2b-256 1e29e0285b3a877fd40276232c1f4ec9b403f72b4a79f42286e8116453992a5f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.0.0-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.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 eddaedfbb6e2325edb28c2dfc5019d909f1122fae06e3870f093da6406b3ceeb
MD5 664ebc9a635b72963e3691712a022413
BLAKE2b-256 1f5ac3a0851e9970ba08c09fe986209c776beb4033b85247b2dd8adf516f748b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.0.0-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.0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 622be2667d7429d387915eda41710a041ee77ce11603605659f71216500f4c9a
MD5 c4b0ba59c30b836ecf3dad1b3fa4aa51
BLAKE2b-256 28539a2bc2dbc77b539010a3183acd7195c9bf8e1342a040d6f6d00e2c663baf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.0.0-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.0-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 15e472841daa5b18dd35f611ef9ae0170ddcce6a25a8c277c707fd659cce4782
MD5 0f0dcc01de3f0eb267d0a6c2f5f373b4
BLAKE2b-256 724c6143d7376182ccc9e854d9e9b0c75375b6f6bdb562cdf37bb5e57d2b5e91

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.0.0-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.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 6c21766f03606969839c36777d0ad7ccecaa93a141836028e7fe9275db98cadf
MD5 16c852856335d4994d4b34d964d5854e
BLAKE2b-256 b53b3fabde2a55534109327444cf537ef75d28b663ac09cec469246013f77e0f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.0.0-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.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 af6e929fd24937705bc5e4f5d0e98ef5d9d85266a2313c754afcc20736bf036c
MD5 7309470f1238eb38236299cdd240c1ac
BLAKE2b-256 f3a94867713ff5b05c634226d5fda8a27e52b5581a588a511e5d2b1332dd884f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.0.0-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.0-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 35b952f2abe4825e44f7f99750b9ad22dbf01d3654feaf317c8f3a940c2d0185
MD5 62a86e254edbae951d8543d4dd9d1162
BLAKE2b-256 3554a6059cf091eb908992c9356b8a8c596375ecfa27b7c9f3dc05e1b5cfa17b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.0.0-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.0-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c85e2b6f518395d1f40f9de632ce54dbad5b713ab960b34e2853b810ac034623
MD5 b3d88d0fe24fe371d4cc2fb3d71a4186
BLAKE2b-256 e0758639cfd1a7e0d8158905229e1007904fc10b0846360a0098324f6b7456af

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.0.0-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.0-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 fb19377e4314dbd9e8a4479892c60080fcfd00a1d29f203f4b95827ae0f52897
MD5 6b8f5b6b0b00d2479b8e0f0ce4dd88eb
BLAKE2b-256 1b4bd7c8ac382202af5e733a197d16c9702bf1e0a576120f4645a3254c894367

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.0.0-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.0-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 82bb7119c253aa0f704856d4bba12bbc0bfc090ad47718667ffa980a5e300b54
MD5 cc2624a2c76a1efb59d963a4544d53fa
BLAKE2b-256 9ef5d00987fe4b92beb7c3c8e6907d4e59fcf94ac4574e60312bc1ec4ef25555

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.0.0-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.0-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 fea61f7cb952047013dc1af295bb80841e99e77f337886677b93697f60aa8a6b
MD5 566829bc8b0a2565efc5e88295357adf
BLAKE2b-256 08b09874139e33504624ece680cd2f703de53387a0c155f6ae9986d633f0f795

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.0.0-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.0-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 df02681f21118bc24694a7390eb819555fbda42a37e0024da3d7528110015c46
MD5 44a010bd6518665698989583d5ce0960
BLAKE2b-256 f2e59a062ba7c03332dc77e812a5525e265048167c8f429f2f0608598b82f010

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.0.0-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.0-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 457a88502cf0153a127ea6100e25932e8737765bf33aaae264c4ea97bb20900a
MD5 7687996fe0ff90723aa33bb6e749b31d
BLAKE2b-256 6801079f735da7d85a7357b42ef2431c67ac189ad41f2834fcd83d9910b3ca8c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.0.0-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.0-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 cebb0e6a5dc318d50ba9316e34d7bca8312bd0c7a353b49e2e752bfbea46f5e5
MD5 37ff61928a1fb167a2347279da444df9
BLAKE2b-256 9df0ab63e708d7af6518a1ec46bdc908d6955446c475d65334cb7b64dec6f950

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.0.0-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.0-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 0c0864d42ede0a762403fb65b1ef736fe41c282fb34b0d5990b151ef4e8de07a
MD5 21f2c3d013f959389c8c18424988244d
BLAKE2b-256 a3c3d6c45a0575a2dce179923849c0416896e7cf95439b00721defe99e42da4d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.0.0-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.0-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 2acef2d23566415986a997ac45109f36a6bf7154f32bcd7ada7cb65151c6a770
MD5 bd828672c241c0de33e50ff1c586aecd
BLAKE2b-256 5cb2d112dc69207fd739d314a887173fa8047218ecdf22c330b70aab14433b38

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.0.0-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.0-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 e613b1b4448a553ad27eeb3183d8f43bdf3f0614335c07d8e10e4ce19d5e1c63
MD5 c30fd4724ee6554bc9108887c3723fd0
BLAKE2b-256 d2c0e54c4dcca97f245a3b85790e5a0b4c77cb32c5a6302cd4034679c670e364

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward-1.0.0-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.0-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0d2cdf50cf43f82aeba28548703548c1712d5d41dd0626e5d273b79b5e9c3a9a
MD5 bbc5403aace63614012f9715599c122f
BLAKE2b-256 1712b7950087eabdfb4b332f3d829c95dd6586525b5e876b499d58a0c91640a3

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