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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.9

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

Uploaded CPython 3.9

awkward1-0.4.1-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.1-cp38-cp38-win_amd64.whl (9.7 MB view details)

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

awkward1-0.4.1-cp38-cp38-manylinux2010_x86_64.whl (6.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.8

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

Uploaded CPython 3.8

awkward1-0.4.1-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.1-cp37-cp37m-win_amd64.whl (9.7 MB view details)

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

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

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

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m

awkward1-0.4.1-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.1-cp36-cp36m-win_amd64.whl (9.7 MB view details)

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

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

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

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.5m Windows x86-64

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

Uploaded CPython 3.5m Windows x86

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

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

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

Uploaded CPython 3.5m

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

Uploaded CPython 3.5m

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

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

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7m Windows x86-64

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

Uploaded CPython 2.7m Windows x86

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

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

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

Uploaded CPython 2.7m

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

Uploaded CPython 2.7m

awkward1-0.4.1-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.1.tar.gz.

File metadata

  • Download URL: awkward1-0.4.1.tar.gz
  • Upload date:
  • Size: 773.5 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.1.tar.gz
Algorithm Hash digest
SHA256 02ddc8e04829a57574c04aeed9662560894f4eaccbefee9e54120d38d3e8f371
MD5 bdc51b9b21e70c3e2d55c1993a6d0eed
BLAKE2b-256 08d2637bf01041ee9cc7398b45c7d3033a5ed5811a701f35be4550bbc5d28954

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.4.1-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.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 673a2b066cfa40585abce639cfc7f77d0379d386a1611919ffc2f79961ad96c4
MD5 d3ef4dcfcaa0b3e85db6d0cd23d29217
BLAKE2b-256 28657cd4c04bed78a8c29ef82d1a17715023ae1d744255611896c8a9ad3801f2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.4.1-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.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 28c7e3ccbac967c1e317d9a1ded0c01c3ca95db3b32fb8072cafb332229af6f0
MD5 df7b60cb18d2a31f255029f6608c05f5
BLAKE2b-256 af08d93129bab3a8680a5b8734e80a053ef52a0f8d74201324019896747307ce

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.4.1-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.1-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 4b75eda59bec11a7d990c5ca29165fc99af3fbd5c4d65b00bed254eb1c9a0500
MD5 6590391442487e62a4a141872cfb41db
BLAKE2b-256 695c356a29410d86d21bd87832d7b89d834323b01c4e1e482c300b551bc775ec

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.4.1-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.1-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 41ece068bae850f3c5883dbdda79e369f3f82c17f9ebe9a5bf6452796b9c596d
MD5 ff671f6e8e3a4c5aafabeb0c1e24d6dc
BLAKE2b-256 3efc3eb2b9678245c4d9e367652877956f6e067df34c42cc2209882b3eb89e2b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.4.1-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.1-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 93a5e45c97f27d65e13c58102dff992fa29021e002ade2a5c583b6205e67dee7
MD5 427f95c3799bcf3b7001946afdd45bc1
BLAKE2b-256 98758e2f59ac426834ba7b8d0b325b542cf95ad7608390616ce338201e9cb2f2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.4.1-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.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2a2b94677fef183b6cbc9677f22e4025bc6854de5b15660b85902a4c54cb0d4a
MD5 af8c36bba7e59521b41d969c70a20c4f
BLAKE2b-256 bb957086b5eb9468601d7efb089ed8c8c1e314ffebcecd2e617f272f5c33640c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.4.1-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.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 4fb8265fe623200a6fd72696ee424770ad5be8e1c7e8e49d65112c4d4d95665d
MD5 24ebeac4150f0b6b3265f9dff18d68f6
BLAKE2b-256 0b50f75876d372624024d8234cfe74a72644b0fab170d61db50a14a23429cb42

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.4.1-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.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 2a110ccd3e99731a8b78e39e8ab53a0eb69ac2d9a392f90a7a19153f1f030232
MD5 aeac7f62247adfe16f46c331542c2bfe
BLAKE2b-256 8e71bfe5c87a29291046becc022476394833e61a03b831901336c29909c7830a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.4.1-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 6.2 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.1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 78af893a8514244511d3b729833c8cf9641c1a3318ff0cd65319173dd739487c
MD5 3ac978bdc5461109a0139e2e229f3a10
BLAKE2b-256 7d25fd388e6de9608d0ec72332d4ed13a7fd5e17bc554f052f8fba9442e12eee

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.4.1-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.1-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 727f2c1355ba48d32030876ae1e59d620258dd2703edc1b71c9559d946eaf34e
MD5 e594e8737ba5c8dde2ae442676530f77
BLAKE2b-256 da23a6a5aaaaf57ac6f83b8f354a1e11e929d5d38c8d02cbaf44c2b28e712f39

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.4.1-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.1-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 5178bd150885f0b129aa13fe88ba05aabfad6ce4da2103ae9d6039cf87ab7ccd
MD5 6747621029c2ee591b003a7d20821634
BLAKE2b-256 685c8825f8ef2ccacf33faea5024671ceaa4af0638f57581bf4cf62d644dee87

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.4.1-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.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e51559c41f88ca302e422e8f1a881d108a123a160516d86b878e374a8e194f36
MD5 81d0409f19c1b359dc21225e905cf7c7
BLAKE2b-256 0a30a93983e85d4fa444ec4aa5cd750a6f94ad83d81dafc9137115fb0fde719e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.4.1-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.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 69aa4b2b53234303452222d6ad9bebbaf179bbfa609d306705f741ebc4c0b878
MD5 67df944a38be3d2da22b273240fa57c9
BLAKE2b-256 96ff32bde53bca2ed348abeb8206c46a201d6b283d7517c4342fdfc23718a4e7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.4.1-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.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 b04480b10c50339244c595865ec727475a416f59e48d3db4b90d487e7e53c7d7
MD5 c296556c69cfb1da5b95c3a217a71fe5
BLAKE2b-256 d5598dfd75eb9e96fbab51597c389b0267f43071aa4eca24b86c8773dff2524c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.4.1-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.1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 87cf794c3198465200ac30f7447899f0093384123e018cf0639db564ae558814
MD5 25003836f531f883a514157e4957ff7b
BLAKE2b-256 1dc79543c17c8c472cbe671857953135d68996392c8023c27b941e65532464a1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.4.1-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.1-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 9c5948e9e0031cc95d2587aa14d96ea491e155c83bb7321b633afb709ecf816e
MD5 347bcb3510030e7e53fe4b87729c9fbc
BLAKE2b-256 ebca9a24ee434d5d1c0709b29d14f97da9f75e6109b1b518c59421b3f08af981

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.4.1-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.1-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 0137c56817dd0af77994546d01cdce16f2a7fd1b4daa103cf182198e9fccd245
MD5 593a4a0026fdb1d2fb86841922abd074
BLAKE2b-256 09b48e5e96b014a178483fc45c1fbc4b2a9d046bfb25f450f1f1e7d9379ca590

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.4.1-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.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 882a68ed1387ef678bf48a6394e2499f45b0d74cf568f495193849fb69f45e19
MD5 82ae1d0ec6662d5563c6a0ec35cd3a13
BLAKE2b-256 b67ca4356fc3e29bb9b9bf64533e5e8454c119a006653d404353bfcfa0da5b1e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.4.1-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.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 a2653c7f7b083625522fb9bc6a5262efae6c7b944c7688d8b9be2870139e8c32
MD5 5ed77dbc91aac3785e599a0f6e6c158d
BLAKE2b-256 0dc4e3eb1b1d05a6e089a365d8d62691052c873c162e2e414c00683f581194d4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.4.1-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.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 ec8f8eb90d2df9855d36b229d7aa729944c3658d24023299acde8c598716417e
MD5 d47190a0b24d2373c049e927ffa5863c
BLAKE2b-256 568187c98b2d217b31122c114080ed516a91e5f2113f110ad936e19cff16fb86

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.4.1-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.1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 79268976902545d03cd1e23c13f9e92c95199162bb83722b02b0f05defb69238
MD5 9fe1fad554b59889444dad80482a6189
BLAKE2b-256 4056e53ca9b7e7b2f041bcadbd36c8f8cbae88817848990c6259349460ee68bb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.4.1-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.1-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 1661d241db55ff7fd74ef7b1bfbcf9adc273366cc85ee960bf621bd6af20ffd9
MD5 47728c51f6d0365f80451fb7fe71ee79
BLAKE2b-256 8419e4e110104a1754a9e55ba488bf84eff04024865bec71e4d441f4826b474b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.4.1-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.1-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 53272aaf930e9d25096aa2ce6b103262ef9967334dd9fd0f0a5a6913885aa6d7
MD5 52e10d6b7925cb686565520817d8b18a
BLAKE2b-256 27606aa1bc1a6a98be57c1e4a48c7c9b2d26117583dc5e54519964bc1242798e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.4.1-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.1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 0e4aca535c4cf0f86adddbf92543878e0c1a29961cbcc452547ff9ff86b21960
MD5 b3d6be5438136cca7afd9fa91a1646c0
BLAKE2b-256 27816eba95bbb7eb2c30be7a9113ebb4a5f084403639738bf13b96cb8cd511d0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.4.1-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.1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 13a3105103c0d942f4604ac3d2ad6a06fc345a80edc66d8ff5bb922b4bdc047d
MD5 4f93708bbe46810454312aff08cd68ba
BLAKE2b-256 01a6ab07f354d4924dc983f56d66d37babb2e0c7b848f0c62cff5add18d6d9d9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.4.1-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.1-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 9ba6ebb38f9d6a62039ff8a7d4419e58c793460d2db2f1a3fed98c4d8a075506
MD5 b0754d7d947fbc33e19478d3f30c8f2b
BLAKE2b-256 980f937cf76435ece021160d4fe943f25c9ece07b4e35cad389530ff0c8614de

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.4.1-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.1-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 077ec40bade2fb257bd10b7ccc6c3f19ff3dd0455e57a0f8ac7edf9b5d8c57bb
MD5 0132779213d645eff21883bfb351571f
BLAKE2b-256 4df6a0d1110fa34496dfbd16f720a3dd53e44c87a84686adbb7846b19e142f1d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.4.1-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.1-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 9e5fcc42bb00809e20707dfc9d14fa67c799b6971ffab26323851414ab4f804a
MD5 a11cb0eb796c6ddf14ad8eb17862295d
BLAKE2b-256 cce3c7e262d44314da997287b55d878205c7fdf5dc8ff0822042ec40278aa4d4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.4.1-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.1-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 7ca72319c4a727fd06751b155b89aeff6530e46b5e7c929c37ea14bcaa22a383
MD5 22215f3b5af01df063307e7003708ddf
BLAKE2b-256 b1d65a15b86d4e52ede93fddcf8cf4922529ef7d1f0bcb14ab9adfd36c918993

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.4.1-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.1-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 f98bb1b902ab695f733402e6e5c37494c0767235746ebae2ba99f31c42b8fa79
MD5 707b7742680e5fc1946b4a317c4b45d2
BLAKE2b-256 976c1eac2d8692d998a1a90a94edf5b1b458b3a32e53a571304a74456bac3be4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.4.1-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.1-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 7f47c273c589b26371319464c2a54686a73065695acf56801526d4d1dfb11558
MD5 a40c4d79086630f8fd83a61348e5df90
BLAKE2b-256 889a486892f49b3a962642fcffaa52430776075178e907d0d08c4af0a4339b11

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.4.1-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.1-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 44b76abdfec6c2bbe57c6d0e211e7ae6a9cfa07a7300f8698c5ab2ac0e6c1106
MD5 996ef032c49c1c5908e2c728564fcbce
BLAKE2b-256 b8f68cc108000bddfdcdabb60a717e6615da2a63447a6511ed7f84288df4f271

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.4.1-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.1-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 1d223f980af429b5d453474646e6aa6ff521cb040f71b620d1f72609f511e4d4
MD5 429ec88590becf764ae107f39e5eb5e6
BLAKE2b-256 942a981c8131cb334758e5d9d9cfe8c728540c4e00abed1e581602b6bab6aefe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.4.1-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.1-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 08812908e2ab1bad7b9e95b661d4e4624c27e37ea84a02affd3222e665524555
MD5 4487459e1c74bd906e6c2b29fe1084ee
BLAKE2b-256 71fb536c5ea338e1622c9e476e8e2126422e23b82b2ab0446139873b70643622

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.4.1-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.1-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d17fcc5bb5d9b125ba05851e02e1c8e3f84de95ad06083043ae5fea0f5bf80c3
MD5 8eea03bac1545e93e713eb9e68c69192
BLAKE2b-256 2744c9fff8626aa64dea18cdb81aea3f2bb776d0d1a35c37cfcdedad173e4db9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.4.1-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.1-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 7866560ad8a07ec96a27048a28f24f9b3775e949d27ac45b1dda0dea0b82ea69
MD5 3ef876fe058120a4ca3a98325c1d9a04
BLAKE2b-256 237f8f846a3d1811562bb23ce3737ed3fe2fb1b3615c6c03b8c454adca571acd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.4.1-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.1-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d3e85a0d44d73a5710517ed37ff3d3d039d1c162bad5371f0562e33e307f26e6
MD5 4c6ab91f5fdac59746b6c8bfa37239bd
BLAKE2b-256 4cca5bf11fbee91a35be0331b945b09d5b783b5bfc05d258fd091f0ebf72e1d4

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