Skip to main content

Development of awkward 1.0, to replace scikit-hep/awkward-array in 2020.

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

Uploaded Source

Built Distributions

awkward1-0.2.28-cp39-cp39-manylinux2010_x86_64.whl (8.6 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

awkward1-0.2.28-cp39-cp39-manylinux1_x86_64.whl (8.2 MB view details)

Uploaded CPython 3.9

awkward1-0.2.28-cp39-cp39-manylinux1_i686.whl (8.4 MB view details)

Uploaded CPython 3.9

awkward1-0.2.28-cp38-cp38-win_amd64.whl (11.5 MB view details)

Uploaded CPython 3.8 Windows x86-64

awkward1-0.2.28-cp38-cp38-win32.whl (8.8 MB view details)

Uploaded CPython 3.8 Windows x86

awkward1-0.2.28-cp38-cp38-manylinux2010_x86_64.whl (8.6 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

awkward1-0.2.28-cp38-cp38-manylinux1_x86_64.whl (8.3 MB view details)

Uploaded CPython 3.8

awkward1-0.2.28-cp38-cp38-manylinux1_i686.whl (8.4 MB view details)

Uploaded CPython 3.8

awkward1-0.2.28-cp38-cp38-macosx_10_9_x86_64.whl (8.3 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

awkward1-0.2.28-cp37-cp37m-win_amd64.whl (11.4 MB view details)

Uploaded CPython 3.7m Windows x86-64

awkward1-0.2.28-cp37-cp37m-win32.whl (8.7 MB view details)

Uploaded CPython 3.7m Windows x86

awkward1-0.2.28-cp37-cp37m-manylinux2010_x86_64.whl (8.6 MB view details)

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

awkward1-0.2.28-cp37-cp37m-manylinux1_x86_64.whl (8.3 MB view details)

Uploaded CPython 3.7m

awkward1-0.2.28-cp37-cp37m-manylinux1_i686.whl (8.4 MB view details)

Uploaded CPython 3.7m

awkward1-0.2.28-cp37-cp37m-macosx_10_9_x86_64.whl (8.2 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

awkward1-0.2.28-cp36-cp36m-win_amd64.whl (11.4 MB view details)

Uploaded CPython 3.6m Windows x86-64

awkward1-0.2.28-cp36-cp36m-win32.whl (8.7 MB view details)

Uploaded CPython 3.6m Windows x86

awkward1-0.2.28-cp36-cp36m-manylinux2010_x86_64.whl (8.6 MB view details)

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

awkward1-0.2.28-cp36-cp36m-manylinux1_x86_64.whl (8.3 MB view details)

Uploaded CPython 3.6m

awkward1-0.2.28-cp36-cp36m-manylinux1_i686.whl (8.4 MB view details)

Uploaded CPython 3.6m

awkward1-0.2.28-cp36-cp36m-macosx_10_9_x86_64.whl (8.2 MB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

awkward1-0.2.28-cp35-cp35m-win_amd64.whl (11.4 MB view details)

Uploaded CPython 3.5m Windows x86-64

awkward1-0.2.28-cp35-cp35m-win32.whl (8.7 MB view details)

Uploaded CPython 3.5m Windows x86

awkward1-0.2.28-cp35-cp35m-manylinux2010_x86_64.whl (8.6 MB view details)

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

awkward1-0.2.28-cp35-cp35m-manylinux1_x86_64.whl (8.3 MB view details)

Uploaded CPython 3.5m

awkward1-0.2.28-cp35-cp35m-manylinux1_i686.whl (8.4 MB view details)

Uploaded CPython 3.5m

awkward1-0.2.28-cp27-cp27mu-manylinux2010_x86_64.whl (8.6 MB view details)

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

awkward1-0.2.28-cp27-cp27mu-manylinux1_x86_64.whl (8.3 MB view details)

Uploaded CPython 2.7mu

awkward1-0.2.28-cp27-cp27mu-manylinux1_i686.whl (8.4 MB view details)

Uploaded CPython 2.7mu

awkward1-0.2.28-cp27-cp27m-win_amd64.whl (11.5 MB view details)

Uploaded CPython 2.7m Windows x86-64

awkward1-0.2.28-cp27-cp27m-win32.whl (8.7 MB view details)

Uploaded CPython 2.7m Windows x86

awkward1-0.2.28-cp27-cp27m-manylinux2010_x86_64.whl (8.6 MB view details)

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

awkward1-0.2.28-cp27-cp27m-manylinux1_x86_64.whl (8.3 MB view details)

Uploaded CPython 2.7m

awkward1-0.2.28-cp27-cp27m-manylinux1_i686.whl (8.4 MB view details)

Uploaded CPython 2.7m

awkward1-0.2.28-cp27-cp27m-macosx_10_9_x86_64.whl (8.2 MB view details)

Uploaded CPython 2.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: awkward1-0.2.28.tar.gz
  • Upload date:
  • Size: 646.5 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.28.tar.gz
Algorithm Hash digest
SHA256 4656d3ce92ea5194bc65dd1bac6bcda2115d3d5a5f14a6b30a2bf8f5e04ee442
MD5 70fef29a071ff2e90e0b9938d73eaa4d
BLAKE2b-256 b25e1f345821ae68a626ab6eaaf9cbebf75d0e27739f91b2c0dbedff1bdcfa63

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.28-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 8.6 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.28-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 1f183f2ac6630dde50aa9f12846607ba8c995f89b317f9c0d1d1c4cc3f94f454
MD5 24b06e52499723957a5b05759b525df7
BLAKE2b-256 9a6c22d6d2325fd858547e486e9004196352486b7b52c18f68f32ad05269452d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.28-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 8.2 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.28-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a778647706ccfc5a2e74c498770d5a36d436be81d9cd2f72931d6377c1522ac0
MD5 1f43e6353357d3aacbb9f6073e7e2168
BLAKE2b-256 2c60252667157468cd759302fce32f472dfe41a50ac5f2be5c6b1fcbffa85e13

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.28-cp39-cp39-manylinux1_i686.whl
  • Upload date:
  • Size: 8.4 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.28-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 5c1994ffb7b7390da6345af653c38d3dc48f5de067819533371411538828f2ce
MD5 3a37837a33e41f372b51a9be21fd9b89
BLAKE2b-256 0e356bce2e53fee842646e7fd90a4bce7996d0cb94a9ab687a088eeb7108302c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.28-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 11.5 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.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.28-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 e66a1a5f4753dc1e18661dfa601faf0728904cabbf02ce2970960641c1849669
MD5 b35d8e638732285376c6ea662f44cae7
BLAKE2b-256 55e96d1069d9fc7c6524ca8cc35a2fc024d647b0c9380bc82203d6c62c1e745b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.28-cp38-cp38-win32.whl
  • Upload date:
  • Size: 8.8 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.28-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 449079432433f8803c97f5290d869bb68ce2d113dc4619d8eee6c967d7efc629
MD5 2dc88c0bf2466068f7699fbeb46eb63d
BLAKE2b-256 a051120639be5619dad63a4eafa048faba8027f72140f512241ed2190026d259

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.28-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 8.6 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.28-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 81e73d5cb06673b4e87a78cf48ad847a3fb502ecfc24b6eb2b62ad49ff2f2f9a
MD5 701001d8dd27699aeab9f06c49c22d67
BLAKE2b-256 d3e358d329fc422f09b367a5e91f9dca493242fbe1cff5d3bc0fb2ef43a09119

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.28-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 8.3 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.28-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 6bb6c991085aff1656045395d9ea1f3e9a1bfa62167587a36dd6c6cc6d518310
MD5 8c176bb695661f06106c4988e31d0f59
BLAKE2b-256 fd2e2293299a074463b94f500a558e19496d8d7922760b0bdc45062cfd6b705f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.28-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 8.4 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.28-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 b369fdd4fed40f1505ee7d42743ce337eeb5cb5ac8682534484b217a7382d2a4
MD5 b9c2e5462e25c7fe90abe61517391525
BLAKE2b-256 5cbdd2ecb37c1302dad0043e4191aec07e323cd107b9c8e87d1baf9cd696d98c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.28-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 8.3 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.28-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 81a553777eb578d2e4e16944d94ba680691fcb76e5ed316378b0e6bc116e10c5
MD5 13b671db7c6dd28d567d4f9ae032647e
BLAKE2b-256 b846da786d9b1466c8138468cea6945506077fc973aac0825b71b1dcf7fff582

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.28-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 11.4 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.28-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 016bd233b337d025a29b7ed7042743c333b7663695eae40e8b95b2d501d92c82
MD5 9a684cb4c4c86178e473b115da6d0307
BLAKE2b-256 bf34db8667bdd3936d00481f640f01cc762aa5f28faf163b6483b4c138fc2969

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.28-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 8.7 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.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.28-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 d38cae5d900eb102560014ca96bcbec15536ce9e8ff9f4f79e5f30beee77eb60
MD5 6b037f2ca6092cbae1187b5153231244
BLAKE2b-256 ae2176ada282ac3a80fd7e5c8bec6749481699d23177b3a90bf9777bd41ee6e0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.28-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 8.6 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.28-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 92db80bb17ff603958d4cae1f8d7081bf74104c60730634ab6831603bf5f0081
MD5 24ffc91644ae017851b652c9158f7639
BLAKE2b-256 0adee787dd501dc79f58c012e5b684221446b993cbe1cc2bd888af7334f753c6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.28-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 8.3 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.28-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 28fe733d96cdc82c45fa8a2f5dcb1194c66cea0a666aa1c5fc2f53f77e4465e8
MD5 e32d10917ff00c5b1383f892d049d3ef
BLAKE2b-256 2fd12b56dde5aae449d711ac1747d2eff952d3b70a5646abd01a842fb9033d49

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.28-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 8.4 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.28-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 b3ab5815d97ec97a6ff22423eab4b8be645187860bd136a0ba1340e535449910
MD5 80bce16a42d9c7365313843185454609
BLAKE2b-256 4cc997c1539fb496c5462a92ab23ecd453badf59d903f7262c9c89a7dd00cd70

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.28-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 8.2 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.28-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 50460f35bf3c4793141a4c9c552aded1e66947665fcf300cab3bbf8deeb04d4f
MD5 d988119cbc03f77df28bf617ceeb7ce3
BLAKE2b-256 00160552be74a6574d7bef4854d04c8b771cb06ea48d9e02e4fbb0121d99b57c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.28-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 11.4 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.28-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 1fbd423d82e4187f68743cc2a111c10ebb8bc8cbd7acc21a2831353577dcbc81
MD5 752dc2e6a561e1106bc0f9973b694239
BLAKE2b-256 ad6ff32ac8b6abc248e1832f9f6cffc7b1780cd3388e12f25429bc8cd0b35983

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.28-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 8.7 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.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.28-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 25d1c8cfb2030dec4c6ed248411ae4a3fc437b19dd215f9d3d2c6a89cc0ac3ea
MD5 cdc4f3b8faea8a878a20d500d21b4540
BLAKE2b-256 72c822ca0ab4e6b32b437751a6853f8b66234259b2c12f2e439e7b6ae97f5523

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.28-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 8.6 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.28-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 2f74834362cdf84ab3dde7714df757efebf448acab2ef163cf65b1189a43cb91
MD5 d622e167bb8339090b65548b6c9f07f3
BLAKE2b-256 74340fda6ca964931f1185d0fc18ca8a208019c12194deaa3d3c1b806bbedc45

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.28-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 8.3 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.28-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 caf50c7167818449cf47de6de8fd88c51972d5d469c46ef53121972b93b6ffee
MD5 55ebb3b0ebacd69d30042eaca3b216b5
BLAKE2b-256 a2ca19607942acb0655b48be59f1d42fe77c24240838b0f91f96f36ed2aff0c5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.28-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 8.4 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.28-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 087f2dfbd502dc049ad81a9927f7d451475de95f61d0bf01ee99133e43d1c068
MD5 af4a4090871466c93b4773f9b1a766c8
BLAKE2b-256 33e16e1f0971c78f0fe76fa2709fac5b1718fdb6a5d7a3859c527f041b7a145d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.28-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 8.2 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.28-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b1a75d2d70dec84b14c61cd8ea5545c08ade80eb6cd54efd6cb173237e7c3d3a
MD5 0d6bc63d5007635d095d8017c11115f6
BLAKE2b-256 f645fdea51c64fafa8c69a5248d58d52361e880a72ddc21aeab37d6f6a917618

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.28-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 11.4 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.28-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 f32f9e928a30852a9cf28a535e454c0c6d88e03cc143559329f6032e5094299b
MD5 b6e1d04239ba48824da0e70f7628e9c2
BLAKE2b-256 c56e749fb8305334947cb41af02ba2a7e028cf2092cbad63e097b7aa8904d494

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.28-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 8.7 MB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.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.28-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 a074aebe0f03186e6fd705dab06d5e4756957fea46c92cb1b3734c67ee3a0356
MD5 68a67b7d90d5700a3f634111ef44b007
BLAKE2b-256 78da32143b66eb3d9f9dac72b5bac2faba2594e4ebd49784a70caf44131938a4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.28-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 8.6 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.28-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 dc118c4563d7d0098a3f00adc00e2338be54c00806c0db6b30b4c59f9b72e433
MD5 aa6229b1a6fdd685d344cca0899f2dbc
BLAKE2b-256 491a0bee5a930b4d82d6f454a69f368c08d820312c0d94d2add783370d945c54

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.28-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 8.3 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.28-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 6d5667070645963e4c0f6402e1ee9edc597fc7283ab00a953d9f15f2e04977e6
MD5 f0ea5a514abf9363636fdcc974f587d3
BLAKE2b-256 b3ac363404b589938c042a63d3c1bfa7e8eca6cc649a8f1683e69a512fe14f8e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.28-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 8.4 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.28-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 277d6b6535d558031a254c13bfe7eefd950c54a9a16fd29d6fbfbabf36ff8289
MD5 b4639364a16bc3eac6d13e07ce69ebf4
BLAKE2b-256 0f70759c00cb0e26de90a73c4bc3bdf973345e802a1ff447c204db1503cb827c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.28-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 8.6 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.28-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 9218ea960ad7be9e05ea61ec9212fc5763f0aaccee16f2ae3769dc3801fe618d
MD5 a3fe3b30d7933de8ddf3a482208d0cdd
BLAKE2b-256 4c9abd33c6b968284b1339150d1a54f745b917e1b535a6ff9ff64eda9363155a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.28-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 8.3 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.28-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b30e7380139f77c8d33aec51e68a5740c74797656e97509ee0b6972842c831b6
MD5 65bec47bb1c51a49b6c660b08ad2ae94
BLAKE2b-256 80d100baa2168ae6a723f6b23739f916b6ae92fa13eebcf0c0a4d9b85053665e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.28-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 8.4 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.28-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 f80260cbe13fb7268d94695a05c6eaad550cf9a8fdbb548379d4df24b625ace9
MD5 6c96b8905e03bcd78f321e91a10a97a2
BLAKE2b-256 07eaa6be5b34f6d36c18821c5f1c5f2e49d95e87f3710b0a559e412205b8e479

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.28-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 11.5 MB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.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.28-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 b4aa1e0357b325c54e49f2c008cc01f14b267a6ae38826974a3f471f32915f55
MD5 55f66d711a54d936796d0417f24b51f2
BLAKE2b-256 c654c8e261c36f48aea639f1e59017a6c5e1219f32cd4b82d79a19cce50b9f72

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.28-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 8.7 MB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.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.28-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 2e1bc33194e1aef3be32182ecf469ed5bd07038590a7c6d0a53c057d05fee080
MD5 67441dccc13cbc2f61f51fd5f037f11a
BLAKE2b-256 4ae144ffe41e797533304e7b8a283696cf4661a7cb7b8ec0fe3ffd76c72e5bd6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.28-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 8.6 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.28-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 c4c338d1ef5eed6781f1bd22e67664f09e436f6ae6eb7026957915bdc89f2f8a
MD5 fe8c71907561c3a169e80ddf69a39190
BLAKE2b-256 5e81889729d2543df2f8fda44326939cca4ea3daafb14681018b793dda818208

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.28-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 8.3 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.28-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 50e96a6daa80c8e5486541efbbb07978310bf3b35e77f2645fcd5973e674f3d3
MD5 9b9a6725601900defc8033f016756d53
BLAKE2b-256 c4ed2107738a7c3132d6ddac7a9616bd7850d43670b957ffe067aa451e3b2c30

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.28-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 8.4 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.28-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 51c98fc41bf4dfeb01250b18214680777c36d557990ad93d0c232cbda59623d0
MD5 d79f0d6632fe1d09c9e6cff39da2de78
BLAKE2b-256 446f1f0e9a16a1b99b7782771efaa73355d6db6236d0bb76e1d8848245383cc3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.28-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 8.2 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.28-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5644b0805f9d4edf0f07444bb0a1d4e53951d59d97581e24abf453cee6f513fc
MD5 69f15c7704a3156eff743b95e1c64f15
BLAKE2b-256 d08b7a1a5dc39e3802ce96bb17b72df68f5a572f95d14d986a00e0e75eb55021

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