Development of awkward 1.0, to replace scikit-hep/awkward-array in 2020.
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.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
File details
Details for the file awkward1-0.2.27.tar.gz
.
File metadata
- Download URL: awkward1-0.2.27.tar.gz
- Upload date:
- Size: 635.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.7.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c868437aabb2e95efbc522c43d47cac42e1c61904c7ddbebf2f41c6b63bb9c6f |
|
MD5 | f2055f9b76a5323fc4e1c7d6c7b26a75 |
|
BLAKE2b-256 | 97e90361d2cd295370d9a37427662c7b28e9fb5364212fb2d185187d5a286a5c |
File details
Details for the file awkward1-0.2.27-cp39-cp39-manylinux2010_x86_64.whl
.
File metadata
- Download URL: awkward1-0.2.27-cp39-cp39-manylinux2010_x86_64.whl
- Upload date:
- Size: 8.3 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.23.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.7.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9ae962ff05994680e27f1a84b3a7c7a6d0877c8bfd13282b60342eb1fbb7fc3b |
|
MD5 | 63e29e84e44b153468add7225556ad2e |
|
BLAKE2b-256 | a1fbdd0577886f7c3ebf7383beccaf086bcf1cc4c44c14e03237e07fe2082968 |
File details
Details for the file awkward1-0.2.27-cp39-cp39-manylinux1_x86_64.whl
.
File metadata
- Download URL: awkward1-0.2.27-cp39-cp39-manylinux1_x86_64.whl
- Upload date:
- Size: 8.0 MB
- Tags: CPython 3.9
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.7.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6574b88f7b186fcb43e7eda56ebbb23dcfb91a18f8a439d28ab8f9bbfee8f7ff |
|
MD5 | 166ce51f3a587030b276164a8ab5f1de |
|
BLAKE2b-256 | 964cc76703aadd07d3db19c8dce93c020c4d898e374174db1b8add65430cf396 |
File details
Details for the file awkward1-0.2.27-cp39-cp39-manylinux1_i686.whl
.
File metadata
- Download URL: awkward1-0.2.27-cp39-cp39-manylinux1_i686.whl
- Upload date:
- Size: 8.2 MB
- Tags: CPython 3.9
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.7.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8e40803acbe627cc7a24637fb2aaf20dc10b4d4fdd6ea3dd769b689c05b601e6 |
|
MD5 | 6fff1f104e2c781991785296efa6d444 |
|
BLAKE2b-256 | 81b0ea978e7acd8ec30729d19da34c0b81176f8ca74ca870c7dae6f6a705e766 |
File details
Details for the file awkward1-0.2.27-cp38-cp38-win_amd64.whl
.
File metadata
- Download URL: awkward1-0.2.27-cp38-cp38-win_amd64.whl
- Upload date:
- Size: 11.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.48.0 CPython/3.8.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4449131f6f5c2f6a68191ef9cd4047a6358ff60dae15a4d27928b6bf0418c651 |
|
MD5 | 7bce9397a7d630be2c77a4253fb78d12 |
|
BLAKE2b-256 | 14f44de1941487ee21aa7c325ae701fe480c0379d8334d20dcf9c39c0b12951f |
File details
Details for the file awkward1-0.2.27-cp38-cp38-win32.whl
.
File metadata
- Download URL: awkward1-0.2.27-cp38-cp38-win32.whl
- Upload date:
- Size: 8.7 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.0 CPython/3.8.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f5d83432e44292eff483cb16ba29bf40a9186df89bb93b1e1dd63ded4fe76f9d |
|
MD5 | c4c5dca01e24f7e6d884fff8070a8e84 |
|
BLAKE2b-256 | 7c032d50a4e90f9711dc7cb616a7cf7514ef498a54bb62871fadf902e521413b |
File details
Details for the file awkward1-0.2.27-cp38-cp38-manylinux2010_x86_64.whl
.
File metadata
- Download URL: awkward1-0.2.27-cp38-cp38-manylinux2010_x86_64.whl
- Upload date:
- Size: 8.3 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.23.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.7.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e5fe99d303415d7b49c2c9611e943a9a4b337b8608cb7a504d20b2c65f18d22a |
|
MD5 | f90c4271020ca3d9a32f0e7e46549ca5 |
|
BLAKE2b-256 | ba1f6fcc6a77d9301f5862aba0c9d53f49289eb03b64c708bc85f35e38b6e295 |
File details
Details for the file awkward1-0.2.27-cp38-cp38-manylinux1_x86_64.whl
.
File metadata
- Download URL: awkward1-0.2.27-cp38-cp38-manylinux1_x86_64.whl
- Upload date:
- Size: 8.0 MB
- Tags: CPython 3.8
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.7.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ddcb810fd0b75d2b64e6962b2560279ccb6e269ef8a87f25af43b51d6027729a |
|
MD5 | 78ec036cc956c922242cdcb78435e09d |
|
BLAKE2b-256 | 0ffa2638561dfb34a0b2baf7a35bad0b81b7a651ae02c8aa11a3eb23c369f131 |
File details
Details for the file awkward1-0.2.27-cp38-cp38-manylinux1_i686.whl
.
File metadata
- Download URL: awkward1-0.2.27-cp38-cp38-manylinux1_i686.whl
- Upload date:
- Size: 8.2 MB
- Tags: CPython 3.8
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.7.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 22642d51e1359205fff5cf1db9f325e0031579f1223af867507205d6fe15f294 |
|
MD5 | 79d8be4d0d75cfbea55fb97b955dff41 |
|
BLAKE2b-256 | 702bf2be038a79a319918d80a7f155c0090e4b2d593072898420c0ebbe155a9e |
File details
Details for the file awkward1-0.2.27-cp38-cp38-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: awkward1-0.2.27-cp38-cp38-macosx_10_9_x86_64.whl
- Upload date:
- Size: 8.3 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.0 CPython/3.8.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2e01117b48ad653155a7fdc5ab19b5100c5018929ff1c6a181c726c2761e6d51 |
|
MD5 | 86253d53f43019b30518950acafd4387 |
|
BLAKE2b-256 | b631d2ff960a0a6d0e890620c24ed01172704633d4cd1389fd33c93cac8dff39 |
File details
Details for the file awkward1-0.2.27-cp37-cp37m-win_amd64.whl
.
File metadata
- Download URL: awkward1-0.2.27-cp37-cp37m-win_amd64.whl
- Upload date:
- Size: 11.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.48.0 CPython/3.7.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4b5801f4e534963ce9a755d38adffe7cd5a2e3a50bb5dd28569e1a045ef677cb |
|
MD5 | 76a39fa8f6e4042138f4d0d4da669373 |
|
BLAKE2b-256 | e3252f006bc0a0ecd3dc4b3d7cb0e30c95512b0b43f15767d2ab2ef95989e114 |
File details
Details for the file awkward1-0.2.27-cp37-cp37m-win32.whl
.
File metadata
- Download URL: awkward1-0.2.27-cp37-cp37m-win32.whl
- Upload date:
- Size: 8.7 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.0 CPython/3.7.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 132d9552814d677d44e245db03cce697d279ef41d2d8f65b0f84889af3d15568 |
|
MD5 | 17a8abc36807f8018af7da6d0d4c0c66 |
|
BLAKE2b-256 | eaac45cac05b4e1134d460904052ed3d2f3c5ff2317e4ac9d8267f63bbfa2174 |
File details
Details for the file awkward1-0.2.27-cp37-cp37m-manylinux2010_x86_64.whl
.
File metadata
- Download URL: awkward1-0.2.27-cp37-cp37m-manylinux2010_x86_64.whl
- Upload date:
- Size: 8.3 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.23.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.7.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7b9c175ec606b671af7d542ac1f64adfd35c07d2de00637df0d557457aa72a16 |
|
MD5 | dd1cf8d2d8c629f86fde33f237c66c12 |
|
BLAKE2b-256 | c48c867383a5a15e1b9959b85c2f8aa42fd1af698dbf9e303903a5df093957ac |
File details
Details for the file awkward1-0.2.27-cp37-cp37m-manylinux1_x86_64.whl
.
File metadata
- Download URL: awkward1-0.2.27-cp37-cp37m-manylinux1_x86_64.whl
- Upload date:
- Size: 8.1 MB
- Tags: CPython 3.7m
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.7.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e1ee49dc940ce114cd0bce76c1adc33b7f7179c6d8bbafc87128516d17c4b57e |
|
MD5 | 434b020cc50a58e1053cd358ead34983 |
|
BLAKE2b-256 | fc2e1bcdebef746865558e3a963c663054e0d1310643145cea5f6740137ef81b |
File details
Details for the file awkward1-0.2.27-cp37-cp37m-manylinux1_i686.whl
.
File metadata
- Download URL: awkward1-0.2.27-cp37-cp37m-manylinux1_i686.whl
- Upload date:
- Size: 8.2 MB
- Tags: CPython 3.7m
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.7.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | eab8a42d9e88af532c2f05fedf485d90da4ed3cac052eddfbe3d69ea7aab568b |
|
MD5 | 31f15968930a9e1f0358fb1a9c139c15 |
|
BLAKE2b-256 | c7b3db8e18718a50236c78c7809d951ceeecf268a3bbb0ac0688f8da3af562c3 |
File details
Details for the file awkward1-0.2.27-cp37-cp37m-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: awkward1-0.2.27-cp37-cp37m-macosx_10_9_x86_64.whl
- Upload date:
- Size: 8.2 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.0 CPython/3.7.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1fbe3348dfe93783f8dc13dc04327f333474ac5cf6aeafd5a547dd05b021e744 |
|
MD5 | 1449d90ebb734e06b35356ddc77dfe2f |
|
BLAKE2b-256 | 77ca1dad7f4f8560a220099dd506318c1e9c16b91ae2b77b874515ee7bd744e3 |
File details
Details for the file awkward1-0.2.27-cp36-cp36m-win_amd64.whl
.
File metadata
- Download URL: awkward1-0.2.27-cp36-cp36m-win_amd64.whl
- Upload date:
- Size: 11.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.48.0 CPython/3.6.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 67c8326a6e70fb988ee613f9ca0146357e08c7012512f1d89aa19efa65f16e83 |
|
MD5 | 4edd7e08f314ee96b980f93dc687f2cc |
|
BLAKE2b-256 | a45d60a103feb87398101995e59a0da6705a0403023e0ed9593123885cec5377 |
File details
Details for the file awkward1-0.2.27-cp36-cp36m-win32.whl
.
File metadata
- Download URL: awkward1-0.2.27-cp36-cp36m-win32.whl
- Upload date:
- Size: 8.7 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.0 CPython/3.6.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0c0b9709cc6d293dd46cff5667ca95dd07a8271dbefadf90afd91762c0301bbb |
|
MD5 | b69409f3deb8c4a22a7e595143102a36 |
|
BLAKE2b-256 | 36f6cb82884f7d1a0acbfee94ac52fb0f4a3f400de55d3e055bd4fa0034daf71 |
File details
Details for the file awkward1-0.2.27-cp36-cp36m-manylinux2010_x86_64.whl
.
File metadata
- Download URL: awkward1-0.2.27-cp36-cp36m-manylinux2010_x86_64.whl
- Upload date:
- Size: 8.3 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.23.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.7.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e63cd063f74ead1f5ccf13a51dea7f1ed820f16a9f5d1d1ff9c7bf441aaac55d |
|
MD5 | 4ed7518351f95bc4e366ca1328118ed3 |
|
BLAKE2b-256 | 49e2581187958252c1dc6d5394446f4480d1f3aa1583d9c5c4a0913e5332a625 |
File details
Details for the file awkward1-0.2.27-cp36-cp36m-manylinux1_x86_64.whl
.
File metadata
- Download URL: awkward1-0.2.27-cp36-cp36m-manylinux1_x86_64.whl
- Upload date:
- Size: 8.1 MB
- Tags: CPython 3.6m
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.7.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1961555d9a4beac8a7e48c929a9a017dc399ea191ef0f4396cd85d32364709c2 |
|
MD5 | 94ec9db70264b6b248c2c5802ef536a4 |
|
BLAKE2b-256 | cd14341dbce0d419de60597a81fbf8c1202405421ac41e77a89dc6fb8e5e7836 |
File details
Details for the file awkward1-0.2.27-cp36-cp36m-manylinux1_i686.whl
.
File metadata
- Download URL: awkward1-0.2.27-cp36-cp36m-manylinux1_i686.whl
- Upload date:
- Size: 8.2 MB
- Tags: CPython 3.6m
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.7.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | da9413859fd5ee231fa225c6a218c7203a8a0855ee27939f5f7f27af907dd66f |
|
MD5 | 4de339cc21d831db0a1f49ed899ab204 |
|
BLAKE2b-256 | 4a35e5ee9ac0521d47ae761d84b4899587a401c74e508980d664675acb45b4cd |
File details
Details for the file awkward1-0.2.27-cp36-cp36m-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: awkward1-0.2.27-cp36-cp36m-macosx_10_9_x86_64.whl
- Upload date:
- Size: 8.2 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.0 CPython/3.6.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8a05df9563014fc9bd113faed9b998b398ea8fdd74603a30fcefa863bb2dc0f4 |
|
MD5 | ab04abcda203bf2f2811990bbbb479fd |
|
BLAKE2b-256 | 71ece810565df0aab114c2a6571970b5fd071b3e82acd1c624c405fbf075ec2c |
File details
Details for the file awkward1-0.2.27-cp35-cp35m-win_amd64.whl
.
File metadata
- Download URL: awkward1-0.2.27-cp35-cp35m-win_amd64.whl
- Upload date:
- Size: 11.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.48.0 CPython/3.5.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0bc683d19f5695e1ff8dc0e12e69e7a395dc4fe1eca03d7e03cbb5fdaf09b3a6 |
|
MD5 | dbdaf0cefd143b13d7e7cbc5245f9b4c |
|
BLAKE2b-256 | e79eefd1a873a2307e7e22934b2e5db1841e70ed35093742cca22e49d24fef7c |
File details
Details for the file awkward1-0.2.27-cp35-cp35m-win32.whl
.
File metadata
- Download URL: awkward1-0.2.27-cp35-cp35m-win32.whl
- Upload date:
- Size: 8.7 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.0 CPython/3.5.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ab9fd64c974bb8a08548bce55e791eb8543dada1164fd02c106bf05d0cdcdefc |
|
MD5 | 0c31ef5a11b27721160c07849ec02dd3 |
|
BLAKE2b-256 | 9b666c8dec0d34fd87e28333f8c40a2de1de5843d27826f814f8b921fa82e2f2 |
File details
Details for the file awkward1-0.2.27-cp35-cp35m-manylinux2010_x86_64.whl
.
File metadata
- Download URL: awkward1-0.2.27-cp35-cp35m-manylinux2010_x86_64.whl
- Upload date:
- Size: 8.3 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.23.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.7.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 11a1311f2d07db1da68d8f34647b4a86f60f0262028655ed247dcf4126eb9a03 |
|
MD5 | 0c317f2f7c3b8836b5279bc3d005a3c5 |
|
BLAKE2b-256 | 36ce96661950c8d1709c707d63359f1fb3d0ee742a9ae30ad803d1d33503851c |
File details
Details for the file awkward1-0.2.27-cp35-cp35m-manylinux1_x86_64.whl
.
File metadata
- Download URL: awkward1-0.2.27-cp35-cp35m-manylinux1_x86_64.whl
- Upload date:
- Size: 8.1 MB
- Tags: CPython 3.5m
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.7.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c95ff0b86df77ac3a623dd6014d19dde81e05ffbcd24f8f888582c23326de11b |
|
MD5 | e46aa50ee15ce6281148f681e0bbc54e |
|
BLAKE2b-256 | 78e2447a22e4a4903c8d7963fb321b94463b697079dab941131aef5c0625370f |
File details
Details for the file awkward1-0.2.27-cp35-cp35m-manylinux1_i686.whl
.
File metadata
- Download URL: awkward1-0.2.27-cp35-cp35m-manylinux1_i686.whl
- Upload date:
- Size: 8.2 MB
- Tags: CPython 3.5m
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.7.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d9b6dc26145350f7a8e80b767759e88fc2c7e7708cd55289357af5d47fdd2d7f |
|
MD5 | 30e5b0d85e001563bbf711d2df71f433 |
|
BLAKE2b-256 | 8549dd9e5fbffa904aa5190d37b23ffc35eb061c6e050ac8c60e71820ee3610f |
File details
Details for the file awkward1-0.2.27-cp27-cp27mu-manylinux2010_x86_64.whl
.
File metadata
- Download URL: awkward1-0.2.27-cp27-cp27mu-manylinux2010_x86_64.whl
- Upload date:
- Size: 8.3 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.23.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.7.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4327e2193da12eaf246df12a7ac2b70dbf5d91afc39e9f835814f0b5b78ce7ef |
|
MD5 | a39a01d33e2475a8ec94004f79684650 |
|
BLAKE2b-256 | a6ce205a2ba6722c83f14d8190c2a821fa05ce6e8e5d79d9c4001903e4870930 |
File details
Details for the file awkward1-0.2.27-cp27-cp27mu-manylinux1_x86_64.whl
.
File metadata
- Download URL: awkward1-0.2.27-cp27-cp27mu-manylinux1_x86_64.whl
- Upload date:
- Size: 8.1 MB
- Tags: CPython 2.7mu
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.7.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0fcca1b6434e702b22900f36a296c7aa6f8f0dec8f1a777ec5809c660d04a4a3 |
|
MD5 | 0d3570c9dd3f2ffea0fa4067006728a7 |
|
BLAKE2b-256 | 38da9caac84b70c1204437edd5f24470d6e8d2f7604ea50ccf2b01a9ce7fa69a |
File details
Details for the file awkward1-0.2.27-cp27-cp27mu-manylinux1_i686.whl
.
File metadata
- Download URL: awkward1-0.2.27-cp27-cp27mu-manylinux1_i686.whl
- Upload date:
- Size: 8.2 MB
- Tags: CPython 2.7mu
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.7.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1c50d83517b45d877840f687faa9f21692bea64de2724bad8fbf71af4c796846 |
|
MD5 | af99e79b83a27205afd68ba047bd3fe9 |
|
BLAKE2b-256 | 4c2ae04b21d215c84be89713122ad73ef32a2939c724cda55a40c2c13feab262 |
File details
Details for the file awkward1-0.2.27-cp27-cp27m-win_amd64.whl
.
File metadata
- Download URL: awkward1-0.2.27-cp27-cp27m-win_amd64.whl
- Upload date:
- Size: 11.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.48.0 CPython/2.7.18
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 04fffb2d51053d605e741c089415023c8eb429e04668ff297bb91e2ec91139b1 |
|
MD5 | d24815d975d172b9fdf9316f4a03bb09 |
|
BLAKE2b-256 | d33dce71bc9293beb40c2dbe4da250c94217b205fce3ac9eb23b18e17e2edf25 |
File details
Details for the file awkward1-0.2.27-cp27-cp27m-win32.whl
.
File metadata
- Download URL: awkward1-0.2.27-cp27-cp27m-win32.whl
- Upload date:
- Size: 8.7 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.0 CPython/2.7.18
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 24e47204769e280357b86b3a131d5e6c1edf2ef1c2025ab7042bcaff78feabed |
|
MD5 | e659433fcf97b9339a5baade306df3b7 |
|
BLAKE2b-256 | 0f2398fe22b7894d641c3471eb944dd0a4f157ed3740eafdf2c12b64a7f6fadf |
File details
Details for the file awkward1-0.2.27-cp27-cp27m-manylinux2010_x86_64.whl
.
File metadata
- Download URL: awkward1-0.2.27-cp27-cp27m-manylinux2010_x86_64.whl
- Upload date:
- Size: 8.3 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.23.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.7.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a470a48b7279641d30af5996d1ae47e5f84b86e1195adb8976b4a59c80b04090 |
|
MD5 | b9aa12473e05febd52245141709f7fb4 |
|
BLAKE2b-256 | 7f8e079cd24bbe0182c69ceb3c735093e2126521ee26a302b83080c8e51046b9 |
File details
Details for the file awkward1-0.2.27-cp27-cp27m-manylinux1_x86_64.whl
.
File metadata
- Download URL: awkward1-0.2.27-cp27-cp27m-manylinux1_x86_64.whl
- Upload date:
- Size: 8.1 MB
- Tags: CPython 2.7m
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.7.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6c36575c031b17be0fe9294f4bc4848cc3f60a30d0c8acf205c768651ac34a1f |
|
MD5 | f9eb6c71378192e173c57dc9895befc8 |
|
BLAKE2b-256 | 7347cd518be7624168e847f946836ad87366401b0afc9c3f99cd87e4bdc913a6 |
File details
Details for the file awkward1-0.2.27-cp27-cp27m-manylinux1_i686.whl
.
File metadata
- Download URL: awkward1-0.2.27-cp27-cp27m-manylinux1_i686.whl
- Upload date:
- Size: 8.2 MB
- Tags: CPython 2.7m
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.7.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4b30ec75da88e92e71c9864ad886ab06756641c5babc8aaec94add159043c20a |
|
MD5 | df68b4f85b0e5157a790a607ba3a985a |
|
BLAKE2b-256 | d93ebbc759513e631f043251b3131bb4230fd56995f1bad1ed828fd09273bf59 |
File details
Details for the file awkward1-0.2.27-cp27-cp27m-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: awkward1-0.2.27-cp27-cp27m-macosx_10_9_x86_64.whl
- Upload date:
- Size: 8.2 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.0 CPython/2.7.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4c13e848d5beb927b039b6084a5901f33187f9738df015078a6bcee93341633f |
|
MD5 | 2a1a065cd25277c451a23dd84dfcb2b8 |
|
BLAKE2b-256 | a529f0f9ef90604eb525c8fa3d9faaf0c14e34add7210c40bbe14f8f447949ad |