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.

How-to tutorials

Python API reference

C++ API reference

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

Most users will get a precompiled binary (wheel) for your operating system and Python version. If not, the above attempts to compile from source.

  • Report bugs, request features, and ask for additional documentation on GitHub Issues. If you have a general "How do I…?" question, we'll answer it as a new example in the tutorial.
  • If you have a problem that's too specific to be new documentation or it isn't exclusively related to Awkward Array, it might be more appropriate to ask on StackOverflow with the [awkward-array] tag. Be sure to include tags for any other libraries that you use, such as Pandas or PyTorch.
  • The Gitter Scikit-HEP/community is a way to get in touch with all Scikit-HEP developers and users.

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

Uploaded Source

Built Distributions

awkward1-0.2.32-cp39-cp39-manylinux2010_x86_64.whl (9.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

awkward1-0.2.32-cp39-cp39-manylinux1_x86_64.whl (8.8 MB view details)

Uploaded CPython 3.9

awkward1-0.2.32-cp39-cp39-manylinux1_i686.whl (8.9 MB view details)

Uploaded CPython 3.9

awkward1-0.2.32-cp38-cp38-win_amd64.whl (12.2 MB view details)

Uploaded CPython 3.8 Windows x86-64

awkward1-0.2.32-cp38-cp38-win32.whl (9.3 MB view details)

Uploaded CPython 3.8 Windows x86

awkward1-0.2.32-cp38-cp38-manylinux2010_x86_64.whl (9.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

awkward1-0.2.32-cp38-cp38-manylinux1_x86_64.whl (8.8 MB view details)

Uploaded CPython 3.8

awkward1-0.2.32-cp38-cp38-manylinux1_i686.whl (8.9 MB view details)

Uploaded CPython 3.8

awkward1-0.2.32-cp38-cp38-macosx_10_9_x86_64.whl (9.1 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

awkward1-0.2.32-cp37-cp37m-win_amd64.whl (12.2 MB view details)

Uploaded CPython 3.7m Windows x86-64

awkward1-0.2.32-cp37-cp37m-win32.whl (9.3 MB view details)

Uploaded CPython 3.7m Windows x86

awkward1-0.2.32-cp37-cp37m-manylinux2010_x86_64.whl (9.5 MB view details)

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

awkward1-0.2.32-cp37-cp37m-manylinux1_x86_64.whl (8.9 MB view details)

Uploaded CPython 3.7m

awkward1-0.2.32-cp37-cp37m-manylinux1_i686.whl (8.9 MB view details)

Uploaded CPython 3.7m

awkward1-0.2.32-cp37-cp37m-macosx_10_9_x86_64.whl (9.0 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

awkward1-0.2.32-cp36-cp36m-win_amd64.whl (12.2 MB view details)

Uploaded CPython 3.6m Windows x86-64

awkward1-0.2.32-cp36-cp36m-win32.whl (9.3 MB view details)

Uploaded CPython 3.6m Windows x86

awkward1-0.2.32-cp36-cp36m-manylinux2010_x86_64.whl (9.5 MB view details)

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

awkward1-0.2.32-cp36-cp36m-manylinux1_x86_64.whl (8.9 MB view details)

Uploaded CPython 3.6m

awkward1-0.2.32-cp36-cp36m-manylinux1_i686.whl (8.9 MB view details)

Uploaded CPython 3.6m

awkward1-0.2.32-cp36-cp36m-macosx_10_9_x86_64.whl (9.0 MB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

awkward1-0.2.32-cp35-cp35m-win_amd64.whl (12.2 MB view details)

Uploaded CPython 3.5m Windows x86-64

awkward1-0.2.32-cp35-cp35m-win32.whl (9.3 MB view details)

Uploaded CPython 3.5m Windows x86

awkward1-0.2.32-cp35-cp35m-manylinux2010_x86_64.whl (9.5 MB view details)

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

awkward1-0.2.32-cp35-cp35m-manylinux1_x86_64.whl (8.9 MB view details)

Uploaded CPython 3.5m

awkward1-0.2.32-cp35-cp35m-manylinux1_i686.whl (8.9 MB view details)

Uploaded CPython 3.5m

awkward1-0.2.32-cp27-cp27mu-manylinux2010_x86_64.whl (9.5 MB view details)

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

awkward1-0.2.32-cp27-cp27mu-manylinux1_x86_64.whl (8.9 MB view details)

Uploaded CPython 2.7mu

awkward1-0.2.32-cp27-cp27mu-manylinux1_i686.whl (8.9 MB view details)

Uploaded CPython 2.7mu

awkward1-0.2.32-cp27-cp27m-win_amd64.whl (12.2 MB view details)

Uploaded CPython 2.7m Windows x86-64

awkward1-0.2.32-cp27-cp27m-win32.whl (9.3 MB view details)

Uploaded CPython 2.7m Windows x86

awkward1-0.2.32-cp27-cp27m-manylinux2010_x86_64.whl (9.5 MB view details)

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

awkward1-0.2.32-cp27-cp27m-manylinux1_x86_64.whl (8.9 MB view details)

Uploaded CPython 2.7m

awkward1-0.2.32-cp27-cp27m-manylinux1_i686.whl (8.9 MB view details)

Uploaded CPython 2.7m

awkward1-0.2.32-cp27-cp27m-macosx_10_9_x86_64.whl (9.0 MB view details)

Uploaded CPython 2.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: awkward1-0.2.32.tar.gz
  • Upload date:
  • Size: 655.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.7.8

File hashes

Hashes for awkward1-0.2.32.tar.gz
Algorithm Hash digest
SHA256 e3d630c8a8cd886946712a5f389537f22fefcd6f9023bd8875cfcd81993cb8e2
MD5 1e78cc974e72842291fe35de07d2e884
BLAKE2b-256 66673d02f3c4347b04be4298577a5c99bb7d55954a4b4dd4c8d3247574835c13

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.32-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 9.5 MB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.7.8

File hashes

Hashes for awkward1-0.2.32-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 adccfaa078f65e390e14ffbc7009a08067ec757b94e8709cdfa20746082a83a7
MD5 702851bdb0d3b88023127e2ac61cd7c7
BLAKE2b-256 614909db02cf290f6b1cc88cf62bf922bbbe289db4e47f656bdb95ebb06e1b4a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.32-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 8.8 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.7.8

File hashes

Hashes for awkward1-0.2.32-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d5df2482e22db6366284b412363d90056e8419e9e71958679cf84529252f34e0
MD5 1bb5a587071eb055da6887f164f72207
BLAKE2b-256 fbc0b52009725eb72e7b97f0c2a6b010030900dc846358856818239d9b87a940

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.32-cp39-cp39-manylinux1_i686.whl
  • Upload date:
  • Size: 8.9 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.7.8

File hashes

Hashes for awkward1-0.2.32-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 f81e2b6e9e3a570219fb560eb3abfe82c5cd3a5c9976384a013cd20144d902d9
MD5 25e72f83c1631e2bf6cc6a0cc6263156
BLAKE2b-256 9b34353cef127dd86e37b6ade4d4ebd90d20ffbb21bae8015f8b6e44e316bf64

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.32-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 12.2 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for awkward1-0.2.32-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 cded82b41dc42779a79be359b49462dec92e681e778829cf3680ad171b21da60
MD5 19a180fae1f782ee490b29c83f029677
BLAKE2b-256 97cbe83916393886cd1667aa6f577e07ee13a5072ff579466b485bcf32b53a73

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.32-cp38-cp38-win32.whl
  • Upload date:
  • Size: 9.3 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for awkward1-0.2.32-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 49fd8f74ffd4eb900558651c460b2c7c8b03926c9f27e525714e38957a0002bb
MD5 b33bffa75dd9bb44c0c47bb3fc7b611d
BLAKE2b-256 7dfb55fb4a2d747d2b1fa59f1118faa8311e13743ca983a97ab1a0b91be03049

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.32-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 9.5 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.7.8

File hashes

Hashes for awkward1-0.2.32-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 176dca2bb34138d24d5484e20f7230e12676b1331165ef4c679066441ff45094
MD5 f170d83d767d9009e915001d6a2fd739
BLAKE2b-256 081ed2d53e759a565eccc70ea0ede0250e110de1aabca934382b3f868b02899a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.32-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 8.8 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.7.8

File hashes

Hashes for awkward1-0.2.32-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 9fc100105677ce5b807fb9ace45c9fe726d8004032394cb90621f3533911e29b
MD5 0f6c31633fa05d24380cf5f9d85f0fd1
BLAKE2b-256 bcaec9eed08ace4abeead4b41f1f5bb48f02cf53949dad30cabbe592e30fbef3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.32-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 8.9 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.7.8

File hashes

Hashes for awkward1-0.2.32-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 432968184e49e1690f5f80f0d1e3bb984fd08c7c4ed61bb2d09465dbf95ce838
MD5 2ea6658dd32894fb05e52b6d50101499
BLAKE2b-256 153e33cd3a3f28c97cd55e6347bc351a34f1a9d8d382f2bb2eadc6d2984ce9dc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.32-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 9.1 MB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.0

File hashes

Hashes for awkward1-0.2.32-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7c951ad2d86ce6c8273968e2018fbb2f3740f6da3a24c598eb010cbf62df3ce0
MD5 ad519a7f8f8b71452582f9a58eb304ba
BLAKE2b-256 ccab80b42cc936bc08c74fc1c615495cd36fe65de8960e75fed2d02b8fac50a8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.32-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 12.2 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.7.8

File hashes

Hashes for awkward1-0.2.32-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 da968d9792de4cf41efb41b956f01680922bb065aa1b5825d2ec5be5aee2f035
MD5 95d4d52538e98139e1a46983211f40f2
BLAKE2b-256 fc083c024f2be852074eaae5ef1acf886a8831a60a6d16cebf5b945f9d2a0170

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward1-0.2.32-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 770e60eeb055d13bd1635a8d8c907c0ea662bb579ca131f1d200e384b9677774
MD5 645c586baab811a3bd3beff54954cbb3
BLAKE2b-256 fa45e7430c63223438e4fbaf5d7c9e73e836481086a499958b7d86509f9a0f54

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.32-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 9.5 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.7.8

File hashes

Hashes for awkward1-0.2.32-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 b94a819c8dfdaa430576d60f054150931dc78d8a812ee48ffbeed93d7e3bacd0
MD5 9645d3c55c89bb2bbb729827595ad1ff
BLAKE2b-256 d9e1539c4a6003408207d79fe9a8bade1d39e81a1ee1a98e273604737e10ff5f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.32-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 8.9 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.7.8

File hashes

Hashes for awkward1-0.2.32-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 cfa3942567bf76195372b2c1012d4a4a7549595d09a0d5b42d768d3444bf12e7
MD5 d93966e98183336ab43b0cea8039de4e
BLAKE2b-256 5e7a90b842f1011b9b8140bda207148ea9f412cb452d16a79d88e48d098b92cb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.32-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 8.9 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.7.8

File hashes

Hashes for awkward1-0.2.32-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 da903ccc6fcafefd25bca6f96aa51387b24a85c4f4968b92315c064dca6fe704
MD5 775e65107631c435675ce48e89c434fe
BLAKE2b-256 6ef8d45c22b63ab9b0430e34078b5cf9c9a1bba25c065a2acff00ded5dff42fc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.32-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 9.0 MB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.7.5

File hashes

Hashes for awkward1-0.2.32-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d5ee1ce77e07fec75837eeeef06eb290b106d27679f8f0b0c469d6007153d18f
MD5 1739f1f916e308176569f48651028703
BLAKE2b-256 60a2bea7387ded66248e1847ace6b849a42c3883ec943c899324d90d16af8d45

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.32-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 12.2 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/40.6.2 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.6.8

File hashes

Hashes for awkward1-0.2.32-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 128aa18a735d9e867999633a3f127caebd80e2f635dc3ea95ac2ebeda7baba4d
MD5 bb5cbdf021448f8b6b82b343472ac1cd
BLAKE2b-256 a9c2f0bea07cbe2784dcaa772997a82615f431c3eeca21ca6d6f4ce0f4a6b8fb

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward1-0.2.32-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 8e771eb32041c1b46ad59cdafa1c5747643dff58bbf4afe5cad82c0f28e8ee4f
MD5 993c4b125793813f46640103d63ed09d
BLAKE2b-256 97e8b29ff7ed9a942f76eb33d5a424d3443219bf221a582e386309df32aac709

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.32-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 9.5 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.7.8

File hashes

Hashes for awkward1-0.2.32-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 bbec3f63cfe453b1b40b339afcfe490f9caefce941d1e182dabf922d606ac1da
MD5 69b8109e2064f6f3ea28e001d0e940fc
BLAKE2b-256 4cc776465302fceb6af339d781edfa2ef3b9d2a878dd49c7decfa9dc5287fba3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.32-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 8.9 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.7.8

File hashes

Hashes for awkward1-0.2.32-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 cce46d075a7368211c928e2627103dde6b54b11d3ad15b0a1582a3ff5bb7e8a2
MD5 f4057b5dd861ce99893aa32e9b7a1197
BLAKE2b-256 e74c937b9c31b07157146371493924414a6d0e0da1bf91219af375cc100bc50c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.32-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 8.9 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.7.8

File hashes

Hashes for awkward1-0.2.32-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 dd548eab9f6d8b064f8edbb13f3f03689104c792fcddcde2fc3c7232a3adc9bf
MD5 163f9da555cb750b72ecbc3d775cd4b7
BLAKE2b-256 fe34ce19024bd2ba5b21c69071cb19c263a444613ba0a0ca841cda1a793cbc47

See more details on using hashes here.

File details

Details for the file awkward1-0.2.32-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: awkward1-0.2.32-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 9.0 MB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/40.6.2 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.6.8

File hashes

Hashes for awkward1-0.2.32-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8db1052c302df2c2d69ade0cc67166100fca715b07ec0e5efb96fd69163ff7e6
MD5 49c058c6247ef8c3468ae2ef6a0e1d32
BLAKE2b-256 ffc729120f9a874aa2b31bbcff7dcd3eb8bbe63a293b0c256826460381ba9348

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.32-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 12.2 MB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/28.8.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.5.4

File hashes

Hashes for awkward1-0.2.32-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 3ee9e7144647d929d651181ac1ee5c589efbc7cc79318128006f68d20ef7deb4
MD5 1ee98ef09c52ecb687ac141a2d0ee5cd
BLAKE2b-256 f0ecfda93b0e82815eb55ad47d1e81e76c7aeaea827e203c01657e31037f63e4

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward1-0.2.32-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 6fd5a1d8b9679a68cb1d54b08a6c14a92b9f537c32ea81b6931817c105f8f25b
MD5 b7be6ed995b6a3381fc0621f67ba80fa
BLAKE2b-256 ac0cc1ac278a5144dc2671013bd842d4e52c538f5aa0408585684f227961f555

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.32-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 9.5 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.7.8

File hashes

Hashes for awkward1-0.2.32-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 ce59d8c01b4188b095c5079d9449f9435b9126bcbac13aa57b51c68aea7b465d
MD5 ad3051f8af4f9ca0e959700af13f36f0
BLAKE2b-256 57fef8fcbe69e3367fc58dd99677cca3a76ad25aa1b4d96eae96a9d484396c5e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.32-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 8.9 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.7.8

File hashes

Hashes for awkward1-0.2.32-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 58ae069306a0445ac3bf1b638b139f47359c311b32e501dd49aa784a5d14c79c
MD5 5a5bb8956e9781e0c01f1c23e0a56920
BLAKE2b-256 c37020b2bb7f18b4d250a4a5df2a1847e9c14650ac61cd01a239f87a29e66e23

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.32-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 8.9 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.7.8

File hashes

Hashes for awkward1-0.2.32-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 aa33058ef1e386e40506990c930a3ac7574bc56c9f7b55f6b404abd0cd2adc3f
MD5 d0a1537ab2792af8183513d08f86dc2a
BLAKE2b-256 452a88aa08eaa298a4cdf8a6c202e7f0194118a23b1e90487f7177c9514667e9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.32-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 9.5 MB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.7.8

File hashes

Hashes for awkward1-0.2.32-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 f8edd1187a38cf538ad097220ed3ebd77fe9b43060f4e1392b78395e468e53d9
MD5 afafbf92797e697e42b0169156de6a72
BLAKE2b-256 a0356159357a7509b4997a97af439f45c352a595195024de2741c86b3a39b83e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.32-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 8.9 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.7.8

File hashes

Hashes for awkward1-0.2.32-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 47952fad745feb940d54ca6980e3e5729501aff8284cb3c50fa975292bbe6a0c
MD5 3bd31c400c418f133c520e34459f96e4
BLAKE2b-256 9540775297726e7a043049e7c0d9cb7e60ce7d27eeda595339ca68f56271297b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.32-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 8.9 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.7.8

File hashes

Hashes for awkward1-0.2.32-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 e9fdc073173827d2e022910f24bee228e1146c4301f5b1154c5913693630dc32
MD5 7223e415dbbc3a18bb401e1d137628e9
BLAKE2b-256 299d3e6b598281413b9234d6228b832c4d12c6600d941d41c9ea1228b05ae504

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.32-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 12.2 MB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/2.7.18

File hashes

Hashes for awkward1-0.2.32-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 c444f2978ef4d3ca95195afc6f720a4987a278c3e1039304d646d0301458c705
MD5 8134221ff40a7b2fc36f6e516f09a5c1
BLAKE2b-256 9051644000cf44f5e535164f7fa033622e1c48f9e954ad3ccfd76b145ce4870b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward1-0.2.32-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 fd8105791122bf93abed4efa417e25698fcce7a1136f4038355326a1706b413f
MD5 2346fc3a85c58431dbde4fbb16eda23e
BLAKE2b-256 e34d50dff82e725b115647797932fb4f0ff34b9e4e09c749303e69ac78b7bde2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.32-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 9.5 MB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.7.8

File hashes

Hashes for awkward1-0.2.32-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 1f565fe3367148ecb1c023fac70df0c1463a757a01f06cea8ea56f27d92373a4
MD5 f9d28cfbcd4706b1c0fd61a6d4092ac3
BLAKE2b-256 f025e7a79530b2a37e7f1a63ac0ceb4579fa31de7e3f00a9e5c386cdfe22b6b7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.32-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 8.9 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.7.8

File hashes

Hashes for awkward1-0.2.32-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a8fddcd2d67b7d8a9e7ff3b84c8e258b23b9d5fc383839b82d67e95c69da8db0
MD5 d792fc00fc8bec8201539a4dbc7a2965
BLAKE2b-256 0a5b7ae5b4045a340645c1e27501f7ed2a8fc5e86e267b5984d674ce821f7b4f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.32-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 8.9 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.7.8

File hashes

Hashes for awkward1-0.2.32-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 6d6c0bd75458bfbbc5d3b3ffaf34a7ce9ecb579e85e8d8ff70de5349902ebd05
MD5 6065e4e4df378c820bee1c65a1e15c65
BLAKE2b-256 b860b65e257887809cf2d449ee606e52b7e23a343094ec5ce9a08d981de8d0f1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.32-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 9.0 MB
  • Tags: CPython 2.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/2.7.17

File hashes

Hashes for awkward1-0.2.32-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 972ff6f7f3051fd19b4eeeddf2dcad86b84aed6310890e8b2fb925e3c28f7095
MD5 6d893db8f4bd593a4a55d375ad051913
BLAKE2b-256 52c33a460a29132b84064e1dfb6c033970b2a02ea4442b2dc1fef3ef0dd98a83

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