Skip to main content

Manipulate JSON-like data with NumPy-like idioms.

Project description

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

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

How-to tutorials

Python API reference

C++ API reference

Motivating example

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

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

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

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

The result is

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

The equivalent using only Python is

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

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

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

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

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

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

Installation

Awkward Array can be installed from PyPI using pip:

pip install awkward1

Most users will get a precompiled binary (wheel) for your operating system and Python version. If not, the above attempts to compile from source.

  • Report bugs, request features, and ask for additional documentation on GitHub Issues. If you have a general "How do I…?" question, we'll answer it as a new example in the tutorial.
  • If you have a problem that's too specific to be new documentation or it isn't exclusively related to Awkward Array, it might be more appropriate to ask on StackOverflow with the [awkward-array] tag. Be sure to include tags for any other libraries that you use, such as Pandas or PyTorch.
  • The Gitter Scikit-HEP/community is a way to get in touch with all Scikit-HEP developers and users.

Project details


Download files

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

Source Distribution

awkward1-0.2.34.tar.gz (668.9 kB view details)

Uploaded Source

Built Distributions

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

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.9

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

Uploaded CPython 3.9

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.8

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

Uploaded CPython 3.8

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

Uploaded CPython 3.8 macOS 10.9+ x86-64

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

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

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

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m macOS 10.9+ x86-64

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

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

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

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

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m macOS 10.9+ x86-64

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

Uploaded CPython 3.5m Windows x86-64

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

Uploaded CPython 3.5m Windows x86

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

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

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

Uploaded CPython 3.5m

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

Uploaded CPython 3.5m

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

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

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7m Windows x86-64

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

Uploaded CPython 2.7m Windows x86

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

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

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

Uploaded CPython 2.7m

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

Uploaded CPython 2.7m

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

Uploaded CPython 2.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: awkward1-0.2.34.tar.gz
  • Upload date:
  • Size: 668.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.7.8

File hashes

Hashes for awkward1-0.2.34.tar.gz
Algorithm Hash digest
SHA256 8ef68792081233bade6475cc45d570b01fb3473cc5df273fdd645c05b124371d
MD5 ded5df939502a22aaceeac32fa3ba01c
BLAKE2b-256 5a0a771766150012dd77f21c69c46fb6d56c61cb4c40d893a8378981acf139b4

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward1-0.2.34-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a428914a864d43a8bcfa4f2fa9a099046feffcacb150b5959016dee09f5a41b7
MD5 06b96ed649dc728d1fae19716167410e
BLAKE2b-256 9a70bee5818bb0d527e5a269b7520c264f0a8e6bc64a75c45195a87f0a25cccf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.34-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 8.9 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.7.8

File hashes

Hashes for awkward1-0.2.34-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a7aebadcaafe066757361a4d60e75fe9e9f4edb6c3ba0d1921a05c2b3cf1c50a
MD5 7c43907d6d7ca8633a293c6021cd17a5
BLAKE2b-256 591af80adcdf67bc4ac5a93ecc8194796ac1478680b40f075b7bb309ccd755a9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.34-cp39-cp39-manylinux1_i686.whl
  • Upload date:
  • Size: 9.0 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.7.8

File hashes

Hashes for awkward1-0.2.34-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 de5c4f5f1f3811a58192b20f9d3873207056253d66008974dc974c56a8b63c27
MD5 e3531953c5c11888af01f95165ddd7ca
BLAKE2b-256 94f978053c2fd9cb9ff4a32e873460e537b4d71e1af3b18268e2846d02044ee0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.34-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 12.0 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for awkward1-0.2.34-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 ba3a2f01ea18660d727e135520823638c64e79fe634c8040dec9af0c455346c0
MD5 7a4dae758eae209c0b79ff6a1786e09f
BLAKE2b-256 41262f4f72489794fdc1e307778b6fcc1b6ad0a07898d17e73e3b9efa86d7015

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.34-cp38-cp38-win32.whl
  • Upload date:
  • Size: 9.2 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5

