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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.9

awkward1-0.2.38-cp39-cp39-manylinux1_i686.whl (5.7 MB view details)

Uploaded CPython 3.9

awkward1-0.2.38-cp38-cp38-win_amd64.whl (12.4 MB view details)

Uploaded CPython 3.8 Windows x86-64

awkward1-0.2.38-cp38-cp38-win32.whl (9.6 MB view details)

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.8

awkward1-0.2.38-cp38-cp38-manylinux1_i686.whl (5.7 MB view details)

Uploaded CPython 3.8

awkward1-0.2.38-cp38-cp38-macosx_10_9_x86_64.whl (6.1 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

awkward1-0.2.38-cp37-cp37m-win_amd64.whl (12.4 MB view details)

Uploaded CPython 3.7m Windows x86-64

awkward1-0.2.38-cp37-cp37m-win32.whl (9.6 MB view details)

Uploaded CPython 3.7m Windows x86

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

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

awkward1-0.2.38-cp37-cp37m-manylinux1_x86_64.whl (5.7 MB view details)

Uploaded CPython 3.7m

awkward1-0.2.38-cp37-cp37m-manylinux1_i686.whl (5.8 MB view details)

Uploaded CPython 3.7m

awkward1-0.2.38-cp37-cp37m-macosx_10_9_x86_64.whl (6.0 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

awkward1-0.2.38-cp36-cp36m-win_amd64.whl (12.4 MB view details)

Uploaded CPython 3.6m Windows x86-64

awkward1-0.2.38-cp36-cp36m-win32.whl (9.6 MB view details)

Uploaded CPython 3.6m Windows x86

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

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

awkward1-0.2.38-cp36-cp36m-manylinux1_x86_64.whl (5.7 MB view details)

Uploaded CPython 3.6m

awkward1-0.2.38-cp36-cp36m-manylinux1_i686.whl (5.8 MB view details)

Uploaded CPython 3.6m

awkward1-0.2.38-cp36-cp36m-macosx_10_9_x86_64.whl (6.0 MB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

awkward1-0.2.38-cp35-cp35m-win_amd64.whl (12.4 MB view details)

Uploaded CPython 3.5m Windows x86-64

awkward1-0.2.38-cp35-cp35m-win32.whl (9.6 MB view details)

Uploaded CPython 3.5m Windows x86

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

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

awkward1-0.2.38-cp35-cp35m-manylinux1_x86_64.whl (5.7 MB view details)

Uploaded CPython 3.5m

awkward1-0.2.38-cp35-cp35m-manylinux1_i686.whl (5.8 MB view details)

Uploaded CPython 3.5m

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

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

awkward1-0.2.38-cp27-cp27mu-manylinux1_x86_64.whl (5.7 MB view details)

Uploaded CPython 2.7mu

awkward1-0.2.38-cp27-cp27mu-manylinux1_i686.whl (5.8 MB view details)

Uploaded CPython 2.7mu

awkward1-0.2.38-cp27-cp27m-win_amd64.whl (12.4 MB view details)

Uploaded CPython 2.7m Windows x86-64

awkward1-0.2.38-cp27-cp27m-win32.whl (9.6 MB view details)

Uploaded CPython 2.7m Windows x86

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

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

awkward1-0.2.38-cp27-cp27m-manylinux1_x86_64.whl (5.7 MB view details)

Uploaded CPython 2.7m

awkward1-0.2.38-cp27-cp27m-manylinux1_i686.whl (5.8 MB view details)

Uploaded CPython 2.7m

awkward1-0.2.38-cp27-cp27m-macosx_10_9_x86_64.whl (6.0 MB view details)

Uploaded CPython 2.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: awkward1-0.2.38.tar.gz
  • Upload date:
  • Size: 789.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.49.0 CPython/3.7.9

File hashes

Hashes for awkward1-0.2.38.tar.gz
Algorithm Hash digest
SHA256 f25db4920677029a92e92b994f1056902724b6a947549254c1446bdc6e388671
MD5 804143781b99372e1bc06562a255bcd4
BLAKE2b-256 abd3d89317454e00c5a57b59c7c07b156def606a73fbb0c0bae1c0879cbf2140

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.38-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.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.7.9

File hashes

Hashes for awkward1-0.2.38-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 67ee6aa1da2ee0b68f850aadab56ccb349131880a6eeea83c9ed2b64f0c75635
MD5 5f926bcb8e5ed0e539fb4954b3fffb78
BLAKE2b-256 6c3c98787a0ef3060fcb01a7924bcd416929da3d2043703998f0edca6cd1b97b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.38-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.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.7.9

File hashes

Hashes for awkward1-0.2.38-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 21468d2d64045d0546289528793cae7370ebe8a4daa6ac334a14fa4b8ad57d65
MD5 45bc363ed20c18040de26f66ffe124d2
BLAKE2b-256 352adcedce2c2caa5ec158b362b2f70a7111f41f095d568961f342177addd6cc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.38-cp39-cp39-manylinux1_i686.whl
  • Upload date:
  • Size: 5.7 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.49.0 CPython/3.7.9

File hashes

Hashes for awkward1-0.2.38-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 31f2dda3821e7ef9a7d7846bbaf44f17adbcbc82210452cff18e72df19805d24
MD5 6488ac763a971a3691fcb69fab357a95
BLAKE2b-256 980455566c0eee4ab5a0b1b776ca138f25ff637e01ddd418c207cd7ffc89e05e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.38-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 12.4 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.49.0 CPython/3.8.5

File hashes

Hashes for awkward1-0.2.38-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 6b77ab7ba0c427e0de81cdf220daf32abb510e673c6e15db17754823a36a4ed5
MD5 934e0a396668a6de627e39080a5a0fa6
BLAKE2b-256 21158b710df9cdd88be9fbace2a1b85c6453da60d6574d352a295353c2614c12

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.38-cp38-cp38-win32.whl
  • Upload date:
  • Size: 9.6 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.49.0 CPython/3.8.5

File hashes

Hashes for awkward1-0.2.38-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 5d2f6682f21655dfa93a150823e029dc640ca41085ab0061f5144a32f9c52d51
MD5 9be0935009b7f09f63212d3e30116aaf
BLAKE2b-256 88735d6c6497b95f2fbece0b56416b1d26b3c913cffa7f95d6ad47d2d4c02946

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for awkward1-0.2.38-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 87af175855a0ee6b3bc8f247e8ed3e556c1eab8a732a54146d885eca4ee489c8
MD5 2369f04e1334885b11a824ce65f13155
BLAKE2b-256 f330173e3331fa951c9bbf2276c041234e4282a6eaf117c3eeba314d3f25b7fd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.38-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.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.7.9

File hashes

Hashes for awkward1-0.2.38-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 70b9b832898d7c3b1269e144a034e198a60be4918c632328130bd8a25ab6148b
MD5 08c7e1d952c2d43d8a3e8d286f13f829
BLAKE2b-256 5687b2ab83ad3fc7d725039ef1b5b57de5dadf3debf006e9147517a2938571c8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.38-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 5.7 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.49.0 CPython/3.7.9

File hashes

Hashes for awkward1-0.2.38-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 78fe4adeb242134c1176559a6274f4afe447ccb9fc7b5fa5303277918ebb5d88
MD5 a0e2ccf22f349f9c6b119fefdc25fe94
BLAKE2b-256 9126cce54d0c4b1bee1bcfcb19dc221e1f38f71246c2fa5d7a557cdd1bc1bb18

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.38-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 6.1 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.49.0 CPython/3.8.0

File hashes

Hashes for awkward1-0.2.38-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2b9069853d9da035b690efd47da4743285daa63c091949564216ad7394ee4f45
MD5 4a7e36edc49e7d109380968c498ff10c
BLAKE2b-256 079f4e5cb65331a43094a6a4fb79c7c98fec2beb2ac910daef7ea77f22ac55a5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.38-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 12.4 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.49.0 CPython/3.7.9

File hashes

Hashes for awkward1-0.2.38-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 b5efcb157f10f299842e63c56d7875dedb75d26a4ffa6a4188218c083da7fde4
MD5 785a6f0b2d3c7d2bf48bdf9064048200
BLAKE2b-256 8731eddea75b37ea2156805a8532d793d2a7c39d205941f3994ed92b756e9c46

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.38-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 9.6 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.49.0 CPython/3.7.9

File hashes

Hashes for awkward1-0.2.38-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 18ca17b766b8024eea6cc343c26b8d5f7c4b4dea7431469f4385bebddac78ea1
MD5 f419864f855541b394dd4bbb6de63c56
BLAKE2b-256 4272c5159f68e3b4a3383df30a2e5c66e7ee90c8ba0fa58528157714d5668a99

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.38-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.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.7.9

File hashes

Hashes for awkward1-0.2.38-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 6afe5926d4ded66ab2281e86e02e6fe34207cc600291d1e761cabbae511447c6
MD5 db91d072b8c03f2054d642a051b557c6
BLAKE2b-256 fe8c8aa19d4749eb3d743a0de8ec853e6c8d31362f3ecea8cf669b572f56a7a8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.38-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 5.7 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.49.0 CPython/3.7.9

File hashes

Hashes for awkward1-0.2.38-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d0b7dc71e12a6e318d5dcc6689f11255b020410a4c4aaf2ab035224f00e958c6
MD5 995783d15f3d45228d6be4ac63db80da
BLAKE2b-256 e421294242869564c134c2f86e074430dc1221836e5ed2aae51ae8d40cb7cd05

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.38-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 5.8 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.49.0 CPython/3.7.9

File hashes

Hashes for awkward1-0.2.38-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 f37b0588af1b8db95f346ca6e142eabfbcc18ba516636b4b9cc5dd1f2def4c7b
MD5 d4819da201fe9d37125f745f934e3401
BLAKE2b-256 bf2ddc5d5116542764260f94cdb98dc3f48bde78af7ecf74adc6b9badbb0546f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.38-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 6.0 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.49.0 CPython/3.7.5

File hashes

Hashes for awkward1-0.2.38-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9752d5606bd21c518a94036b0ada677b2ce2774b051f453cf87c6e2167b112be
MD5 50b000372ac9958775d2dbafb4f4949a
BLAKE2b-256 08ac2ca02bb556460ebd191e585c8f7eccd3f291b9437641400d01f8190d9c27

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.38-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 12.4 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.49.0 CPython/3.6.8

File hashes

Hashes for awkward1-0.2.38-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 f4fa668101dcbd51b86ce1d7ebc050568683c8862971ae289fb713edfa2a63a1
MD5 80e23b62dd2b7ee6499a34d1b73ffe1a
BLAKE2b-256 0b39f80baf6650025695826153a5abb56eaf32853f391065366d75203faa21ce

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.38-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 9.6 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.49.0 CPython/3.6.8

File hashes

Hashes for awkward1-0.2.38-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 4e78d791962cf7d6e0ad404992e720c025a276662735f4f38a5b22d0bf9c1a3d
MD5 5929db23a2211c4bc246daa77fce1480
BLAKE2b-256 1f510ac6394e8bbea308202303e18d2a6ed4691c9c2ebfa7b81e8a2f6d5e20c1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.38-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.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.7.9

File hashes

Hashes for awkward1-0.2.38-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 b5e90ce1c1a037c5d6b28466003ad8b9f13fb04a23ed0dfb349bcdcafc9b6d88
MD5 38139f6679378077fda7fbdb16cba29f
BLAKE2b-256 d2848eddc8e63311ded854ea57ecf689eef25d827e3c74fc7c9d0608a53c9579

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.38-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 5.7 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.49.0 CPython/3.7.9

File hashes

Hashes for awkward1-0.2.38-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c3c01b7fb0314436f6678fa0f9ff9aff1c132a9cbf1c539d0936ee971dfc0efe
MD5 2693a6dc318d9bb4123cd8bd7675fb83
BLAKE2b-256 faee09fe5db3f49cb031700066db0391e2d330ad92ce4f6313492fc022c03b13

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.38-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 5.8 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.49.0 CPython/3.7.9

File hashes

Hashes for awkward1-0.2.38-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 399c36e07667059a6e891d096d71ef4de7fe58efa121473abbd04cfa4ce4a681
MD5 e20d5c69772c6d50e65f483e82f2f396
BLAKE2b-256 280e282b21ad6d243c9e4673bfc4f1b6ce8c9532b86692f75987236512b1f4a9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.38-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 6.0 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.49.0 CPython/3.6.8

File hashes

Hashes for awkward1-0.2.38-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 91f2a554d916b38aea25f9a0f7a7c353a6dbb1b0afa34bc916475a9a2d5c275a
MD5 0505ebc5ee177d9d55b3eaad6841454f
BLAKE2b-256 f47abf3f044cfdecda3626b9db11f74734acbbe1a84ab040e0c2c4fde9deee73

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.38-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 12.4 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.49.0 CPython/3.5.4

File hashes

Hashes for awkward1-0.2.38-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 e2a730932aca85fbcf8a6cbe8ff5ee6e705aaa1d4f2b4336db4ae4e84ac44d8f
MD5 552d2f5b31fc74b4b12b41ae408ab5d3
BLAKE2b-256 8d3cbe41c68839055c9db739f0181a20909cbabcd803eb7d5092fa58b3a08b35

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.38-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 9.6 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.49.0 CPython/3.5.4

File hashes

Hashes for awkward1-0.2.38-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 49aa3373e2ca3628090faf2288fd0a11bda252ae4d0d3f56146bdf94913ec53e
MD5 39460a6a263289510d60c5407208089c
BLAKE2b-256 f0a072c408edbcd6453b5bae9d441612d717e0a21077fcff896553de4a87dfd3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.38-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.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.7.9

File hashes

Hashes for awkward1-0.2.38-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 dd3233fcdf05d0bb8858684bab535a8fbc774da2fdf3c7948aaadb4dffa53456
MD5 95b2fce4fbe60cf5c4e67eea53641a90
BLAKE2b-256 84fc80cdd837f7571d4d0a14789283a162ea6b2e8d09874e45a4c0dc2fd7b322

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.38-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 5.7 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.49.0 CPython/3.7.9

File hashes

Hashes for awkward1-0.2.38-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 1ee7ef5c97ac40ebe1559dadeeefa665ce8223fd56708869cc03e33bf395480a
MD5 5ba20e0db7b5da6520ed730d3237c7ff
BLAKE2b-256 fa70c008536ed7c3952ae4d32c2a77e8f5493fcac8b94e4003c68ceacb83cb9b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.38-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 5.8 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.49.0 CPython/3.7.9

File hashes

Hashes for awkward1-0.2.38-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 ef84e96fc4ce82dad52d6288e48d8815288533ad11b5cfea490ebb5161530a06
MD5 aa4ead088debe1f42dcb1c16e956e0c1
BLAKE2b-256 42249de62b999fefca692badf1d7bbf9de1e85c29db9d42001e78af3859fc6aa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.38-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.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.7.9

File hashes

Hashes for awkward1-0.2.38-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 1e54f9fc08af72e09c7853da70a95aec268a0dca817fecc8834b35c6a2c6d1f5
MD5 8680eee3c6dfb00885408520eaec62d0
BLAKE2b-256 4f93ecabf76986d6241bbc275f3e2a5093698fc40a25f9989b4581114a404310

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.38-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 5.7 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.49.0 CPython/3.7.9

File hashes

Hashes for awkward1-0.2.38-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 daa51a05e518ed87867e4dafbba33e557b16dcdd6c929c8223d17d7a2184bc45
MD5 4e4d8cf9d837afdc042c8f03ce0e784b
BLAKE2b-256 a9db7a2c70173a089f2ab468e541e0bb74f72930acfc54ecebdb4f5c39592a73

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.38-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 5.8 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.49.0 CPython/3.7.9

File hashes

Hashes for awkward1-0.2.38-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 b58779aec6a917b3b6b202ce91fe066200f084349e8a488423d1462fbeaa10d0
MD5 b742e7a0570b4e45477daf003df8de3d
BLAKE2b-256 fe35de721cf82083717bf98e7110255815c4553e8f608c60d873c16f730dadc2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.38-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 12.4 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.49.0 CPython/2.7.18

File hashes

Hashes for awkward1-0.2.38-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 2b464404fefc9341bcfc19317ec5da7dcdc7a77bc95b73fb0927819f5b5878d3
MD5 d3949c9c357585c31085e933a325fafc
BLAKE2b-256 a512db826ca46f68f97e76eb37f0e3d1c82e9b3006dc9efa5b8dce1ee1abe540

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.38-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 9.6 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.49.0 CPython/2.7.18

File hashes

Hashes for awkward1-0.2.38-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 9a69999662fcb82b170457db99403a154ae90102cf5801da8921dea77b8b736b
MD5 41cd2df26ff9640a66b1f9282ebe5689
BLAKE2b-256 b75964600a5c3ab40b4e27932dd6ef4297c4f33737088ef97db08e3b4b536c81

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.38-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.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.7.9

File hashes

Hashes for awkward1-0.2.38-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 f276961418fffbed643c8f29f11371d32ad7ce4f13f05ee698bf96e1fbbffa2c
MD5 ad38056a7e1731921318c451b0b1d22e
BLAKE2b-256 79e898594e4df1ae8fa44a4c07c7aff51b16f5b256c66464a249fa94caf947e7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.38-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 5.7 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.49.0 CPython/3.7.9

File hashes

Hashes for awkward1-0.2.38-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e462e9f3137c057a31c8a7c77a666adf6cbb822b2b31c23ac1dbc83ab4841129
MD5 848b3b312754149d47e74fb6d157ebbd
BLAKE2b-256 eecbbb9c2e3e982f3e4e0f55fdaef5bc9abb14b336ed75eb21faabb468bce512

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.38-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 5.8 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.49.0 CPython/3.7.9

File hashes

Hashes for awkward1-0.2.38-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 5387ad8b24915873edb1f648a054e8a36fc6101b3573d78b7fb516c872d7b864
MD5 dfefec86ded231ca0df6aac8a07ccfe3
BLAKE2b-256 cdb417137066acc4bd78ae867a5115d972cd8e4362f188285b64ec11ae911fa2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: awkward1-0.2.38-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 6.0 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.49.0 CPython/2.7.17

File hashes

Hashes for awkward1-0.2.38-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2a7296f0bab609eecfc6745d23a46b95d13029822e0d28fde98fce6c0d271f15
MD5 407b63f22ecfcfe9157f02ba2e120ab9
BLAKE2b-256 a412fe4a5f47b5abb07557cc05dfdef5634fd22a62f48f8d412ae79489281fa4

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