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

Uploaded Source

Built Distributions

awkward1-0.2.35-cp39-cp39-manylinux2010_x86_64.whl (9.6 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

awkward1-0.2.35-cp39-cp39-manylinux1_x86_64.whl (8.9 MB view details)

Uploaded CPython 3.9

awkward1-0.2.35-cp39-cp39-manylinux1_i686.whl (9.0 MB view details)

Uploaded CPython 3.9

awkward1-0.2.35-cp38-cp38-win_amd64.whl (12.0 MB view details)

Uploaded CPython 3.8 Windows x86-64

awkward1-0.2.35-cp38-cp38-win32.whl (9.2 MB view details)

Uploaded CPython 3.8 Windows x86

awkward1-0.2.35-cp38-cp38-manylinux2010_x86_64.whl (9.6 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

awkward1-0.2.35-cp38-cp38-manylinux1_x86_64.whl (8.9 MB view details)

Uploaded CPython 3.8

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

Uploaded CPython 3.8

awkward1-0.2.35-cp38-cp38-macosx_10_9_x86_64.whl (9.2 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

awkward1-0.2.35-cp37-cp37m-win_amd64.whl (12.0 MB view details)

Uploaded CPython 3.7m Windows x86-64

awkward1-0.2.35-cp37-cp37m-win32.whl (9.2 MB view details)

Uploaded CPython 3.7m Windows x86

awkward1-0.2.35-cp37-cp37m-manylinux2010_x86_64.whl (9.6 MB view details)

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

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

Uploaded CPython 3.7m

awkward1-0.2.35-cp37-cp37m-manylinux1_i686.whl (9.0 MB view details)

Uploaded CPython 3.7m

awkward1-0.2.35-cp37-cp37m-macosx_10_9_x86_64.whl (9.1 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

awkward1-0.2.35-cp36-cp36m-win_amd64.whl (12.0 MB view details)

Uploaded CPython 3.6m Windows x86-64

awkward1-0.2.35-cp36-cp36m-win32.whl (9.2 MB view details)

Uploaded CPython 3.6m Windows x86

awkward1-0.2.35-cp36-cp36m-manylinux2010_x86_64.whl (9.6 MB view details)

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

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

Uploaded CPython 3.6m

awkward1-0.2.35-cp36-cp36m-manylinux1_i686.whl (9.0 MB view details)

Uploaded CPython 3.6m

awkward1-0.2.35-cp36-cp36m-macosx_10_9_x86_64.whl (9.1 MB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

awkward1-0.2.35-cp35-cp35m-win_amd64.whl (12.0 MB view details)

Uploaded CPython 3.5m Windows x86-64

awkward1-0.2.35-cp35-cp35m-win32.whl (9.2 MB view details)

Uploaded CPython 3.5m Windows x86

awkward1-0.2.35-cp35-cp35m-manylinux2010_x86_64.whl (9.6 MB view details)

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

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

Uploaded CPython 3.5m

awkward1-0.2.35-cp35-cp35m-manylinux1_i686.whl (9.0 MB view details)

Uploaded CPython 3.5m

awkward1-0.2.35-cp27-cp27mu-manylinux2010_x86_64.whl (9.6 MB view details)

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

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

Uploaded CPython 2.7mu

awkward1-0.2.35-cp27-cp27mu-manylinux1_i686.whl (9.0 MB view details)

Uploaded CPython 2.7mu

awkward1-0.2.35-cp27-cp27m-win_amd64.whl (12.0 MB view details)

Uploaded CPython 2.7m Windows x86-64

awkward1-0.2.35-cp27-cp27m-win32.whl (9.2 MB view details)

Uploaded CPython 2.7m Windows x86

awkward1-0.2.35-cp27-cp27m-manylinux2010_x86_64.whl (9.6 MB view details)

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

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

Uploaded CPython 2.7m

awkward1-0.2.35-cp27-cp27m-manylinux1_i686.whl (9.0 MB view details)

Uploaded CPython 2.7m

awkward1-0.2.35-cp27-cp27m-macosx_10_9_x86_64.whl (9.1 MB view details)

Uploaded CPython 2.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: awkward1-0.2.35.tar.gz
  • Upload date:
  • Size: 668.9 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.35.tar.gz
Algorithm Hash digest
SHA256 563868f0f2d0cb398ce3616ee3f9734cc68cee9a612d35cab830ec5c728f1474
MD5 b6ba275860a9d397f6fea06d6f4c7626
BLAKE2b-256 743bd3b84989504677ead139f68c040976dcaec319ed7154292556363e818f15

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.35-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 9.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.35-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 8d26e7ea2b809a561bd5b28e1f4e0e5c606ebac6505c0ebe29e76b86532d2765
MD5 417c4dc1c36c9379927ef9d53e129de7
BLAKE2b-256 c773e858258b7f9c2cfa55f861d795e7a3035fe31e7495420c83a4b958cca1aa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.35-cp39-cp39-manylinux1_x86_64.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.35-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 de0fc46aa3824b053052a26305f9b76284572f76e228c494044f40836879db8d
MD5 d157f017b4f58dddedba0bf6090669f4
BLAKE2b-256 988c5319efa1409522fa8f679b6132ad15236f5955d91c67de78dea681c99979

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.35-cp39-cp39-manylinux1_i686.whl
  • Upload date:
  • Size: 9.0 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.35-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 fd9b47c93a28129181d604ce53fc51405f94c31a0069f0fa68971146067e2cbc
MD5 d62af9d7e41682e7ca6aec368edee109
BLAKE2b-256 fd7a124cc8a5fe2a9c944dc86fc0dafdb94f5c26f6d66f4c09a52f695d34280c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.35-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 12.0 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.35-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 0d99bf99485aa8ecdc4335f6dfaf8f609578803715dc54932af9a0c1671d1f51
MD5 246fa6ad0063bfb76cf939380a88a4ba
BLAKE2b-256 a8a3692dacf01b1af73777e58dde35569d7245e2e0f9a8e81b54048d05fd8272

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.35-cp38-cp38-win32.whl
  • Upload date:
  • Size: 9.2 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.35-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 7b260c9719029ca4d48edded7c3622a0b54902231fc6319160a5328010003f6d
MD5 479d9e38eef6a06ff7144dca2cafea9a
BLAKE2b-256 45b5c8e379930678ae5958854bcf59b1058dc28b34bd51f63401f98c92f9ad36

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.35-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 9.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.35-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 44d75f852bab74a8041ea2115184d10642d38d7cff4535cc20ea3c0cfa3b4e77
MD5 8f9364bc20f861f78877c5f67a3c3b74
BLAKE2b-256 0c9b3f3c984f0bfee37368de7222ede883d8aa365d7d76bb8daa13120022a4ce

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.35-cp38-cp38-manylinux1_x86_64.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.35-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 5a939611b7615aa985f3f90f45c1e2e260b1edd63721ea541f597cf04d32b97d
MD5 1cb303bfbf46dedcbf9eb0f3a2ad8d3d
BLAKE2b-256 f3fb765bb0a2daab2b447dbc631893d6eb776b79a2e7c8b362db6957050304b4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.35-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.35-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 b27bd3f052ea4fc5ec2b3b1ecb91d952537a30e6bb0563bafdfc5293c3bbc757
MD5 921a065c8bc330e81ffda4373381fc1a
BLAKE2b-256 d945e8723a64fd0d84c061ced9c9b6d713c33720d0b35d60d9dc0eae354415ef

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.35-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 9.2 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.35-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9e214358ad4752d101090df09d7d8b7f0225ef1c20d642202dca3781c4f06fb3
MD5 e6a6509043adb4a7f09a5c1e10af8fb6
BLAKE2b-256 8b9db219d6c84cab420bdb41b3d5dff2cf2e4c359fd2c7a5bb6941011d8e7c11

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.35-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 12.0 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.9

File hashes

Hashes for awkward1-0.2.35-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 cb7f7bc3dd2265a6dae9122c4b87bfa54254457af5d170aa4077ac7660418a9c
MD5 f04e0efbc10a723b4998da7abe7261bf
BLAKE2b-256 e37820a29b2b66083af231a413d4108670bb2e4b577df8840399e2eee0019ae8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.35-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 9.2 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.9

File hashes

Hashes for awkward1-0.2.35-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 eb01e6cadcdea194138ed6f216051d178e359d09d490a9407139b8966c6cb6df
MD5 c2411abd52710eb70b29ab8d3f13bfe9
BLAKE2b-256 2fb45e3fd39fc93159dbd7395ad33ccefe98161889126f82e8db8c72a9044327

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.35-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 9.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.35-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 f10fe4933bf138a0d3704340d6f327c9d1f3722381ad0aa779b3befbbd6798d7
MD5 59e076297e18b44f86ef7bdcbe68cd3b
BLAKE2b-256 c60cfd594a100f46edd27913b7e3854c3170e3302b6f24e54ff4f0868b6e5798

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.35-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.35-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d56f59b2c0d1d9028142ab2e50b6c59944efbcdefe35738825826356ccc02124
MD5 a687b7ea138885577196b406660ce6ee
BLAKE2b-256 320a3ed4a8552a01dd79a549495b1cc187aa266d42275f8509377eb477cc8920

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.35-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 9.0 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.35-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 66f3a055c4869d1aa0fe099777ec0c0bf56955d974f8027ee348c591ecf36597
MD5 cd948096acaac38584f96a0004b0a45a
BLAKE2b-256 22a2200b9b6fbcad31bf30f642d8c0c924aee54aa9f9b1fc6998337107e762b4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.35-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 9.1 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.35-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 70562ace0256a196719764126fbbd8ecc92d5ff11ccada5bf6ca2d5603d2f519
MD5 43ff11f8ca1fb8034bc4c0e6f394f0f3
BLAKE2b-256 92a288c00704654c848a230a6b9429868ae0df5daf18b010778ef7533cc6ae87

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.35-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 12.0 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.35-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 ee1fa1b58fd0f6f3e0da37aaa86bdbcddbfe892a22ce20087220608269e0b882
MD5 64c46e29c99b87f8fa313acd8d6d4f2d
BLAKE2b-256 e26ac41c5d84a2e93464d0ca89140290279ae31ffa73834b006d4709028f84de

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.35-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 9.2 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.35-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 941e9ba2b1e8ab4259ba1f2d01e172b43193826c88024d42db0f2b34dfbf466c
MD5 5f57c2758a8f17482edaf2e664599b05
BLAKE2b-256 f545a547fdabc05c9eaaccaeb9e950e4c2f81e76d6547b3211708582e94366b0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.35-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 9.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.35-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 083dcfbe6325d8c8e3b3d7e7bf986e4b50f92c2fab317b1fe4b64548916dae58
MD5 a1c9ffd856d3037656bc340f293efff2
BLAKE2b-256 4821335c8bcbd0ec5f9c39f5be1a0f7d169c64dbe7b2890f4048e6966fbffd8a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.35-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.35-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c0611e675e0af2d8f64354b3b4f0097af728e76b6d7b4d7b3fa4df03e26d8be4
MD5 361dda997ac5d244600d3afcb7cb5662
BLAKE2b-256 098bb903ab45c02552e4c2268cf39f9f0720c20840b56be009813fffab0f5a9c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.35-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 9.0 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.35-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 83f26e4661173b4b284ea210e33d4c4a521f60b42c10ff009353e8cec462f4f7
MD5 dfd42f1ce72038e9dba9f2d205d5b15d
BLAKE2b-256 d0fab85db714f2698add147d672283383b1bfddf14b60d229b64f82ad4a31da5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.35-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 9.1 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.35-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8f53ed8159bc89bda778a7b21bc98b65ddf278db5733351554df1bcfe8b4c3fa
MD5 321ce804a5f0a9070b5cb8de545d8169
BLAKE2b-256 776e7502babbbd01e7a2db77eef639ce533b0045ca98624b3767e74c77158f44

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.35-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 12.0 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.35-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 a6dc8b4d103fdf15daf3a4cc5f18301acce139533f71e42c1a202adbd6307e35
MD5 527edb8448a42d2696719afd5d67b8af
BLAKE2b-256 7199ed381061dfaae4d8857854fdf4c729c2786ba28fc3d433f9d3c0754ca733

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.35-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 9.2 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.35-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 9f14d994966800cab4d9c238ff49b6999ec53e7b5bcc7319444d9b50076e756e
MD5 6d39441514f1c230b572cf84d42f3861
BLAKE2b-256 6cf025a7389cd42d8761165ae4b148a61649489589db05b1b175825cff44da87

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.35-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 9.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.35-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 16055f62cfe6ecfaa6348cb347e108c3f7305e3cf80bef31f5eba04911608175
MD5 a6c7eb513d28e642160a047190147a39
BLAKE2b-256 f2fd0e99fbfd015058b5a787a5e7936de1cafe3066d2b2806d441f3160b9159b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.35-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.35-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ff83543ec4981679ebb22d58b26fe0872ed90a127d88590d423e33693ca4188e
MD5 b96e7f2d8f14e77a0fdb3c561758ac20
BLAKE2b-256 18683f328fd61d038fc52be47b12e238c705f47d8fa17a344a2ccea3f9f842a8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.35-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 9.0 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.35-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 a7872720407017514a1917af53a06cb8fa88ede1a853cbaff512aaee963ce48a
MD5 07fa8e29774a55c4a117953c2599e359
BLAKE2b-256 004f907c4d658168776543dce6e324626a9df96d85f106796969ab10b29a130a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.35-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 9.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.35-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 375d74e8fe95be141067e9065a66e8e06ee4862ee96dc2d466c15a2f323f650f
MD5 7b590dd08b0e1b15fe32cc7df5fb98af
BLAKE2b-256 ab605d8a7a8accddf3b4c81c0e1e3ff4c0bfd87832070fe051f53c577c9297d9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.35-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.35-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 95149eb614262d9862674d5eb94b9269a07a7e8ecb4749d5a7985cef444d6e87
MD5 895e87ae50a43c02c19324e369dbf097
BLAKE2b-256 5d03f68904edc4e10b00d4fd2772c8c5ef55181f749fde1f35bc43267ba252fc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.35-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 9.0 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.35-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 b86769c351394c069fc473c3c04ec9d9435d0fe802a9a79b209d7737f8c6c4f9
MD5 aa1acc41e60543c3e67072d0f36063f7
BLAKE2b-256 eb2583fb640f9e871c3b6ebbaf1ae2286ea3880b470e0470508fefb315c641fe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.35-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 12.0 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.35-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 c701b5aeb9a44ac74ef1ccccc55ba9c3f835495b72b33b456537c4c307e478e2
MD5 950f19b8f593bd9ca1f460bf035c46bc
BLAKE2b-256 7e4e571d1b713d9d5f4acb52964a952bdf7cc326ed3a41473ec819c252ebc9b6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.35-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 9.2 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.35-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 3345b17bf15c4d9ec484d75f65513e3afcdb763105be6887e04d5cae5a9688bb
MD5 9e087e72aa09298d78fc40bef7cee8b3
BLAKE2b-256 89854eebf78fc4afc5f33afbd9a8c6237ca5ea54db618833005b34d2036107c1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.35-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 9.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.35-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 aa1f5ba73fed81b1f3adc65cda936b92b39079728887b77238711449acfc455c
MD5 482d75ede424d2ce4a5df2d9c8757392
BLAKE2b-256 d9a8352d5d815c3a2adb132be8e4da10c434d2af7906c4bebd3c2b0fb40a7440

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.35-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.35-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 6bac7729445c1197b1b0f2c0874e5b75dfba448a31fca7ba639adf3e719b9686
MD5 2acc838ff2cd3aa69e4d6d6c40987d20
BLAKE2b-256 47f536bb6bfefa67b633fcc44ae6c4ef4a27eb8cfd85e3da130b47d7d5187097

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.35-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 9.0 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.35-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 d5d664a7b414d3ac661fb2c77780a7cad2bc40d9fa6e53e564c0d69027149053
MD5 31f6827ef48c7f43ee992f6920797609
BLAKE2b-256 d0d4ceb4b7641ad3aee446d70ae4c1e59faef3a919101f2c04048440a2bc874c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.35-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 9.1 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.35-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d74a45257c276a9a20a3c192c8f7abe611f8469c6f2d3ebda63a21767e59772b
MD5 b8a0a5fe0299de68670e81814bd9ea36
BLAKE2b-256 bb210d66b6c3663fe735036536c5eb778fd3cb05d5becd40c616c6b0584c3d12

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