Skip to main content

Manipulate JSON-like data with NumPy-like idioms.

Project description

PyPI version Conda-Forge Python 3.7‒3.11 BSD-3 Clause License Continuous integration tests

Scikit-HEP NSF-1836650 DOI Documentation Gitter

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 awkward

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 awkward

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

Release history Release notifications | RSS feed

Download files

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

Source Distribution

awkward-1.10.2.tar.gz (1.7 MB view details)

Uploaded Source

Built Distributions

awkward-1.10.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (12.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

awkward-1.10.2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (11.8 MB view details)

Uploaded PyPy macOS 10.9+ x86-64

awkward-1.10.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (12.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

awkward-1.10.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (11.8 MB view details)

Uploaded PyPy macOS 10.9+ x86-64

awkward-1.10.2-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (12.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

awkward-1.10.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (11.8 MB view details)

Uploaded PyPy macOS 10.9+ x86-64

awkward-1.10.2-cp311-cp311-win_amd64.whl (15.8 MB view details)

Uploaded CPython 3.11 Windows x86-64

awkward-1.10.2-cp311-cp311-musllinux_1_1_x86_64.whl (12.0 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

awkward-1.10.2-cp311-cp311-musllinux_1_1_aarch64.whl (11.1 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

awkward-1.10.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (12.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

awkward-1.10.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (11.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

awkward-1.10.2-cp311-cp311-macosx_10_9_x86_64.whl (11.8 MB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

awkward-1.10.2-cp311-cp311-macosx_10_9_universal2.whl (21.6 MB view details)

Uploaded CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64)

awkward-1.10.2-cp310-cp310-win_amd64.whl (15.8 MB view details)

Uploaded CPython 3.10 Windows x86-64

awkward-1.10.2-cp310-cp310-musllinux_1_1_x86_64.whl (12.0 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

awkward-1.10.2-cp310-cp310-musllinux_1_1_aarch64.whl (11.1 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

awkward-1.10.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (12.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

awkward-1.10.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (11.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

awkward-1.10.2-cp310-cp310-macosx_10_9_x86_64.whl (11.8 MB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

awkward-1.10.2-cp310-cp310-macosx_10_9_universal2.whl (21.6 MB view details)

Uploaded CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64)

awkward-1.10.2-cp39-cp39-win_amd64.whl (15.8 MB view details)

Uploaded CPython 3.9 Windows x86-64

awkward-1.10.2-cp39-cp39-win32.whl (12.5 MB view details)

Uploaded CPython 3.9 Windows x86

awkward-1.10.2-cp39-cp39-musllinux_1_1_x86_64.whl (12.0 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

awkward-1.10.2-cp39-cp39-musllinux_1_1_aarch64.whl (11.1 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

awkward-1.10.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (12.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

awkward-1.10.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (11.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

awkward-1.10.2-cp39-cp39-macosx_10_9_x86_64.whl (11.8 MB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

awkward-1.10.2-cp39-cp39-macosx_10_9_universal2.whl (21.6 MB view details)

Uploaded CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64)

awkward-1.10.2-cp38-cp38-win_amd64.whl (15.8 MB view details)

Uploaded CPython 3.8 Windows x86-64

awkward-1.10.2-cp38-cp38-win32.whl (12.5 MB view details)

Uploaded CPython 3.8 Windows x86

awkward-1.10.2-cp38-cp38-musllinux_1_1_x86_64.whl (12.0 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

awkward-1.10.2-cp38-cp38-musllinux_1_1_aarch64.whl (11.1 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

awkward-1.10.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (12.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

awkward-1.10.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (11.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

awkward-1.10.2-cp38-cp38-macosx_10_9_x86_64.whl (11.8 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

awkward-1.10.2-cp38-cp38-macosx_10_9_universal2.whl (21.6 MB view details)

Uploaded CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64)

awkward-1.10.2-cp37-cp37m-win_amd64.whl (15.8 MB view details)

Uploaded CPython 3.7m Windows x86-64

awkward-1.10.2-cp37-cp37m-win32.whl (12.5 MB view details)

Uploaded CPython 3.7m Windows x86

awkward-1.10.2-cp37-cp37m-musllinux_1_1_x86_64.whl (12.2 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ x86-64

awkward-1.10.2-cp37-cp37m-musllinux_1_1_aarch64.whl (11.3 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ARM64

awkward-1.10.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (12.3 MB view details)

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

awkward-1.10.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (11.3 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

awkward-1.10.2-cp37-cp37m-macosx_10_9_x86_64.whl (11.6 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

Details for the file awkward-1.10.2.tar.gz.

File metadata

  • Download URL: awkward-1.10.2.tar.gz
  • Upload date:
  • Size: 1.7 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.15

File hashes

Hashes for awkward-1.10.2.tar.gz
Algorithm Hash digest
SHA256 303bc0919f0932db3e78a9254c17fcdeb125e4be65cd894b40dfbc3bfddfc054
MD5 8bd2e3c26b79b29edffc865390d8c55a
BLAKE2b-256 5400738df8c34175bc366b70098bce1711f774b60f5a50d5cee49bf1e0e8e4ac

See more details on using hashes here.

File details

Details for the file awkward-1.10.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for awkward-1.10.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 06c4c3444a863c166a67a617063720c8d7acabef0529522b37788fdb9ce7f8b1
MD5 a40af97fda2a49182ec9334d1c1e640e
BLAKE2b-256 e0ff3a8ad29acfa610e2a2ea5b09a6f17363231c5847a750cc85f5fc7f72ce0d

See more details on using hashes here.

File details

Details for the file awkward-1.10.2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for awkward-1.10.2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 32b0f997047eb1355d782a2921f3198c0ebe9011b16ef73fb20171d4255c95ab
MD5 3343f72b653b773ba28d62abaa3e9af4
BLAKE2b-256 c25a0d55c04e4b0112ea716d35d722a9aa2af565a86e3d19b89546ad589cee9e

See more details on using hashes here.

File details

Details for the file awkward-1.10.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for awkward-1.10.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1c0976175ad3782b777116f1625c541fbe3b4e2ab0168541f42a97d3bb19a1d4
MD5 80e2ef9d200407b6ce8f1d3392c3c2e6
BLAKE2b-256 16134879cb9653a0fac389c499051a335ef9ad513a0f74170ea733319213c8e1

See more details on using hashes here.

File details

Details for the file awkward-1.10.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for awkward-1.10.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6ddde3c5572ac857ffb7979de8d134cd598a25c3d54f986ff3c8fd7976af1979
MD5 93a7d90fac61aa92bc5aa5d98ad7e4fc
BLAKE2b-256 d01367c735a7e9ec089357af4c80e76a975cf2dfd2721c2bc3f9f57e9460ab29

See more details on using hashes here.

File details

Details for the file awkward-1.10.2-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for awkward-1.10.2-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 73fc4fdd757117df143dc7a1fdd895d9f060f525f6cd40953fe2b360657b61bf
MD5 b6d7018253cc3512b3be1a3070aa9ac0
BLAKE2b-256 991c4a67d91e13b68372a6ca52c236ca3779190469beeb5487ba0c42047685a4

See more details on using hashes here.

File details

Details for the file awkward-1.10.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for awkward-1.10.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c48e82b604f76634e6b5181bd8877c9711f0c91a46a0df77f8bdfac1a41fa37b
MD5 877ed55cbb1f797a7581a5f3370ddce2
BLAKE2b-256 720fb1cc449e8986c41c5f841b34edbd8c35a1df902058c635ad9c76aec78701

See more details on using hashes here.

File details

Details for the file awkward-1.10.2-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for awkward-1.10.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a0caaf1064c5098bc04914300e02cc74672ffce1cc77594e73935720462760e7
MD5 acca02a53e56c350bce9f4936968292a
BLAKE2b-256 8e8c460dd46f349c58c8ccafc215c58e7a2c8574f032f868104f2e95fa8e0540

See more details on using hashes here.

File details

Details for the file awkward-1.10.2-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for awkward-1.10.2-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2d0de599dc76f4937cdeff291bd5a7caad9920e5f0acf418e825e3876c075b1b
MD5 688edc874150112cfd845a7eba17e152
BLAKE2b-256 ca895b1c6c20e1cb21cf8f3c968a9c69875f4614f0190754980d8cfb3ca3c6d1

See more details on using hashes here.

File details

Details for the file awkward-1.10.2-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for awkward-1.10.2-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 32f7e53a630cbf57439b9ee9749a72d7f5ed905425f59b279b5eb27ee600cb99
MD5 09108db6683a10a5beec5dbd87d74798
BLAKE2b-256 3d772906b81b01c9bbb3123389ee17d8497cbcbbfa7e4a0ace4ca52662270679

See more details on using hashes here.

File details

Details for the file awkward-1.10.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for awkward-1.10.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 337aa0b7787115786cfd2e8622921bc9ac6cf75413e25974c6f8237b19fdf18c
MD5 79ce2a674c2a33c47ab425d9510d5db2
BLAKE2b-256 e763b33d8bd147b2142efec93c9eb599421d10c14661159a6f664223b378f10d

See more details on using hashes here.

File details

Details for the file awkward-1.10.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for awkward-1.10.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a28afbfc6f46c1ea029a58c9c3a9661088ad84bdebc3c98ce967d14ac39dc601
MD5 0b19e985df21e4feb8d3fc77f58ed0f8
BLAKE2b-256 6587c888c14d231f0d1aba7245bd81a352db0ea6c7e5691d7ae7b6cbae19cb67

See more details on using hashes here.

File details

Details for the file awkward-1.10.2-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for awkward-1.10.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ae1c3026a8f19aa8afeff776629fd137ee21bc4523ab3ee2a43c9c4f6a2fab81
MD5 b8ff83aea7f58a34c88100685f1d8663
BLAKE2b-256 166cb354e4366462baf105c20c4f63ca65c1e95e43d444ac75fba07ca6c79457

See more details on using hashes here.

File details

Details for the file awkward-1.10.2-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for awkward-1.10.2-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 470acc695ee6561a53f70c8d812b54908c773d02fa82c5077e32797e98e92646
MD5 e46cf9d752ba9d0946ba38030b7af065
BLAKE2b-256 b1d1ac7d930cd09a742f11a7365a1f0f73b1de06d1691b7dcd05c87b5e6040e8

See more details on using hashes here.

File details

Details for the file awkward-1.10.2-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for awkward-1.10.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7bfbab198533de585a58b47d741d3b0446412beeb27cf74aa1d79d6719aa94cf
MD5 6e947c7f358cce1c55186754213a18d4
BLAKE2b-256 3b8a2d32caf01355831acc9bc46e010e4fbfdf90c5f6ad26837ca323a6f8ce24

See more details on using hashes here.

File details

Details for the file awkward-1.10.2-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for awkward-1.10.2-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 556755fd6a27fae07d3519ef7c927fa0b79ac1300be45b6da23027955fccf690
MD5 1b2a7b7d2570c9f07cb40fd985de29c3
BLAKE2b-256 c0119f477971c3deb95ec31b2111cb3beb41988d4964a779a90ca2489fe3b33a

See more details on using hashes here.

File details

Details for the file awkward-1.10.2-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for awkward-1.10.2-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 e1d746e652a38ed41570d9df164e84a297800ebf1d1b856f7de8292aae1bfa2d
MD5 ed9fc474ee08da98edb398bb776ef72a
BLAKE2b-256 d94bb4d506b2c9f7f12ca06a85da1d2472f80bc723628e819d142b01616c2b78

See more details on using hashes here.

File details

Details for the file awkward-1.10.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for awkward-1.10.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9db335cbf1a42b62d47da2de6d1fb70d52c4e4ebbb67ca650157ac55589014cf
MD5 9777b032bf62e43d1d751ceff75f1e7c
BLAKE2b-256 0ec820d4210b83d9d0c3f80c34decc4d6f69fd398146670b87eb460d4801db25

See more details on using hashes here.

File details

Details for the file awkward-1.10.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for awkward-1.10.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e619b1473455d2adc6fd9b102d9e5beef9cd6f5f3f5e3d5a9029ef3f2fc3332f
MD5 d5d19aa938e62a98b986bbc952d0627b
BLAKE2b-256 93126607a2d546d85b6c5b3cb05e7d8e699ffd94b637fe33d36df496e8abba41

See more details on using hashes here.

File details

Details for the file awkward-1.10.2-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for awkward-1.10.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 98923e39a4c45e4184b2337dfc9dcef42c3a12d27eb4caf2b91a9718a7b1c5bc
MD5 12c578d1a212adfa3fbab140c9b914ba
BLAKE2b-256 4a13075dd83afb3c637f678b1e650fe943c6deb1210a9cd6fdb45a0307daa2c4

See more details on using hashes here.

File details

Details for the file awkward-1.10.2-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for awkward-1.10.2-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 9eab8962580375b0dcb6e83d4e8fe898b28680438958f838cfc5da6ca794baa0
MD5 a2c16a52de645a0fcb139ad426c43deb
BLAKE2b-256 9afc7b3327a5b36fca71009a0e317d8323513d3ef980be47e8e01cc3a1a0b3fd

See more details on using hashes here.

File details

Details for the file awkward-1.10.2-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: awkward-1.10.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 15.8 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.15

File hashes

Hashes for awkward-1.10.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 6bb938bdb5a530aff7569dd0999dcc373a22d09a42d2efef595055be22ed1d02
MD5 8741ef92059e8b84ba7d2e28157fd67d
BLAKE2b-256 449d65e6240db928a4994506de2a71134e3f5dfa63151bf845b1e7bc6863b68c

See more details on using hashes here.

File details

Details for the file awkward-1.10.2-cp39-cp39-win32.whl.

File metadata

  • Download URL: awkward-1.10.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 12.5 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.15

File hashes

Hashes for awkward-1.10.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 0298d1af66bbfbf2c9f8515d97df5fd930a30c42fcbd165a7eabb6effdba95b3
MD5 eab779b7485f478093fad319a4cf73dc
BLAKE2b-256 04eaa1daf1bdd28940adfd30d860356a077c617f3c0567efede7355c78e10117

See more details on using hashes here.

File details

Details for the file awkward-1.10.2-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for awkward-1.10.2-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 10d9d7bf901537ea4671aaf061d78bee206e7f89b97656b0986eccd9b0601f51
MD5 23d4fdbbf6e9898de9c8d0c5f5f80b51
BLAKE2b-256 b6fedf6ba0e70ffa21a00199ced69e53b7c52a9c42c2876debf42792526c52cc

See more details on using hashes here.

File details

Details for the file awkward-1.10.2-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for awkward-1.10.2-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c3b17000dd61c1b484ec1b9da12e8c93f7d0e9e660312cf62c6b376b73f64d60
MD5 89be0e1a539573e42e9598ecb76b6eba
BLAKE2b-256 a85371bec87b352adf89ce172048d1925a624c348e96f7da2152a84cf6a14fdd

See more details on using hashes here.

File details

Details for the file awkward-1.10.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for awkward-1.10.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2fcc1bb81c66fb07cd6b5c8a954b64122fa586b52ff3b8fad340e2344184527e
MD5 70a6d5f78081efb24db37beb7fc0af5f
BLAKE2b-256 fddd3386e91021037b624d16911e3edb45fa5c069b25f5f053e5740acc947834

See more details on using hashes here.

File details

Details for the file awkward-1.10.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for awkward-1.10.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a7d9cb735d745c46ea3cdbf38d0cb830e15f85ebdf24a1b85fe4dd36cfa92617
MD5 1af05c0121bf63338f08213f0a908497
BLAKE2b-256 6beeac2db248003dc76d84c1ff63904568a24f524941f4f7c002dfe70febde86

See more details on using hashes here.

File details

Details for the file awkward-1.10.2-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for awkward-1.10.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 373987a502f27c6c43489debbbfd9eca09d1c0b08fd6798a4e0f024afb13efcd
MD5 bc452c15885da743f925399506d2da1c
BLAKE2b-256 77c83884281ae51c6419e6b5f1172e513890b063e41bfe0cbf189e3a8fe2e3be

See more details on using hashes here.

File details

Details for the file awkward-1.10.2-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for awkward-1.10.2-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 5cc4e94e06caad96f62ac15fee88cf758b8addb883e9fa6442a4e902eb7aae20
MD5 3c3b83f85745af9b1e55d7be9a52ca02
BLAKE2b-256 7f818cde90da831b3766e375af6e04df5570e4a44502afec143c44c55eba49ed

See more details on using hashes here.

File details

Details for the file awkward-1.10.2-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: awkward-1.10.2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 15.8 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.15

File hashes

Hashes for awkward-1.10.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 5a80eb981bbed4cc91ef768cc207a476906bacb7842b8b74ff5a66110dd858a3
MD5 daf0c4015b3e416ed5ca7bc75b7241dd
BLAKE2b-256 a5cf5b7478da9f7467c3582f8169c0ddd939257ad00e6c5bd6e81bea9605a325

See more details on using hashes here.

File details

Details for the file awkward-1.10.2-cp38-cp38-win32.whl.

File metadata

  • Download URL: awkward-1.10.2-cp38-cp38-win32.whl
  • Upload date:
  • Size: 12.5 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.15

File hashes

Hashes for awkward-1.10.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 25c5013fbf4a7fea0baf7a6b59bcdb2d18df6845d3c8ae689cfc94db57ee2763
MD5 a56c0dded5e40e0925c10ecfd9437e53
BLAKE2b-256 dfddb5b0541163fb2bb75f8e9d6566728c4f09df969a5842a1834ac367ff4890

See more details on using hashes here.

File details

Details for the file awkward-1.10.2-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for awkward-1.10.2-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ea8d2bee6f5b032a1b701bc551ca5d4c891e728092bd848be4e2ac7a20af37cd
MD5 c1b1a8749e6e9d4462bcfda3d55d10e8
BLAKE2b-256 1dcc04fde61cd9836acaf573d4cc631953d819fdb8989d889d96c093e4ee3c26

See more details on using hashes here.

File details

Details for the file awkward-1.10.2-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for awkward-1.10.2-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d938ab75f5a5f9c2b5e556731e414ea08f18cfb8fc4680561ecf7c5dc9063616
MD5 bf091576d01be80e039fa11c00711df2
BLAKE2b-256 635d09f2f31626a16515117d7dfc29ddb4065d49883c9817098ae624e93e16bf

See more details on using hashes here.

File details

Details for the file awkward-1.10.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for awkward-1.10.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 19bbe1b333ebe1432cfedd37101bf7244a251afa2fb9e192b794c023e31195a1
MD5 23952f17ed00fcac2a9a632cf5a0095c
BLAKE2b-256 b6699ea7d714bdadd584f04c091a531e3f8b2436df5611563e0d480a3eb8402b

See more details on using hashes here.

File details

Details for the file awkward-1.10.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for awkward-1.10.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7d6fe944ee8f14e4111430c384aeef9046bb4a054af6985bd4e1e97632649f3f
MD5 60a97a06733517e8f81d22f369f3b478
BLAKE2b-256 c155e406820d21c9ce6c10910dee2fdab9efe8e163451f750c990c87c8aebc7f

See more details on using hashes here.

File details

Details for the file awkward-1.10.2-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for awkward-1.10.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 67323e8940f0355192a6e132bcfb98993cba0349be3e0fc7f9254fcde90936f2
MD5 4e78b65d0be2ca558d71e666f15a600e
BLAKE2b-256 1bc4fb308126415405db5c08f8102b27ca587b8c1165482099b2ba691a2bed47

See more details on using hashes here.

File details

Details for the file awkward-1.10.2-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for awkward-1.10.2-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 e3bda85028b95ae726fffc9f469df8ca732c4f237bfdbca2ab07feaeac43bd3c
MD5 2a0b6562bdf1b5e421dba5cb43ce79a9
BLAKE2b-256 29cb921bb82cfd684a69e602da6016892433b9ba75c5f8ab6ce7a666611d2cd0

See more details on using hashes here.

File details

Details for the file awkward-1.10.2-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: awkward-1.10.2-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 15.8 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.15

File hashes

Hashes for awkward-1.10.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 d94872c76d4e2cd4679dc3e20b5afdcfad85cbc29b079b32b722ceb320e92ddb
MD5 b1a25791d0d06a4239988acc86b4bfc1
BLAKE2b-256 e36aa12905ed95a4668abc1e2db9225b38feb02e8f1c369e7fbb6fc0ecb52331

See more details on using hashes here.

File details

Details for the file awkward-1.10.2-cp37-cp37m-win32.whl.

File metadata

  • Download URL: awkward-1.10.2-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 12.5 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.15

File hashes

Hashes for awkward-1.10.2-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 ffa5117294479cb47a4c2042413e45472854842bd9dbaaa639f40f61c4713695
MD5 9773aaea2eb2c667e41b08cccadc2f0f
BLAKE2b-256 a2d3d0fd4500126d45d4a6448e00f40b1cb987c231644119588226e4b0e4ce02

See more details on using hashes here.

File details

Details for the file awkward-1.10.2-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for awkward-1.10.2-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 886eefc96462ea58ae74a48bb3ac23e2f003f6295f8dd7a73ebe1c633807faf5
MD5 56c952284c54bf703a86a454a228842a
BLAKE2b-256 257d83c442c58cbd42d9c405df7a9088502ee07337d600a839915cfb982d3c7b

See more details on using hashes here.

File details

Details for the file awkward-1.10.2-cp37-cp37m-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for awkward-1.10.2-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 0ecdf5d1394f3bb8fdc18724a5d0c1f7868494426e776fce4408dc8ceeaa08c5
MD5 f3cd6bcb908cde2e139f554eb37e1048
BLAKE2b-256 0cfee38c7efc9989b7bc22e5f4d76b1b77502c5da049405ddc65bbfef8898b81

See more details on using hashes here.

File details

Details for the file awkward-1.10.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for awkward-1.10.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 84d453b178117f121ddeb68eac652bdaafdc66aeb2ea1797705ab8df24c7b917
MD5 7233d891ef91bf1c87dda8e730b36d5d
BLAKE2b-256 4870647c75d33c7606a55e219a241739bc5fb5b20bdd351a3854e3172ff24a0e

See more details on using hashes here.

File details

Details for the file awkward-1.10.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for awkward-1.10.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bffd1d98e1a93ec703bd4a08ec62c8f5905dc8343c148e3848f62b1af925aa95
MD5 145ddc184faa5229e20d64ad72f6be0f
BLAKE2b-256 b9169b7b419c31e186ee2b39abf877325fa1a95063f12b1f7f21fc695f951d2e

See more details on using hashes here.

File details

Details for the file awkward-1.10.2-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for awkward-1.10.2-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5e50b4e9a0750485acea62401dd4481f51fb2b7cc71c8d71835fcc5847d535bf
MD5 b28b1a228ce4d136c7c070ac5c5d7164
BLAKE2b-256 2f4a84debd1b833e7e6123a43401e46bb518b39294d7213d0ef38f1257726731

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