Skip to main content

Manipulate JSON-like data with NumPy-like idioms.

Project description

Awkward Array is a library for nested, variable-sized data, including arbitrary-length lists, records, mixed types, and missing data, using NumPy-like idioms.

Arrays are dynamically typed, but operations on them are compiled and fast. Their behavior coincides with NumPy when array dimensions are regular and generalizes when they're not.

Motivating example

Given an array of objects with x, y fields and variable-length nested lists like

array = ak.Array([
    [{"x": 1.1, "y": [1]}, {"x": 2.2, "y": [1, 2]}, {"x": 3.3, "y": [1, 2, 3]}],
    [],
    [{"x": 4.4, "y": {1, 2, 3, 4]}, {"x": 5.5, "y": [1, 2, 3, 4, 5]}]
])

the following slices out the y values, drops the first element from each inner list, and runs NumPy's np.square function on everything that is left:

output = np.square(array["y", ..., 1:])

The result is

[
    [[], [4], [4, 9]],
    [],
    [[4, 9, 16], [4, 9, 16, 25]]
]

The equivalent using only Python is

output = []
for sublist in array:
    tmp1 = []
    for record in sublist:
        tmp2 = []
        for number in record["y"][1:]:
            tmp2.append(np.square(number))
        tmp1.append(tmp2)
    output.append(tmp1)

Not only is the expression using Awkward Arrays more concise, using idioms familiar from NumPy, but it's much faster and uses less memory.

For a similar problem 10 million times larger than the one above (on a single-threaded 2.2 GHz processor),

  • the Awkward Array one-liner takes 4.6 seconds to run and uses 2.1 GB of memory,
  • the equivalent using Python lists and dicts takes 138 seconds to run and uses 22 GB of memory.

Speed and memory factors in the double digits are common because we're replacing Python's dynamically typed, pointer-chasing virtual machine with type-specialized, precompiled routines on contiguous data. (In other words, for the same reasons as NumPy.) Even higher speedups are possible when Awkward Array is paired with Numba.

Our presentation at SciPy 2020 provides a good introduction, showing how to use these arrays in a real analysis.

Installation

Awkward Array can be installed from PyPI using pip:

pip install awkward1

You will likely get a precompiled binary (wheel), depending on your operating system and Python version. If not, pip attempts to compile from source (which requires a C++ compiler, make, and CMake).

Awkward Array is also available using conda, which always installs a binary:

conda install -c conda-forge awkward1

If you have already added conda-forge as a channel, the -c conda-forge is unnecessary. Adding the channel is recommended because it ensures that all of your packages use compatible versions:

conda config --add channels conda-forge
conda update --all

Getting help

How-to tutorials

Python API reference

C++ API reference

Project details


Download files

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

Source Distribution

