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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

awkward1-0.4.0-cp39-cp39-manylinux2010_x86_64.whl (6.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.9

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

Uploaded CPython 3.9

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

Uploaded CPython 3.9 macOS 10.9+ x86-64

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

awkward1-0.4.0-cp38-cp38-manylinux2010_x86_64.whl (6.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.8

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

Uploaded CPython 3.8

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

Uploaded CPython 3.8 macOS 10.9+ x86-64

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

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

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

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m

awkward1-0.4.0-cp37-cp37m-macosx_10_9_x86_64.whl (5.7 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

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

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

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

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

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.5m Windows x86-64

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

Uploaded CPython 3.5m Windows x86

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

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

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

Uploaded CPython 3.5m

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

Uploaded CPython 3.5m

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

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

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7m Windows x86-64

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

Uploaded CPython 2.7m Windows x86

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

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

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

Uploaded CPython 2.7m

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

Uploaded CPython 2.7m

awkward1-0.4.0-cp27-cp27m-macosx_10_9_x86_64.whl (5.7 MB view details)

Uploaded CPython 2.7m macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for awkward1-0.4.0.tar.gz
Algorithm Hash digest
SHA256 ef81ccf7ccc82bb6cfd116c4a38470490f8275443d50d89af9c63eb3ebf76092
MD5 701a74b3bc2b05606fc7976228104429
BLAKE2b-256 6be86247bbe1c84b154135bb8331ff4d1fa854e64cd3490a4dcf0b71879d3b3e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward1-0.4.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b2ba044d9f6b878d592ee605e5c959b8781046f660d25dafd75af707d5305c8a
MD5 2ec86981d137a4141e6f680ac5e4054b
BLAKE2b-256 b1ddfe9b6357a641bbc09419ad0afff4e159fa4a66e6b70b8fad1bc9e948feb9

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward1-0.4.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 23aa30ccb156e2908b952ab0107783618f16d38aa2308085e3c9eb34d6b542af
MD5 2d49503502ab8d482c0a13d6035e42db
BLAKE2b-256 1be77fa0be27538fbc891b518577b27831129bda8d8cc6647b2b286919688c45

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward1-0.4.0-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e4c41256d675cfce64164f30f93a77e049a5068df51c6c4393261faa0cea76bf
MD5 ad9fdc49cac2e88504f9724ffa51049c
BLAKE2b-256 482c397ed1767e3068841bdc71d2b1f8d030b11e395ef929dbae74ee58a0d5ea

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward1-0.4.0-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 8649e3dcfb70bff9df6f5a48c28b614b8ede0c079f1e9c395530f762585e2279
MD5 6a89766ef50a5e5ddf3c826ea576987e
BLAKE2b-256 5b2f364804d36b1feb97adc22ba89c654bc42397b739e2d01a42de0c94f41ee7

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward1-0.4.0-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 8b416d3d9a48a3ee60872492a815d123fb486124cfbc57e13be015b13590a446
MD5 780b78c42c5c734c4fc2f70b4d49a545
BLAKE2b-256 4cb67a7b92cbd30c8f61e9bd42f9f75d143a5332c9f23475bd99145c53640a7b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.4.0-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 5.8 MB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.9.0

File hashes

Hashes for awkward1-0.4.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c9a46304a58d2fe9f6bade916040acf75d4cdd75a6a3987260ca768f05222de8
MD5 567a13abdd1ddee644de1498a6bee284
BLAKE2b-256 00c9514fe20af2837bf9d1e51789f41f4a0ec4a19c3c7dc309d8b0dc10910ef0

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward1-0.4.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 dec5b26e1848340270745a1d7238afb5ed129e45a485ce05c4525daa743f28a7
MD5 5e368dc23a37a44a6f03aaaeb38b1e40
BLAKE2b-256 9523471c1631ec4b7657b01a3c13f58fadbf6d17b3b4a19ebc918eb7226dc75f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward1-0.4.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 9bf551c481cb0eed8be68b2784c96aab53d21dd9ff5b72c812d0a24bae8f98e3
MD5 c1550da43e1a0e09f40d7f640a8ebffc
BLAKE2b-256 0246ffa875cacd5b9f6c29c92dcd9636914e00d3e880357b5d75d97502de52f3

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward1-0.4.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 18876b1e0ab9cc791d7737518b72026de94232c6f3082ebd2b8bf14a1bb3edf0
MD5 f620b8e416efd063f4f14f281d371b4b
BLAKE2b-256 190cbb77551a1a29c16b47af42dceabe1496eb7781f7829f95e7792665dd873f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward1-0.4.0-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 0835e7487a64cd2e0c3e5a796daa0957e7edcf43294076246dfc445cefebc324
MD5 c0048c5a8092e4decc4d9ad6571e0819
BLAKE2b-256 4fc7ce8d1e90befc5c3ec07795fb19f652f39428ca6f4bd142ce1e707c6c5e70

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward1-0.4.0-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 0485290cd01c75f26b4cdf8a611e4343e9d152ade3ee371aa75577a6505c1457
MD5 4a9e751214dbe9aa1899223f0c6c5fa7
BLAKE2b-256 235e13c4e24af2361363b47f6d44edcfe2bc5e6b8bb2b89c8fd293ba6038faae

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.4.0-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 5.8 MB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6

File hashes

Hashes for awkward1-0.4.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 434e52d695abac6f9d97158799789c494d47ab1a710103717c89a69eb5149753
MD5 76722cb62d10dc59612e4a7479951406
BLAKE2b-256 4fa33aee7c48495d061fc439831d3a57d6b780ccc4ad883e42ec63cbd1e8ce7e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward1-0.4.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 428bb073ecceda57ffa14db813bd059e3d46e7c974345dd9ca42dd5bab0595fe
MD5 34fe6c9c2a0eea28d6a5ce5c128f4517
BLAKE2b-256 8f0abdbbf1cb968b70a9ffae02a54dc2f96e77245b18d30b0cdbbdfb3402a969

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward1-0.4.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 e6e324df621b7ba9278211ec528c7aab59cd5dd7713d1a6ae81183e914e0489d
MD5 fdaa5fbe77dbfa8f43047b2eaf895e3e
BLAKE2b-256 9b641db9a4bbc0f31b55553a1db3962389ba7db99d09254f64fe4378b9ee3539

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward1-0.4.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 d47a609d6bfc76b988a7afe8556306fc850af51efcfffdd0eeba1f44a203a58f
MD5 fbb2cc989f5ef6ba8fdd3f84428329d8
BLAKE2b-256 e5671edfbda4c2be50ad3ce73dafc478ab2aab86c79e118d8e6035d4859d677e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward1-0.4.0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c0feaf91264999479a3226f4b2fe7668f30f5df7381582bd5e6b33bf7dd13410
MD5 83136711f7ae231e85b3262063d826ce
BLAKE2b-256 e5c925fe7d7ce35ebd8ada15b6a88342136a904e09448e2c36b5493681c5c08d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward1-0.4.0-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 bf40c54571112bac4003fc5ba17ea30e2cfbfdc7a1accd37104906786d58ec92
MD5 8641b2be391ce4d94b652264d287a700
BLAKE2b-256 43ee3be9f9b9f4ab0aaf1c582a7429abce3ac7eb4d45987e41a610826c4c5cac

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.4.0-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 5.7 MB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.7.9

File hashes

Hashes for awkward1-0.4.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 265307f37f5e89945a79f9e75a1385e4c0444b54c964ec0a5887c74d5ab41c04
MD5 54ecf3608dc01006e71d5b3e716e6013
BLAKE2b-256 c8ecd50d0ea25c2fdb9b86a7e07d93b73824a12134de188600e6f5574c4f1f1d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward1-0.4.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 c0101e5e61c73d2fba7f069dcdd1434de49566d757aaa9cda3f090554774e894
MD5 13637f64b7afe55468950c1b9289eea6
BLAKE2b-256 af653ed687214982cfe11c6dd153eb8d4711bc52807aac15f819b9072ddc501b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward1-0.4.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 dafbc686e87732b5f5023ab2ab3119eea9e7955a5b2a26d24ddbdb9df7c891e1
MD5 53c00633ea923befaa3f0af420e21279
BLAKE2b-256 3ff1914b4f6a2bfc26055f49cb074af05ec12eb556cecccd56f3935074c47356

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward1-0.4.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 4db807823b5b238103b29e64b4db0d66f2288413618ff8d9e9b8f980d3826852
MD5 eaabb1a9e8904b873c225761d1cc0abb
BLAKE2b-256 5590592f20f82c06e9af3bc7ed354f5f664bd2e75f8ee01a05816367b49b917b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward1-0.4.0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 86934b4317fb518892e5abdb9b4a1b8f7b35573f5d991eb8bef5f90c83fe9663
MD5 7f679650f42c2b1706c7db9003afed3a
BLAKE2b-256 e157494626b81fcee506b0249e6ed37f114256a204034a42b4878f6b9d06e14e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward1-0.4.0-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 75c188d5630e74037fbeea4249ff6652aa5f3bf5e9bf1b7bf9a464771d583573
MD5 f12a36132abf4ca17037f04dbc3dc4d1
BLAKE2b-256 b3f5b6ef4cd8e95c538ec10173b6db091968f07dd2120c6c6e88237581ec925d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward1-0.4.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 94675d011730232a9a3d0f98fa6edcdbb22393ab745c2e6e04daefa283be81a4
MD5 521c95a26254a41d0c4ba8ade5fb95a8
BLAKE2b-256 3d7220f1bc6cf38d76cf91209a6933f4a91c6ce29f9c235c487d8a37a2e9aec2

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward1-0.4.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 45b69971c071cbea604bc23a7160c01f729c4b789e8c3ec4ca1847d9edf3041d
MD5 b9545af57153dd8a37fd30e1c059f0cf
BLAKE2b-256 448b930ed2b314590a08aae70e3d851eee1531846dde50eaaf04cf9cb9161f42

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward1-0.4.0-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 99474371d0ebdf06e74afa6b4744f11664f370adf1a2e0901189822eef0970c8
MD5 89d5f6c15b1e16275464d534c3fd87bd
BLAKE2b-256 d88f9bcb5793d75ed838f4d40ceeeae4c454722d15002633e573795be08db81a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward1-0.4.0-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 dc400c8cf2846c94e91fb21b7aa7797ca4d89382be5737ac09a885ebb52b4d50
MD5 6330b0cfb53e709ebc8f4d31d12d61ac
BLAKE2b-256 423c428cd479a0f48330b37a2d2f917c5b91f91bb7bf967a6953d1914d2febc5

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward1-0.4.0-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 56edbc3683a17077b09075cee41f4b392d17f43afc4bb792a30ea7a9623f1abd
MD5 994edde911b63eea07ba75398d56e486
BLAKE2b-256 a1b33a1519219656e90e929eb004eb44277ca9aeb25864c7f40a80229c558f08

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward1-0.4.0-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 bdca30f93af22f6080142f1084abb1ea1ead5b0098f4d6405b8a836ce2842f7c
MD5 9c3791d27b456de6c229ba21be84b9ff
BLAKE2b-256 9b74fa7c8d4f7521b8faa86d7b9ed2f4bcd93d89fac9ee9d74cdcd3564277eb4

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward1-0.4.0-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 34b9cf8a4580abc12a32b39f486e07eb0bff88b3e2e77f981d919603a81d439f
MD5 63e712ad97a641ae9f65e0694d31e583
BLAKE2b-256 c1a04267f5d6beb111ecc9f9f15122eb96a0777492b81f8a272b66e587ea363a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward1-0.4.0-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 c516d06e7170d93117983ea39a6d579593939043e790d924dfb39385f4a53eda
MD5 5ff262a80776571b59d79e24ccc6f4a2
BLAKE2b-256 a5d4a3deaf9009154b699616b03eed2b5b5bc52a3fea8b013add9cdb622f50b0

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward1-0.4.0-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 d985c16603c8c3bba57dc0fec38389746c91842ebd411e80f90d9714752ad2d1
MD5 1d99f505770565dbd2a4e58eb541549a
BLAKE2b-256 d0e8ebcbd4f7c8b9b62ce579bbab7df34b88d54558f377399306e53f652a29c9

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward1-0.4.0-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 589692556e1b4df781c6d47a1b3f6ee3db538f9bf20b4b6006c869ee4643e982
MD5 2b753f53f404bd64ab70963dd1482bb6
BLAKE2b-256 9555b3f5d1c5d27807a51697db7b40a97870c8ec77d12194cfe339f5a79754e3

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward1-0.4.0-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 6ef58454ad96f67dbfab9629dd4dc0e448a747f60ccb28fac065ae026e129a78
MD5 7c84c0f12493561d3fb8c06def77abd2
BLAKE2b-256 ef1bbdfc29fee61401e5cc012365c193c0392e16cf5a59509faf082280d0164e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward1-0.4.0-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 5fc01f90727aa7c71781b03e4871390c6a753d472edefd3ea7c9e7e17755efd2
MD5 e8155b27ea4e57ef4f525b8f1efcfbcc
BLAKE2b-256 22b62282cdc313dbe2faede8b682d0ced8b7c7d58bd80d7a4ef0ea8f2e6e996e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward1-0.4.0-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 9dc9a94a46da881a73e7f13e7c2bec08820b2a4dae48d2bcc050ff7d4877c448
MD5 688ef1df22c64ea10419735cd23aa59f
BLAKE2b-256 65e62fa15b84a901e73439f35a50bb0e14349d1730c3521f7df1d3636e107de7

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward1-0.4.0-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 036c7c13b6bf73653447741eeeef660179808cf5c57bf46c4a7bcfbb2681a0a0
MD5 7cfa7703c44e8f4373f09f4d59de7a3a
BLAKE2b-256 e81ff132c37951907e2386d150075ca39bd7488b5c41dafecbdbdc146398d204

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