File hashes

Hashes for awkward1-0.2.34-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 f392df593b81caef6492a7eaa90105c82b5d91f3c6cbe0d1d9d57ef1803ee6bf
MD5 0a03ce6d164f06d819644f6f82e50f1a
BLAKE2b-256 7ae4252c60e1dc6d5e6a29efb8c97ea01588b3c57d7dad1ffa2c0de068585239

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward1-0.2.34-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 2f027c13276ea05e4900bbc28549a3e5f2f24f7100a0146dd441dd445f0641c5
MD5 dee3caacca3a6be18e46211cdc228bd9
BLAKE2b-256 d5d6f6f62110768f87871e40afd368a5144e8ee89cdb5c5989277fde5615ba50

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.34-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 8.9 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.7.8

File hashes

Hashes for awkward1-0.2.34-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 1b35741044b643540af8b1edb23c5cbad3c3c238536ab26eb7ce453c4505dc18
MD5 4a7384cd71d7eaaa747b37dd2c654f6d
BLAKE2b-256 d712c789fba9c36be9a5f692327eb0c91704187bce9295f7a42431ad3bd59972

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.34-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 8.9 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.7.8

File hashes

Hashes for awkward1-0.2.34-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 a7ecba1871275d093a7d20be72bcc4521e0c0764338bce2a8f160ed392dfdfa5
MD5 a76d3e1e08771d2db9faf0e504570bac
BLAKE2b-256 b291c9cc0ce647fd6f710fdd327c80b9a54ed67377a28c7c7a5a49fe0eb1c054

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.34-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 9.2 MB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.0

File hashes

Hashes for awkward1-0.2.34-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9dc2efddea5dc4cfa91c4abc1e0e4ba05be7ed66ea83061828388bc7d7ed5f1e
MD5 2db3d4e54f3d22145df41d303be51f58
BLAKE2b-256 4e7fe6cf1f1cccf2db3d150b964964a52bdebe0a70c4e22b9348d5be9f3c11b2

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward1-0.2.34-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 78c5c350a1eb1e29b98798b2325678b226edad725d5d319c9f2240ca86e64948
MD5 bf312e3d55a51cc88db0e0415e9b6ba6
BLAKE2b-256 394d7924fe9d9120f08135a1813628b45a7d341a8cc95cfc73a276c0ce4a8df0

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward1-0.2.34-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 842822b973c8123ca4562593f97eb3db3da2e2188cbf43d17a8cf5070f802b02
MD5 13f6ac2db22f6ed74c7b5dc2bda74fec
BLAKE2b-256 0f5640a00a5a4f271eea7e5c6d949224366c9e805a588070cc0b349d2c6ed5e8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward1-0.2.34-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 46ec5852b7b7e2a191c0081605ab03c411d667f191ff1914235d9af264207a9c
MD5 375d8da799be7f5b94622565443bff20
BLAKE2b-256 fd08e8310ac9beb7a597fb8046eed588cb07d23966a56ad07911c48543474ade

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.34-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 8.9 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.7.8

File hashes

Hashes for awkward1-0.2.34-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 5a2269ceecee97a6ead4bdcf77c428e283f2534050d86e038712d792f359b610
MD5 3c392daa542485d13148ca6331bb3889
BLAKE2b-256 b599b3b8b7a7b930ead5a4d867e16e9382cb6564f65d2c2db5c2c0230527e50a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.34-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 9.0 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.7.8

File hashes

Hashes for awkward1-0.2.34-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 065565240de328dcecbe32efa8a63550e51508cd4bdd559051e9217863b6ad05
MD5 76e2e175ee2c352584e315511c7dfe72
BLAKE2b-256 8d9782b392f4738fc54f7dffff23b132dc8e96a7069d000f283be276d05795dc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.34-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 9.1 MB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.7.5

