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 awkward1

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 awkward1

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


Download files

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

Source Distribution

awkward1-0.4.3.tar.gz (774.2 kB view details)

Uploaded Source

Built Distributions

awkward1-0.4.3-cp39-cp39-win_amd64.whl (9.7 MB view details)

Uploaded CPython 3.9 Windows x86-64

awkward1-0.4.3-cp39-cp39-win32.whl (7.2 MB view details)

Uploaded CPython 3.9 Windows x86

awkward1-0.4.3-cp39-cp39-manylinux2010_x86_64.whl (6.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

awkward1-0.4.3-cp39-cp39-manylinux1_x86_64.whl (5.7 MB view details)

Uploaded CPython 3.9

awkward1-0.4.3-cp39-cp39-manylinux1_i686.whl (5.8 MB view details)

Uploaded CPython 3.9

awkward1-0.4.3-cp39-cp39-macosx_10_9_x86_64.whl (5.8 MB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

awkward1-0.4.3-cp38-cp38-win_amd64.whl (9.7 MB view details)

Uploaded CPython 3.8 Windows x86-64

awkward1-0.4.3-cp38-cp38-win32.whl (7.2 MB view details)

Uploaded CPython 3.8 Windows x86

awkward1-0.4.3-cp38-cp38-manylinux2010_x86_64.whl (6.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

awkward1-0.4.3-cp38-cp38-manylinux1_x86_64.whl (5.7 MB view details)

Uploaded CPython 3.8

awkward1-0.4.3-cp38-cp38-manylinux1_i686.whl (5.8 MB view details)

Uploaded CPython 3.8

awkward1-0.4.3-cp38-cp38-macosx_10_9_x86_64.whl (5.8 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

awkward1-0.4.3-cp37-cp37m-win_amd64.whl (9.7 MB view details)

Uploaded CPython 3.7m Windows x86-64

awkward1-0.4.3-cp37-cp37m-win32.whl (7.2 MB view details)

Uploaded CPython 3.7m Windows x86

awkward1-0.4.3-cp37-cp37m-manylinux2010_x86_64.whl (6.1 MB view details)

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

awkward1-0.4.3-cp37-cp37m-manylinux1_x86_64.whl (5.8 MB view details)

Uploaded CPython 3.7m

awkward1-0.4.3-cp37-cp37m-manylinux1_i686.whl (5.9 MB view details)

Uploaded CPython 3.7m

awkward1-0.4.3-cp37-cp37m-macosx_10_9_x86_64.whl (5.8 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

awkward1-0.4.3-cp36-cp36m-win_amd64.whl (9.7 MB view details)

Uploaded CPython 3.6m Windows x86-64

awkward1-0.4.3-cp36-cp36m-win32.whl (7.2 MB view details)

Uploaded CPython 3.6m Windows x86

awkward1-0.4.3-cp36-cp36m-manylinux2010_x86_64.whl (6.1 MB view details)

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

awkward1-0.4.3-cp36-cp36m-manylinux1_x86_64.whl (5.8 MB view details)

Uploaded CPython 3.6m

awkward1-0.4.3-cp36-cp36m-manylinux1_i686.whl (5.9 MB view details)

Uploaded CPython 3.6m

awkward1-0.4.3-cp35-cp35m-win_amd64.whl (9.7 MB view details)

Uploaded CPython 3.5m Windows x86-64

awkward1-0.4.3-cp35-cp35m-win32.whl (7.2 MB view details)

Uploaded CPython 3.5m Windows x86

awkward1-0.4.3-cp35-cp35m-manylinux2010_x86_64.whl (6.1 MB view details)

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

awkward1-0.4.3-cp35-cp35m-manylinux1_x86_64.whl (5.8 MB view details)

Uploaded CPython 3.5m

awkward1-0.4.3-cp35-cp35m-manylinux1_i686.whl (5.9 MB view details)

Uploaded CPython 3.5m

awkward1-0.4.3-cp27-cp27mu-manylinux2010_x86_64.whl (6.1 MB view details)

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

awkward1-0.4.3-cp27-cp27mu-manylinux1_x86_64.whl (5.8 MB view details)

Uploaded CPython 2.7mu

awkward1-0.4.3-cp27-cp27mu-manylinux1_i686.whl (5.9 MB view details)

Uploaded CPython 2.7mu

awkward1-0.4.3-cp27-cp27m-win_amd64.whl (9.7 MB view details)

Uploaded CPython 2.7m Windows x86-64

awkward1-0.4.3-cp27-cp27m-win32.whl (7.2 MB view details)

Uploaded CPython 2.7m Windows x86

awkward1-0.4.3-cp27-cp27m-manylinux2010_x86_64.whl (6.1 MB view details)

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

awkward1-0.4.3-cp27-cp27m-manylinux1_x86_64.whl (5.8 MB view details)

Uploaded CPython 2.7m

awkward1-0.4.3-cp27-cp27m-manylinux1_i686.whl (5.9 MB view details)

Uploaded CPython 2.7m

awkward1-0.4.3-cp27-cp27m-macosx_10_9_x86_64.whl (5.8 MB view details)

Uploaded CPython 2.7m macOS 10.9+ x86-64

File details

Details for the file awkward1-0.4.3.tar.gz.

File metadata

  • Download URL: awkward1-0.4.3.tar.gz
  • Upload date:
  • Size: 774.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.7.9

File hashes

Hashes for awkward1-0.4.3.tar.gz
Algorithm Hash digest
SHA256 988ef424fff2ffcc18b7ba9a50955159a8d6df0a6add898d4bf1ed24cc3a6019
MD5 13871ab0b791accd6b7b12ce38c2d211
BLAKE2b-256 cd867e5de10c2d889a912b7420795cfbf4dab657d21a3887df03043bd8805c0f

See more details on using hashes here.

File details

Details for the file awkward1-0.4.3-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: awkward1-0.4.3-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 9.7 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.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.9.0

File hashes

Hashes for awkward1-0.4.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a3f20278fe2369b98435b40143850736aedc2a3ac77cd8ec27aa197d0e3d0044
MD5 7903cbf7ab82162e2ba69eb6ec0331d9
BLAKE2b-256 d9d096012c4954c816b756a3da59ab9b08dcef70008e38b431054e0a30682b6a

See more details on using hashes here.

File details

Details for the file awkward1-0.4.3-cp39-cp39-win32.whl.

File metadata

  • Download URL: awkward1-0.4.3-cp39-cp39-win32.whl
  • Upload date:
  • Size: 7.2 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.9.0

File hashes

Hashes for awkward1-0.4.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 2416227f8c1047f7ed21d2f2beb6f54e784741f2f73e203ea154a806216815db
MD5 fd08a250ffadb1940b4a81ad356e1dd4
BLAKE2b-256 d4da83cdeb626709dd5c7333046925f922e892cd136762d546ae66c9f1102445

See more details on using hashes here.

File details

Details for the file awkward1-0.4.3-cp39-cp39-manylinux2010_x86_64.whl.

File metadata

  • Download URL: awkward1-0.4.3-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 6.2 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.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.7.9

File hashes

Hashes for awkward1-0.4.3-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 44a55941ece30a70a408b0451507454995dc6c9f69f68aba69f357d859951216
MD5 9fbc2e01eba9bf7db4116da07270c6b9
BLAKE2b-256 7ce8009c4e770150eb378463256026a047b41829ed0ca984f27f768b7c46f970

See more details on using hashes here.

File details

Details for the file awkward1-0.4.3-cp39-cp39-manylinux1_x86_64.whl.

File metadata

  • Download URL: awkward1-0.4.3-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 5.7 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.7.9

File hashes

Hashes for awkward1-0.4.3-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 9677509bce326667e61eabc0b846043d2f504b832c442e13ef92a23453bcdfc8
MD5 0c3b0c8f386b5734f3a18cb2a916d014
BLAKE2b-256 99bdbac4f3297fda3daf32b32a3a66195d4e2604bba47116e3bd2983e47e3c51

See more details on using hashes here.

File details

Details for the file awkward1-0.4.3-cp39-cp39-manylinux1_i686.whl.

File metadata

  • Download URL: awkward1-0.4.3-cp39-cp39-manylinux1_i686.whl
  • Upload date:
  • Size: 5.8 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.7.9

File hashes

Hashes for awkward1-0.4.3-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 f2304513d8bf0fe937409c83b274f7c3679b9c3256cc708a7652c48a43aaaa3b
MD5 208e34c27d9f066132411378355b1e8c
BLAKE2b-256 d7ada29e233306b613c35530802bedfac9849b633ea449a98c051f6981f20ac2

See more details on using hashes here.

File details

Details for the file awkward1-0.4.3-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: awkward1-0.4.3-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 5.8 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.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.9.0

File hashes

Hashes for awkward1-0.4.3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 89513edaba2b8780385a80fbdce6006169001833f93fa0a9e652c630bd8dbcd6
MD5 bf84468141017c11838366f9ce5461fe
BLAKE2b-256 14db26f3665c658cc57030b14d534f615b35625b6be8d650a7e49389d4b495d9

See more details on using hashes here.

File details

Details for the file awkward1-0.4.3-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: awkward1-0.4.3-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 9.7 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.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for awkward1-0.4.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 0d67120ee823b1ce791f5b5e401f5f2b9d842914e02545325fc40f0f94c1a285
MD5 ac3512a27916f9c98df1bc5e96b3bcea
BLAKE2b-256 db28365e3e0f194c82712aa1ccce9ff55b09a40977e043f8a661ea8a7adc2bb7

See more details on using hashes here.

File details

Details for the file awkward1-0.4.3-cp38-cp38-win32.whl.

File metadata

  • Download URL: awkward1-0.4.3-cp38-cp38-win32.whl
  • Upload date:
  • Size: 7.2 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for awkward1-0.4.3-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 959da11ed219d9ba15e46b43675808522774d1237a8f61a923ccf17add35e86e
MD5 de1f7b69a571785b8f332329b351b046
BLAKE2b-256 27cf633109fa522672b0b8d8fd2b8031f975f22d8a3a423f777aaf5054c62129

See more details on using hashes here.

File details

Details for the file awkward1-0.4.3-cp38-cp38-manylinux2010_x86_64.whl.

File metadata

  • Download URL: awkward1-0.4.3-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 6.2 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.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.7.9

File hashes

Hashes for awkward1-0.4.3-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 4bbc45fe011772e4771c3602e094e1d4ba91b26d7e1f3b8a7a3ae1f6c8b230d3
MD5 a9723e22277523f97dd8877aff66585c
BLAKE2b-256 c84ee0c628ff959bc9db8272e9923ba2517289677225ee803a97095dc39bf91d

See more details on using hashes here.

File details

Details for the file awkward1-0.4.3-cp38-cp38-manylinux1_x86_64.whl.

File metadata

  • Download URL: awkward1-0.4.3-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 5.7 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.7.9

File hashes

Hashes for awkward1-0.4.3-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 4ef2cdf3384a51cf3a6364b886c216d073fd4164be1cb3f39bd52ddf5197d4b8
MD5 75d21186137190bb5f6509f7b95fb990
BLAKE2b-256 ebeffd71593d46612bbb9304760ef5125318cbc585ca11b10540487f98a1b921

See more details on using hashes here.

File details

Details for the file awkward1-0.4.3-cp38-cp38-manylinux1_i686.whl.

File metadata

  • Download URL: awkward1-0.4.3-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 5.8 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.7.9

File hashes

Hashes for awkward1-0.4.3-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 7fbf9ea02012293521d63b759c72a6c14936b82275e9b07a6b7db36d82f37121
MD5 7f9fd3f1367b0a20ba10df6044400303
BLAKE2b-256 f25e6a8f5ce3b4273be48ed3aea1f0a1fb819313b1c2422265f74df679443f60

See more details on using hashes here.

File details

Details for the file awkward1-0.4.3-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: awkward1-0.4.3-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 5.8 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.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for awkward1-0.4.3-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6fb95086b809d9f35613a699d5f8f0a18236021698df29e9abfd2a2235bb6b21
MD5 719340f50d6fa89305469cad84be104b
BLAKE2b-256 758c9ff5277285f51e3818a7c567b227860e7c9d860dc90d839792fa61e49450

See more details on using hashes here.

File details

Details for the file awkward1-0.4.3-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: awkward1-0.4.3-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 9.7 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.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.7.9

File hashes

Hashes for awkward1-0.4.3-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 d0d081eb9fdc86d436bcc4d3a9eed621a300e3852cdf05ecb60681d6b1309b27
MD5 e50d26bbbe8f1dcfef31d5cf66fd2adf
BLAKE2b-256 f87529a5f41ce91ce6640960ccabc1fa6bcd0ac2cc049908edaefb98671ffa9e

See more details on using hashes here.

File details

Details for the file awkward1-0.4.3-cp37-cp37m-win32.whl.

File metadata

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

File hashes

Hashes for awkward1-0.4.3-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 d1b8f0fdcb2944ba87a0cf924a99f50fb1e7064cef784585c806a5e3b6b47808
MD5 89a71a8264310072d2164866c7b0d7a8
BLAKE2b-256 e915ca6b8d9cabbdc5f2d0c17778da541ac3de05148911ce08b785fb41cb2b53

See more details on using hashes here.

File details

Details for the file awkward1-0.4.3-cp37-cp37m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: awkward1-0.4.3-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 6.1 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.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.7.9

File hashes

Hashes for awkward1-0.4.3-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 c579b136c7c924bfe2f2fb26a091794b8d62bfc50f83f3a410dad6c6f194e9f2
MD5 0696268fdda2219aa79014541603809b
BLAKE2b-256 5a4c3195d2e6455e022d53b598d2064f2975e77c290266eb9ec562474677cbe5

See more details on using hashes here.

File details

Details for the file awkward1-0.4.3-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: awkward1-0.4.3-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 5.8 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.7.9

File hashes

Hashes for awkward1-0.4.3-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 20e4fb0b238d16d42a60cbd126f2e384a8266e359ab2e03c90ae28619111253b
MD5 a40158d66b865c18519ec9c14219acbc
BLAKE2b-256 d081736d0597753bb22797158daaddd43ebac3bfe7e49f088a14c24186f04730

See more details on using hashes here.

File details

Details for the file awkward1-0.4.3-cp37-cp37m-manylinux1_i686.whl.

File metadata

  • Download URL: awkward1-0.4.3-cp37-cp37m-manylinux1_i686.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.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.7.9

File hashes

Hashes for awkward1-0.4.3-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 dd026dccd45f737732001702d0e83bf29643affff1f1ff099727ef82d32d4964
MD5 49b996cedd9f410644e68712b39938f0
BLAKE2b-256 347aca1c350571ab3740e964810164b5f26a13979153cbc6c227ba91fc7a7584

See more details on using hashes here.

File details

Details for the file awkward1-0.4.3-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: awkward1-0.4.3-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 5.8 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.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.7.9

File hashes

Hashes for awkward1-0.4.3-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c2dc89dec227f29726f526b03719434c6ec94e184e06aa7228c7103370ef6f46
MD5 394d09ebd6db7910a86ce27e42acfe6e
BLAKE2b-256 af308f9cf0ad925d1fb6c4cc0181318daea71834f311cafd02467bb31c1aeea7

See more details on using hashes here.

File details

Details for the file awkward1-0.4.3-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: awkward1-0.4.3-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 9.7 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.24.0 setuptools/40.6.2 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.6.8

File hashes

Hashes for awkward1-0.4.3-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 49b6355ad7340e9f654d4324a054e94902462deadc4bcb4557e98b69eef1989a
MD5 ba48358985f0a6d5e6fe2e5b1a5054d8
BLAKE2b-256 5b4d49b006d35d3845d3be281fdb85851ab6ccd174f73ae508ad1c402d4e052a

See more details on using hashes here.

File details

Details for the file awkward1-0.4.3-cp36-cp36m-win32.whl.

File metadata

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

File hashes

Hashes for awkward1-0.4.3-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 25e3585d47d9e23e49a889105243f4d7d66b218ea05228f325c5b53db0fc342b
MD5 3da524b4c1428080cba23f87d6399fe5
BLAKE2b-256 35e46391fd240aee5eb24f5e25922a45ea22d7955e714daa237bfd890cee5004

See more details on using hashes here.

File details

Details for the file awkward1-0.4.3-cp36-cp36m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: awkward1-0.4.3-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 6.1 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.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.7.9

File hashes

Hashes for awkward1-0.4.3-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 7a3ef0e94c1a0cdd4a4e514ef63ead79ebc52360b02ba06c4dd7d442a753cd09
MD5 53459ced549f519595bb4cf99cb1514a
BLAKE2b-256 f09a6ba3677a8e1ba2158309a1f604c9dc99c14e019433054facba9416b4ce8e

See more details on using hashes here.

File details

Details for the file awkward1-0.4.3-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: awkward1-0.4.3-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 5.8 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.7.9

File hashes

Hashes for awkward1-0.4.3-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 7e33b58246c44652c411246c8f7e80ced679032f6593402905dfeb94939b43a3
MD5 d0dceb22abe111968921b9a6e8f544ad
BLAKE2b-256 227d9bce11408c9c12ec748dc81011baa3cfb33a8e81866ec431d1e7af2a2980

See more details on using hashes here.

File details

Details for the file awkward1-0.4.3-cp36-cp36m-manylinux1_i686.whl.

File metadata

  • Download URL: awkward1-0.4.3-cp36-cp36m-manylinux1_i686.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.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.7.9

File hashes

Hashes for awkward1-0.4.3-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 5f161c4003acbd4745d772b059b9f76acf61ff56c8ad995bd6422773a8b53bb5
MD5 96ebc6e4c44e38854fb0f318b56a2fd7
BLAKE2b-256 7ec9598c1f25d3c57e564cd873bece1e012a070d203a668b1fd305c567431949

See more details on using hashes here.

File details

Details for the file awkward1-0.4.3-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: awkward1-0.4.3-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 9.7 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.24.0 setuptools/28.8.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.5.4

File hashes

Hashes for awkward1-0.4.3-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 40e9eccb3485ab84d6716ef657bbdaef3831e194e3a3fe23c9c71e4595f1c320
MD5 1f907c6d2cbfcb1c499df23a42c0dc8c
BLAKE2b-256 df09b4f191b535f6b3d809303fc117155eea88b91d12133d94e8a86df1e0806c

See more details on using hashes here.

File details

Details for the file awkward1-0.4.3-cp35-cp35m-win32.whl.

File metadata

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

File hashes

Hashes for awkward1-0.4.3-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 caba1766cf95a1d092d267e629340dc9590ccb762dc306a2835d597d8e791c93
MD5 462924c46deb5e44f8ed23870ef28c80
BLAKE2b-256 d896b13206350281b81138f7be10e8bc38d91c273bb7666d3062a76e5554f798

See more details on using hashes here.

File details

Details for the file awkward1-0.4.3-cp35-cp35m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: awkward1-0.4.3-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 6.1 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.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.7.9

File hashes

Hashes for awkward1-0.4.3-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 debe8192219fa080b98bc8785572f668d98a24e991738fe0fdb3e7c15b166463
MD5 cdd1080fefab7e398d3ebc1ccc0e0871
BLAKE2b-256 0f62619879fc750db61e90c9615c8a877cb106e4375a7580635b201a45d45fb6

See more details on using hashes here.

File details

Details for the file awkward1-0.4.3-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

  • Download URL: awkward1-0.4.3-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 5.8 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.7.9

File hashes

Hashes for awkward1-0.4.3-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c1ce9253b93f273dee190adfb725b8099c658dadc4805920eead78bfd1d624ff
MD5 559b280050ad91a2c2c78b3b25f2579c
BLAKE2b-256 08a7d224a9e84d121c9517a23d0f6e311cacaeb8ae49662e802b481913ab6c12

See more details on using hashes here.

File details

Details for the file awkward1-0.4.3-cp35-cp35m-manylinux1_i686.whl.

File metadata

  • Download URL: awkward1-0.4.3-cp35-cp35m-manylinux1_i686.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.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.7.9

File hashes

Hashes for awkward1-0.4.3-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 904928f0d802aa77fc47df9e9ffce2fa4e50718cf002c051d7c389999121bd62
MD5 0c2864a8d6002ba6f3b47f3401d121bf
BLAKE2b-256 13576ef078b55b80fe7c204c889683e27fd9380826f4cd7d3fefb7b718553d82

See more details on using hashes here.

File details

Details for the file awkward1-0.4.3-cp27-cp27mu-manylinux2010_x86_64.whl.

File metadata

  • Download URL: awkward1-0.4.3-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 6.1 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.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.7.9

File hashes

Hashes for awkward1-0.4.3-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 83d75532641b88b9f50d39cc971c87c402b4c6d8fc578bf8ac48c1dc68ce05ce
MD5 c4db113588f3eecc91a68ecbf1156889
BLAKE2b-256 0bae08d1a3477c7777f4ca37ccd22490720a2146ed95383b8a21fe607c7cb87f

See more details on using hashes here.

File details

Details for the file awkward1-0.4.3-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

  • Download URL: awkward1-0.4.3-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 5.8 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.7.9

File hashes

Hashes for awkward1-0.4.3-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ca04584d573375ed6a6578cfb4034e0c980a3a56dc1fc81fbe83a4e380d19500
MD5 721cf08cb3c0b62101f5b6d7d13b7744
BLAKE2b-256 68311e19b8fc7fa70b72dd005e5aa2b812187a8593cfb052c965065dee09ac31

See more details on using hashes here.

File details

Details for the file awkward1-0.4.3-cp27-cp27mu-manylinux1_i686.whl.

File metadata

  • Download URL: awkward1-0.4.3-cp27-cp27mu-manylinux1_i686.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.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.7.9

File hashes

Hashes for awkward1-0.4.3-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 cee68f302df38675a09a7ccc10ae82dd00c8e33b206664be9ecae8c5a65e12ea
MD5 d8d3e5676cf19caaac61a0f14c9fc129
BLAKE2b-256 5664d7b1d31d90eef960ed02d05ad2cb1398813766923398989715fc0848617b

See more details on using hashes here.

File details

Details for the file awkward1-0.4.3-cp27-cp27m-win_amd64.whl.

File metadata

  • Download URL: awkward1-0.4.3-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 9.7 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.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.18

File hashes

Hashes for awkward1-0.4.3-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 e17ae027debbc4c8a21366ec138eee7996afbf86c85bbd1614cdb4673f1dd15e
MD5 5c83ce71aa6f47588db76bbf9f3d2084
BLAKE2b-256 47d5e65a3b95457abc5e8291e2bc0219468fa9e68718c9e7d0a61a40fe6f27c6

See more details on using hashes here.

File details

Details for the file awkward1-0.4.3-cp27-cp27m-win32.whl.

File metadata

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

File hashes

Hashes for awkward1-0.4.3-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 97a82b2bca95137f6212b5a606ef5b6f8cd7fcbb069b3d2c49a1d1c95f7dae73
MD5 3d3b68f1567c7ed9ae27f7423ceb2858
BLAKE2b-256 6a6736507c9a74f74799f3a0b88ddccb425c16385dbd10bde514a617cc012b35

See more details on using hashes here.

File details

Details for the file awkward1-0.4.3-cp27-cp27m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: awkward1-0.4.3-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 6.1 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.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.7.9

File hashes

Hashes for awkward1-0.4.3-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 f14321f036fb9cb5c14dd0cb0ae4e80c8a398d2e5de77f8226ae35b1652d1db5
MD5 ad742c1ad6c000076d3f4fe50827a47c
BLAKE2b-256 2dd677a0a1184e54a2f3daa1e3b2d538c92f416bfb3361a78cf3fb57a6963f37

See more details on using hashes here.

File details

Details for the file awkward1-0.4.3-cp27-cp27m-manylinux1_x86_64.whl.

File metadata

  • Download URL: awkward1-0.4.3-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 5.8 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.7.9

File hashes

Hashes for awkward1-0.4.3-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 8c1d1ab59cd1fc904becc2355ca74b89c71cb1b6115a15fc94641fd2f591a624
MD5 82b22169e7589ffd764d493e086fea15
BLAKE2b-256 bf527e3391990d8070e25b9eaec56e43dd573fdb9604e34ba3e9daeed2875f85

See more details on using hashes here.

File details

Details for the file awkward1-0.4.3-cp27-cp27m-manylinux1_i686.whl.

File metadata

  • Download URL: awkward1-0.4.3-cp27-cp27m-manylinux1_i686.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.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.7.9

File hashes

Hashes for awkward1-0.4.3-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 aa757f12de78569967e37bb765ce00cca61f19241fa83aadf939576bacccb452
MD5 f2bf58c108645a07be157cfb462e83a1
BLAKE2b-256 97299227d23d64c4a25e69d897bbc8e7ff7157b3f197abd07198519d4c81bfc4

See more details on using hashes here.

File details

Details for the file awkward1-0.4.3-cp27-cp27m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: awkward1-0.4.3-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 5.8 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.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/2.7.18

File hashes

Hashes for awkward1-0.4.3-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 feefd17f37ddd34e1192e6892ea2906af51a3ce7c8465953cfdc25199ffe34f7
MD5 4624b88bbc3df34cbc9608bb10d3a39a
BLAKE2b-256 3ae04a0ffae26bb1401885644c909c2c1374ea07b38cde8734b7e4bebd566373

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