awkward1-0.4.2.tar.gz (773.3 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.9

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

Uploaded CPython 3.9

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.8

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

Uploaded CPython 3.8

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

Uploaded CPython 3.8macOS 10.9+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

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

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7mmacOS 10.9+ x86-64

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

Uploaded CPython 3.6mWindows x86-64

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

Uploaded CPython 3.6mWindows x86

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

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.5mWindows x86-64

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

Uploaded CPython 3.5mWindows x86

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

Uploaded CPython 3.5mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.5m

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

Uploaded CPython 3.5m

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

Uploaded CPython 2.7mumanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mWindows x86-64

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

Uploaded CPython 2.7mWindows x86

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

Uploaded CPython 2.7mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 2.7m

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

Uploaded CPython 2.7m

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

Uploaded CPython 2.7mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: awkward1-0.4.2.tar.gz
  • Upload date:
  • Size: 773.3 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.2.tar.gz
Algorithm Hash digest
SHA256 bdcd6dbedf59ff944d4dea9bdfc6741a2543831ec144147c76a942a3762234d6
MD5 cfbf8b6bb6916948a6b1f9e25057a392
BLAKE2b-256 3271bbd6d00351f624a9d2f3972bcf1acf2756bf4e2548adab7d0362ae8f753c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.4.2-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.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 04cac5a06b14fa7b65d8487d984beb5ee4a946aad31186f8a019579e5123c8dc
MD5 0dc4f3e56a6a7f7a29014a60fa322e5a
BLAKE2b-256 7adbebc8c261eb05cf300189ac4347c028c74dc43826261915ac075ed6b2680e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.4.2-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.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 1bd4338c6fa46aa21244d24b7b2aaacfe8a3612d2678deb01f6313d28c2afb2e
MD5 fd8ebb97854156d91f021a27e6ad625d
BLAKE2b-256 2a9a59368450a5935c7afad7e1e2a79b495a0289ec107f49fc5ee4c1456d4728

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.4.2-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.2-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 86b8c3a244c445c618c02405711b7876c2123bd67d6ea7d6974409c5d7659026
MD5 6b8098f8d709b274006894760899ac02
BLAKE2b-256 9de578564dca30b101614b85ef8da9272a55eedfcc8f846116b657be1a91e77c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.4.2-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.2-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 46e82be37c51627b000f8de63782fe1c1f6195e90201b68100d07babd7d21f28
MD5 a1366fad8b28b51090f44e663cb7b807
BLAKE2b-256 a575926a7b3bbd1157eea25f70c6835a78422fa389214bc36646b7145f05f3e5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.4.2-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.2-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 b14f5fc2de2efc65185cd5a2886b6706d576cc9233b9013ed5946a1da9f43462
MD5 fa0afa2e394ba254e52fe2dcd97b13cd
BLAKE2b-256 52ed60573ceeede5e084cfaa4696efcfac0ebe23b5b7fa418187305d9570f9b7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.4.2-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.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fa86447613a55ccdb45e3e0db47a4548cd6d925ec6322d4408d9563807e01eff
MD5 4b1c16797c2bb517ee15ac2387874bf0
BLAKE2b-256 0203e1f54bff15bf851e60e22da06a9281ff4bf5671727af9841794e39063bc1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.4.2-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.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 a27e5b3ea97de2523c85b3cd6f8bb52f8bb8d9125597f77d7408ce04a243c6f9
MD5 081cbe44da7fec52857ba6bf93c3adc6
BLAKE2b-256 18ac5d835973a6c265a5bd03583bbf062626ff81132f3a8fdfb14abfcb332ad7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.4.2-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.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 9f2cd3687f5ecd0eb105c7ff3bee3601c3d3e03907803763e678bc6a15a1dfa7
MD5 e72a7e3424d21217fd3a7019703a9e89
BLAKE2b-256 5b998867f8207b752c4528ff7fd40188103c8864131bbaaf122f5ba195a81421

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.4.2-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.2-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 f3b91a23e6777a7617e5c60fff9da899d34141b3f26ec184093075c43ebf2669
MD5 376b6c449bade4752be263e77787d982
BLAKE2b-256 3066870f58ba326ff98676e96fb2eecc77c5a238479993649eeac9258b9efe55

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.4.2-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.2-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 5c74ab340ffcc00f640089c632ce91a4039c4b9478713fb368f37669a8c0f524
MD5 d8bb894ba5b74c4682b9d89363f6c275
BLAKE2b-256 ef2ca7c999e27bb6f8fe8e88d21fd8fd2deac190970efc0d84393943d156def0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.4.2-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.2-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 bbe94f396eeed2c024cc10d1c1856ac6cba3872d61fc1981f528e94ac45092be
MD5 a5d62f4f658c17e5be70f6ef6c030571
BLAKE2b-256 6d5b1c05599989d49fb9760d4109edb0a0f1ae80d9fa4810a9ba785c372e3e58

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.4.2-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.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c86204272f592d3e3d6d88dfaf8e943aad28eec4dbd2a623caf6828543b999a0
MD5 e789a9e0fe9ebcdbbad7cdfc47676027
BLAKE2b-256 db2b79e1bbf509b3a168c3d323bf167d88bc3150fd915a35423e92f2128a8b97

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.4.2-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.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 a2e9d1b2a74349c7124345622d0fd9260e2fd537f7cb9083340c6db5522d628a
MD5 227297abdeb00673b0e3688f8cc3a8e6
BLAKE2b-256 c7a4a196d977b68c6a20eb384dbf9ab8346e2ccbf6b3e316a1fccb2ba69987fe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.4.2-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.2-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 615db800bacc3dc54bfb54f52d964685386605fe043b6a84294f534908600f76
MD5 669295faf0de3b4e66f5a880d38f82ef
BLAKE2b-256 416888ea294c608e88bf7f2c5a06051e6476fb354addd578916ba5c590c006de

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.4.2-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.2-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 88f8d28a3c2ec43589066094101b102063e5711cefd8e394b8752160c10ecaa2
MD5 ed1d909cb5f6c345c893c802a857bf10
BLAKE2b-256 60ad3b2ff6ed4ea1f708ff959ee6aab5b0a748a5487bd8571eac471e7285bb55

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.4.2-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.2-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b3f241999b3ef3bf31dde99e48ba9a3c9773186c4526fd077cdcb8bdaf0f7563
MD5 300572c91134454b695831b18d963417
BLAKE2b-256 61d35b7cff7e4d5b7462d01323aeffec5df133ddb6d6251cb7c3c52e80772e65

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.4.2-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.2-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 95e8a9b9dfa6525dd8cff9e0050b6eecbd03f587ba1e1f04158da79cc71ec8fb
MD5 16faa387c82f2b3fdef2ea3ad17ab3ac
BLAKE2b-256 49ba36f4c8aba9d99503798d9b0284c0ba4c771f8eb6803990d1ad01b1ff34fc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.4.2-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.2-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2fde53290863831ac57adc42894a7e88a8232cf0fbc108e2d03186e3f1179519
MD5 d09e9f32f2a1c76552f353e5d513155c
BLAKE2b-256 a5a3e715ab6b0eface396c913a5db826f66dbc8d834f2b7086252dc5fa3d8001

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.4.2-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.2-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 496667b37d355d46de835f280de9834271c602ccb5996fb785d4d33b19068468
MD5 43f21bb6ff1a18305a9f2c64a1a7198b
BLAKE2b-256 d3b86c94ac20d13c53556416e178afdef574e81cc376d6cd1bb67635bab1006a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.4.2-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.2-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 f5224b77a5e55cc491f733219b41d2f60ff567af1a25c9ed6dee8e30319d8b6f
MD5 1187ec608dd15f82f1e3f20d9f4ba912
BLAKE2b-256 4df52289e7852c6e91fc25a5b5c63296da9bc70c47a163ddc32fe8147413e824

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.4.2-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.2-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 c7a02c0a9b6b4ebb3fd4d1aae1116ef01e9b7392c989d74f53a0514aa89827d0
MD5 dae43dc4764bc8ed5a3d7d70ed0a2e2f
BLAKE2b-256 0306b61c631dc88f6d47e277d60f1d895df54f2dbd38153c36b4f6be25c50e09

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.4.2-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.2-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 f598a0e50cb974ea422358dc1debac999bf89efa60a43edbb33ff7fdcf926bfe
MD5 33965ef8698579a4b74c7946bdffe4f8
BLAKE2b-256 e77b2abc3c93d8f5703b977849b9d516182ad09569ceecb62c264423261b26af

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.4.2-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.2-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 9615a5561f9161c9ac9c0071b3b290f55568c215b808523f2cec704bed03f9d4
MD5 ed8f21f77531dce1537d68e63abe1279
BLAKE2b-256 16e160e868b86953ec24bc2d5788e2df438590e9dc7c3657bcfc139e73fd3f12

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.4.2-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.2-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 67d1992559cdefdfcef86c793143040251ec6d7e7f095be8485ccc71159159b2
MD5 a48bf9d82ea04b01e2781fc7a9ca1a19
BLAKE2b-256 af58bc37fdf57467ae4440c4bf0e635b2dee2ada80d134d20e35e36a9ba912eb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.4.2-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.2-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 1f313bd0766fd718b3804315568021de89b6be1f4cfc4dd59ef6cba65ad38be6
MD5 26e75c1c4f2a533eac8c83d70a2bd52f
BLAKE2b-256 05681e36cce076aca2130fba0dae91972a13db5ce67e05f14e4deaae1cdf52be

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.4.2-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.2-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 94c8f91da2cd24e4c99f62a1f6a7ef3843c2eecd4a9d9ece38c012657371feb5
MD5 59dc33128ad19ee4c9071c1208b48029
BLAKE2b-256 e6e84d0c08051a042f329c9901fc87859c51cdc254af1d9e4c25b9ac44a1b51c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.4.2-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.2-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 bcc32a535a9c24c292c36bd1527f4e182b75b1531a8e6275a2716ffbae4b7504
MD5 46f026c7231c048ab8ab2a0262dcb939
BLAKE2b-256 6b2d8de9bd468ccdf393dbedf30dba5b803521387deccb5c91f2c4f032e1c707

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.4.2-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.2-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 549e13e3def7b460e315b0a1f615846c115a91cf099c6e851321834f14b0778e
MD5 69a8b01c1ab7519b24967d49ef1df164
BLAKE2b-256 0d5ae31a91d470c508c8d76087a6b29eb18badd437a2b7b786f8b04b06832416

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.4.2-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.2-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 8488c502bb5ce57360d923bc5df0369754a9539872ab1820609efd0f580cb58c
MD5 74bdbda8171b9b37da31acef1402e5c5
BLAKE2b-256 2c68529d551ffb6c6ead4a9a11f455daf3cd5f520665c14001943facf7f9ab3a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.4.2-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.2-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b99a3103ea205c12ee143fe62127b803470fbb97986c725998b0f2f4e6b51bd7
MD5 094cd9af77075e87075ac9c4fb8a0d14
BLAKE2b-256 2c354496f0f3fe85d9b2bde1238f23386001dca8f9b766f75e573f9d0d0d1f04

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.4.2-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.2-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 28e8692118c261541c5144b2bf007bce6e44316fdccd9581667f08f1d49941b8
MD5 a3be471e4a6d18115fdbc3f3b2ed505a
BLAKE2b-256 752e858ac7fe014cae6e5a56ba820cd78b3373d7ba781bd963d154b4b9afe92b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.4.2-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.2-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 d7f499478ebbdf27e7ea9e7105db54e362be6ff04a888a60f4ac31bbc6a86660
MD5 21e8c2e784ec0a977ec3fecc840784ef
BLAKE2b-256 5c3a808f6ccd87a80d38b47232faede6e70c6f4d2743b04d7a8e5b48d9c86c92

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.4.2-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.2-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 8ebac93eb782232ae7b580b414c4035117d266f78c9f7eb03db7ed1a02bd89fe
MD5 ae7dd055fb0d25acf26182bfc9c0dd1f
BLAKE2b-256 2efd86fa10902e1b8569748cd0db2357a14d92b1b47e3b02964d5951e3e08506

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.4.2-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.2-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 966aeb4d3c4aadc4a8b7fdc0dbdd92f50a3b9b8491e750e1984aac959f598b4d
MD5 d520e2efd942c9d9f3ced08255caf5d3
BLAKE2b-256 4453098f66a642301a247f9f36b1f94a4e95d7521391a244449365f53b93e2b0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.4.2-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.2-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 81ac7d530b44a3dba21ef9daa5140e6c49d7f740c9075a5398bd53a1a24db2c4
MD5 60c78b81869320e0768391b68057300a
BLAKE2b-256 6b324cb7a750998439659ee7046652c38ea6bbee4128a71091fc20f2e1ddc110

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.4.2-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.2-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 6aa10e6c74cbba324a6527d85d627e42b3d717933bda7f5887f67b6dc252b729
MD5 ef78b0d053708ea92d1a3b39992d82e8
BLAKE2b-256 61e75111c58a0685654566edf11a64c608553a65c6e404cef3a5f142fb663708

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.4.2-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.2-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2394c74ad50c5b76aab134a5f659d4c8715ec3e64eaa66cf0b90675f62e2f56f
MD5 6a744004523112cc06195eb126676267
BLAKE2b-256 8e838aefc58b00866ffd47da8bce4e9eca0eaf3f3ec1d84b14978ccc09273a2f

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page