File hashes

Hashes for awkward1-0.2.34-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a0269a710f5bae6f9c4d48b9be120fc625df6ac01a9e4750f50fb5a98c018f80
MD5 e6de5d745c86345e933782e2d38a0005
BLAKE2b-256 0a791af854036276716f2e07f075a714167af5c94e34ecb4eb290a5b78c4ceb6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward1-0.2.34-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 0a131f56d373513c143915ec3b5c2c0b97e8c574b0913d4c0d009027732af2bb
MD5 8eaa7a806d043e150f7c47fd82b01bfc
BLAKE2b-256 12b3ff7199ff1a8f0adf8b23ec0e5f78b945cfd7858d9ab5705102bbab81bbbe

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward1-0.2.34-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 88c221a23b9a3aee7988b0af7d2c4a13363f7d6d4d926b4edf98eaffd8346d1e
MD5 22fe681e49836b4b99e2eb2174007012
BLAKE2b-256 5c81bc7a0d88a08ba333f325c50003c3abc747378b394aa1a2faab664a240404

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward1-0.2.34-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e1f62375af3630d27e02df7909da5da24efb2ec34a0d3f8c28a05bc06800fcaa
MD5 8e0bce7179bec714e080e152e19a1643
BLAKE2b-256 82327dcd6524794ec36c3ca5c711cce286152ca61a1dd35bfe66928e89fa13f3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.34-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 8.9 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.7.8

File hashes

Hashes for awkward1-0.2.34-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 7752bcc42a349212b24ea24559d1e4fe319602926ac8441747df00e7f289678b
MD5 a6216578cd7b604d69cbb303384dbdfd
BLAKE2b-256 b13e16b91222cc852984f5cc5d9768a6c2aebb7020ffac2cbf11311386646251

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.34-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 9.0 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.7.8

File hashes

Hashes for awkward1-0.2.34-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 29655110347d5229b67e9d5b4e557220a0f94a9a556a8cc6bf80f43b66c1dcfd
MD5 dd7b9190ef95da047c2914c1d7ca34a6
BLAKE2b-256 b683302028545db5dc3469c382502e5f638dea14e9ced9abd741b7f618246ad7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.34-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 9.1 MB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/40.6.2 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.6.8

File hashes

Hashes for awkward1-0.2.34-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 aa098a379edbcc714cc1330a5ec694dc7209e5bba38f7f5ca055fb9473e618e7
MD5 5ea17c9a6759cd1ac8d79ef4c68f58a8
BLAKE2b-256 5cf7a8159075cd69062b4ef087523be862fd044e780c688ffdd774de012b5754

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward1-0.2.34-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 e38794e32a903203c6ee27e5433e6075a2f878747758ac17003d43d77db7afc0
MD5 9d3539a965bdb0663ccd1b52dc1751e1
BLAKE2b-256 c49a80ec76b6f5dd9fb2b65d9301d474cdc511cb0b7cc2969d3a2f338c04f9d9

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward1-0.2.34-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 2f46c32522b30c6860c87fcd7e770f713d9d6796cf569088e9d00c580d56aba7
MD5 d10ce35b77df1350f7b929b3364ea024
BLAKE2b-256 f722f75a59cf3513df4a1314dd6ed44fc694ac6b7ad293e09e945afe4381c824

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward1-0.2.34-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 349c68b5e9d10966f0dd4f51f832b17edaeb0c1afe7217a9c5770e2433bd3e6e
MD5 51d0a3ad7527faf160a1fad5f33ce209
BLAKE2b-256 b5be9a640dc7591a8b2f198c959eb45b34c8d7258deeb8243f715ff6a0bb845e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.34-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 8.9 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.7.8

File hashes

Hashes for awkward1-0.2.34-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e0d0d8fd071fbbda27f812006046fa33e96538533eeae7a0ac9243660a554c11
MD5 c1c6e9019dd9027a7e0652e38a54d7bb
BLAKE2b-256 985a45e4e988982a2d2e2808d16b9c9885f022e767accc27c721904340eecfe1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.34-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 9.0 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.7.8

File hashes

Hashes for awkward1-0.2.34-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 120ee304becbbce229297b3712d564504286e958ba28ceff43993f2d810fe3eb
MD5 67b9d6af5c6d133d8ce42e8efcfe608c
BLAKE2b-256 73e1f039bbd83b36a45afe4def1189b21a5f300e26d217cbc3167c6269c1830f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward1-0.2.34-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 9a8ce95025d5ef1c3279e4383540b4145a6f23dcbc1263a3b5655759508d0910
MD5 873bbc49e0ac8d9b55445a032fd0a21f
BLAKE2b-256 836155b2592f6427c6832a8a2d9a18ae36b7083a4c9cf457fc44f91ec682f588

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.34-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 8.9 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.7.8

File hashes

Hashes for awkward1-0.2.34-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b5f450a456a51c7bba196ba189c0b50ffe273831eaaec00a10a5f9f14f573d73
MD5 eb64f5f17103c74033ada4da93a16e23
BLAKE2b-256 6a90562baf55b733b077c35a866fd131fa59fe860e9d3b6b1c090154b6e8c937

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.34-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 9.0 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.7.8

File hashes

Hashes for awkward1-0.2.34-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 4d39bcdbbbc5a71fd99773f360ced67ac29626c47605abbe9f5f03d8edcf9442
MD5 fc86718b5ccdbe03c03a21656a65f892
BLAKE2b-256 0408c3e0f7b773594df56fd4fa9aa6e128268965a664ed685c97893640017def

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward1-0.2.34-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 da8000a5a8adc2c4c6f5e954b8764ebaec279c17ac60a879109744de833ae845
MD5 02595e68fe70ff2f0d3724acc3c87439
BLAKE2b-256 ad23d6fdbd7756d585c07fed8ef42ff88d5aba6b48570e1f9ed8ce91c8871228

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward1-0.2.34-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 fbbc56b88373ca1d5770e701a5b57ba5b5162123156a7ea8bb8b368bb46b8908
MD5 e6310dd03e984f39460072affb394726
BLAKE2b-256 993028120f2b5409b465531d5cce25fc02a2012cfff89000918464bbf2876d74

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward1-0.2.34-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 cf33c2c8fcb0eb0ea2839d457ccf62dfb390f4ac5de2f421950e1dfb997fe7e2
MD5 c00cdad7296f118bdcb890eefefa4d6e
BLAKE2b-256 a698f06ef1c55afb68b8dc72dc068511abc58fc5bdd251259407a5f88384c1e5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.34-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 8.9 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.7.8

File hashes

Hashes for awkward1-0.2.34-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 cab0ed5a2ec4758642a9952948ce82227d969960484b434967e065606438f6b7
MD5 c3e2c9d3f02a69349f654e17ebb90a02
BLAKE2b-256 1147e8fe0603e014e2be714ce9c90df59ef984d07e8bbb9f2e7f50452450d9b2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.34-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 9.0 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.7.8

File hashes

Hashes for awkward1-0.2.34-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 2c5f7c76cdf4b4b73a3482f0babbdf9e9b2f7347a15e670ca1400187b06083de
MD5 7c9939675c5d9efa9731e37e109f81a8
BLAKE2b-256 aa40a4aa877f4fef119aba01db2f3cf571fe9bda2b72a868f67c53c0ae37a8e4

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward1-0.2.34-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0df874433ae349a3f3bf12afc6bb7c271d0fed6d4ae456330524be4fa5452ebd
MD5 627d421b1eb95f9f4153505b285aa725
BLAKE2b-256 de7f1175c3d907a42f1c0c5bdbd43a6ab37b3a0e34f2520ef77d5070a76ffec8

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