{ "info": { "author": "Jim Pivarski", "author_email": "pivarski@princeton.edu", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "Intended Audience :: Information Technology", "Intended Audience :: Science/Research", "License :: OSI Approved :: BSD License", "Operating System :: POSIX :: Linux", "Programming Language :: Python", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Topic :: Scientific/Engineering", "Topic :: Scientific/Engineering :: Information Analysis", "Topic :: Scientific/Engineering :: Mathematics", "Topic :: Scientific/Engineering :: Physics", "Topic :: Software Development", "Topic :: Utilities" ], "description": "\n\nAwkward Array is a library for **nested, variable-sized data**, including arbitrary-length lists, records, mixed types, and missing data, using **NumPy-like idioms**.\n\nArrays 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.\n\n# Motivating example\n\nGiven an array of objects with `x`, `y` fields and variable-length nested lists like\n\n```python\narray = ak.Array([\n [{\"x\": 1.1, \"y\": [1]}, {\"x\": 2.2, \"y\": [1, 2]}, {\"x\": 3.3, \"y\": [1, 2, 3]}],\n [],\n [{\"x\": 4.4, \"y\": {1, 2, 3, 4]}, {\"x\": 5.5, \"y\": [1, 2, 3, 4, 5]}]\n])\n```\n\nthe 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:\n\n```python\noutput = np.square(array[\"y\", ..., 1:])\n```\n\nThe result is\n\n```python\n[\n [[], [4], [4, 9]],\n [],\n [[4, 9, 16], [4, 9, 16, 25]]\n]\n```\n\nThe equivalent using only Python is\n\n```python\noutput = []\nfor sublist in array:\n tmp1 = []\n for record in sublist:\n tmp2 = []\n for number in record[\"y\"][1:]:\n tmp2.append(np.square(number))\n tmp1.append(tmp2)\n output.append(tmp1)\n```\n\nNot only is the expression using Awkward Arrays more concise, using idioms familiar from NumPy, but it's much faster and uses less memory.\n\nFor a similar problem 10 million times larger than the one above (on a single-threaded 2.2 GHz processor),\n\n * the Awkward Array one-liner takes **4.6 seconds** to run and uses **2.1 GB** of memory,\n * the equivalent using Python lists and dicts takes **138 seconds** to run and uses **22 GB** of memory.\n\nSpeed 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](https://numba.pydata.org/).\n\nOur [presentation at SciPy 2020](https://youtu.be/WlnUF3LRBj4) provides a good introduction, showing how to use these arrays in a real analysis.\n\n# Installation\n\nAwkward Array can be installed [from PyPI](https://pypi.org/project/awkward) using pip:\n\n```bash\npip install awkward\n```\n\nYou 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).\n\nAwkward Array is also available using [conda](https://anaconda.org/conda-forge/awkward), which always installs a binary:\n```bash\nconda install -c conda-forge awkward\n```\n\nIf 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:\n\n```bash\nconda config --add channels conda-forge\nconda update --all\n```\n\n## Getting help\n\n\n \n \n \n \n
\n \n \n \n

\n \n How-to tutorials\n \n

\n
\n \n \n \n

\n \n Python API reference\n \n

\n \n \n \n

\n \n C++ API reference\n \n

\n
\n\n * Report bugs, request features, and ask for additional documentation on [GitHub Issues](https://github.com/scikit-hep/awkward-1.0/issues).\n * If you have a \"How do I...?\" question, ask about it on [StackOverflow with the [awkward-array] tag](https://stackoverflow.com/questions/tagged/awkward-array). Be sure to include tags for any other libraries that you use, such as Pandas or PyTorch.\n * To ask questions in real time, try the Gitter [Scikit-HEP/awkward-array](https://gitter.im/Scikit-HEP/awkward-array) chat room.\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "https://github.com/scikit-hep/awkward-1.0/releases", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/scikit-hep/awkward-1.0", "keywords": "", "license": "BSD 3-clause", "maintainer": "Jim Pivarski", "maintainer_email": "pivarski@princeton.edu", "name": "awkward1", "package_url": "https://pypi.org/project/awkward1/", "platform": "", "project_url": "https://pypi.org/project/awkward1/", "project_urls": { "Download": "https://github.com/scikit-hep/awkward-1.0/releases", "Homepage": "https://github.com/scikit-hep/awkward-1.0" }, "release_url": "https://pypi.org/project/awkward1/1.0.0/", "requires_dist": [ "awkward (>=1.0.0)" ], "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "summary": "Manipulate JSON-like data with NumPy-like idioms.", "version": "1.0.0", "yanked": false, "yanked_reason": null }, "last_serial": 8829319, "releases": { "0.0.1": [ { "comment_text": "", "digests": { "md5": "262f8071151c5ed7d0b115561d5d8eb4", "sha256": "49d73e9b2067f6374ddb4ab99b17a4070d15782cfee37e4591e0cae4592a9021" }, "downloads": -1, "filename": "awkward1-0.0.1-cp37-cp37m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "262f8071151c5ed7d0b115561d5d8eb4", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 62112, "upload_time": "2019-08-16T16:18:29", "upload_time_iso_8601": "2019-08-16T16:18:29.481540Z", "url": "https://files.pythonhosted.org/packages/9a/eb/af00498050456513c6664e99ee9d3d664c88e44b78b37e2ab838b33f0cd7/awkward1-0.0.1-cp37-cp37m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "73dec583c7f3f3ebd2ac88772d03c7ad", "sha256": "88937deb9d277ce9c57338e458775ea8d9c4d51d25461daff4beedcdab9ce23f" }, "downloads": -1, "filename": "awkward1-0.0.1.tar.gz", "has_sig": false, "md5_digest": "73dec583c7f3f3ebd2ac88772d03c7ad", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 182157, "upload_time": "2019-08-16T14:48:22", "upload_time_iso_8601": "2019-08-16T14:48:22.360623Z", "url": "https://files.pythonhosted.org/packages/32/40/ac15d64e7f079af5248de9a8398286f3d8745a99b7c60c5f65fc7ce3d6f3/awkward1-0.0.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.10": [ { "comment_text": "", "digests": { "md5": "926471a1229c38d97cb091ce844e5b07", "sha256": "f762e7e9ab13d020748d4217c3d9e82cd92ef19ad2dc0e8cd5de5b1a604bde60" }, "downloads": -1, "filename": "awkward1-0.0.10-cp27-cp27m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "926471a1229c38d97cb091ce844e5b07", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 35711, "upload_time": "2019-08-16T22:02:29", "upload_time_iso_8601": "2019-08-16T22:02:29.356371Z", "url": "https://files.pythonhosted.org/packages/78/a2/bb91fd3a2afc37295b5ce0eda159e51b250a20866c3a871ac9ab6f7877a7/awkward1-0.0.10-cp27-cp27m-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c67597d16177e118bfe34ab5f78d69ad", "sha256": "93db5a10ee427c97e727cf50776a0cc2a9f0b7c320945e08040f34ace8372abb" }, "downloads": -1, "filename": "awkward1-0.0.10-cp27-cp27m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "c67597d16177e118bfe34ab5f78d69ad", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 48113, "upload_time": "2019-08-16T22:01:22", "upload_time_iso_8601": "2019-08-16T22:01:22.644533Z", "url": "https://files.pythonhosted.org/packages/e5/f3/c97fd4361ee89163e549196975d77023b457fe4c3df2d44f002c3c6f3dd7/awkward1-0.0.10-cp27-cp27m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f6e91635a4f2d12eb892272577cfe369", "sha256": "d4b8e4308043d9419814b1233c39eeb1924151eb3c6aeb1ad49f0fd8ece02462" }, "downloads": -1, "filename": "awkward1-0.0.10-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "f6e91635a4f2d12eb892272577cfe369", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 49914, "upload_time": "2019-08-16T22:01:21", "upload_time_iso_8601": "2019-08-16T22:01:21.728330Z", "url": "https://files.pythonhosted.org/packages/b0/e9/62baa15ac9f16928492bec78337d6567e537325fb4f98cd1b9c09000e3c7/awkward1-0.0.10-cp27-cp27m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d31c07a9ddcca0e373d8add7d54db8a0", "sha256": "12cc341cc9eb613ab4325dc6806f3753ef6fcc6d59c9ba8b9f12f3d476422178" }, "downloads": -1, "filename": "awkward1-0.0.10-cp27-cp27m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "d31c07a9ddcca0e373d8add7d54db8a0", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 62362, "upload_time": "2019-08-16T22:01:22", "upload_time_iso_8601": "2019-08-16T22:01:22.332487Z", "url": "https://files.pythonhosted.org/packages/12/d4/aee2bfbfc11c4cf9c8fec20802497702adb4a7daaa6a124738ef243ac721/awkward1-0.0.10-cp27-cp27m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "82922e01cfb769706253cb82d6c166ce", "sha256": "901ac5eba1d3084d156424e859579a7faa45fd81a5f1a12305133c10f2617d15" }, "downloads": -1, "filename": "awkward1-0.0.10-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "82922e01cfb769706253cb82d6c166ce", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 48656, "upload_time": "2019-08-16T22:01:28", "upload_time_iso_8601": "2019-08-16T22:01:28.495527Z", "url": "https://files.pythonhosted.org/packages/2a/cb/93b7a455882d2e159894c54d8aa80952398a7fbaa80091a38518754679d0/awkward1-0.0.10-cp27-cp27m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e32e949a6a0ea053dbfb8378f0fe759c", "sha256": "48671b028a5cd550f38bf12a273842ca832e8ddca81b90b478d3ae472fba7e00" }, "downloads": -1, "filename": "awkward1-0.0.10-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "e32e949a6a0ea053dbfb8378f0fe759c", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 53991, "upload_time": "2019-08-16T22:01:28", "upload_time_iso_8601": "2019-08-16T22:01:28.656652Z", "url": "https://files.pythonhosted.org/packages/8a/a0/147a1b4136f12e8dcd228d4107c243fc24b90857614fbd77e3e03180a36b/awkward1-0.0.10-cp27-cp27m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3ad3d5b6dc1ca3461f928b134fd6cfea", "sha256": "fe9bbeb8bdc776343663d68e7da8db478a50d9ec746c95084e53504aa59c6ea6" }, "downloads": -1, "filename": "awkward1-0.0.10-cp34-cp34m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "3ad3d5b6dc1ca3461f928b134fd6cfea", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 35392, "upload_time": "2019-08-16T22:02:29", "upload_time_iso_8601": "2019-08-16T22:02:29.266848Z", "url": "https://files.pythonhosted.org/packages/6a/43/218f4131a3832dfb679455bd464b772aa68a6fe8c6c2e749534ca46e8d5c/awkward1-0.0.10-cp34-cp34m-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7dbaec6bf72fe3bfa137b55d19d6bf1d", "sha256": "47cf68bb4b46a8e6f0306cbac7432badc28c6222addeab65ef641b8df9a04d42" }, "downloads": -1, "filename": "awkward1-0.0.10-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "7dbaec6bf72fe3bfa137b55d19d6bf1d", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 48085, "upload_time": "2019-08-16T22:01:26", "upload_time_iso_8601": "2019-08-16T22:01:26.406782Z", "url": "https://files.pythonhosted.org/packages/10/36/4b569c00b7a8bb58a44fc9923fd7b649755da619b81c7d43803bb10ca8f9/awkward1-0.0.10-cp34-cp34m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8e6d631dccb01c9f1f6863c0af497e92", "sha256": "5133b3497ce618fd28567c405cf6bc0ee5066e7ac8a2e0f24d86471ae4c2c1f0" }, "downloads": -1, "filename": "awkward1-0.0.10-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "8e6d631dccb01c9f1f6863c0af497e92", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 49882, "upload_time": "2019-08-16T22:01:23", "upload_time_iso_8601": "2019-08-16T22:01:23.321283Z", "url": "https://files.pythonhosted.org/packages/59/43/80a807a4b930507a23e0360bda9a8086137ab9cfebc6fc25ce4870602721/awkward1-0.0.10-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "747364ef0c5fbe05cbef8e71e1073a9e", "sha256": "dc4c575f4ed905396a2d04e0bb1b1afbfbc7abe6f74670be427a37be2dbe7442" }, "downloads": -1, "filename": "awkward1-0.0.10-cp34-cp34m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "747364ef0c5fbe05cbef8e71e1073a9e", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 62083, "upload_time": "2019-08-16T22:01:24", "upload_time_iso_8601": "2019-08-16T22:01:24.271108Z", "url": "https://files.pythonhosted.org/packages/c0/f9/b6c63de8a2faf13af8ec4cb930c41d101a76e0de177cbecad41d263950c3/awkward1-0.0.10-cp34-cp34m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "118e2e4a87c8ec64bc475ddc64199e1f", "sha256": "734c3c8be38d3ee490898c386cf218e18f8cd7e0ec05f8d558009e454bc71945" }, "downloads": -1, "filename": "awkward1-0.0.10-cp35-cp35m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "118e2e4a87c8ec64bc475ddc64199e1f", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 35428, "upload_time": "2019-08-16T22:02:32", "upload_time_iso_8601": "2019-08-16T22:02:32.758099Z", "url": "https://files.pythonhosted.org/packages/c4/a6/52f4890eb166aa3b0158efaa0ad5f921dd9a2dbc913b28716b3e0786bf91/awkward1-0.0.10-cp35-cp35m-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0c37fe871ad995457ffd3db8e1e777ab", "sha256": "88ab566e8e05c73c360077cf397b13ab44e3f557e4e86abc2e92e979ac60b2de" }, "downloads": -1, "filename": "awkward1-0.0.10-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "0c37fe871ad995457ffd3db8e1e777ab", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 48083, "upload_time": "2019-08-16T22:01:29", "upload_time_iso_8601": "2019-08-16T22:01:29.215966Z", "url": "https://files.pythonhosted.org/packages/63/d0/f7bd1a12964b719140c5095a52478433d0e89003681afdfcc6817eecdc00/awkward1-0.0.10-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "83bd73e460f0c7bf5c216ad2c0bfbfb1", "sha256": "f80bd8786407aa2fde1198518edfacab83e80bdb9295e44f4d1f6a140936e049" }, "downloads": -1, "filename": "awkward1-0.0.10-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "83bd73e460f0c7bf5c216ad2c0bfbfb1", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 49943, "upload_time": "2019-08-16T22:01:27", "upload_time_iso_8601": "2019-08-16T22:01:27.427476Z", "url": "https://files.pythonhosted.org/packages/d0/ab/b51b2bc469dd32d622b2067c9cb0f783c734202ad1202c2e28d966f3d005/awkward1-0.0.10-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bef0d4b727bfd1a6ea2215c57e2e15f5", "sha256": "c6c5a5e70995dba05475afe91fd9ac3c1c4b0e0fcafbd49d2a9311ff91c02b6d" }, "downloads": -1, "filename": "awkward1-0.0.10-cp35-cp35m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "bef0d4b727bfd1a6ea2215c57e2e15f5", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 62104, "upload_time": "2019-08-16T22:01:28", "upload_time_iso_8601": "2019-08-16T22:01:28.466642Z", "url": "https://files.pythonhosted.org/packages/92/77/5d328fe9f0151452f5458373bfb9c04fe963da1f683d295e0c7e9d09e497/awkward1-0.0.10-cp35-cp35m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "66546badc2010afb11d3d51f7d142b97", "sha256": "0d6f45ab4b3ed124f7e10f230339fb46d3d2f6967ae1d90cb6f3489d07d1ba9d" }, "downloads": -1, "filename": "awkward1-0.0.10-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "66546badc2010afb11d3d51f7d142b97", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 48374, "upload_time": "2019-08-16T22:01:29", "upload_time_iso_8601": "2019-08-16T22:01:29.395473Z", "url": "https://files.pythonhosted.org/packages/e3/f1/30019a7d2d3724e125bd33e865111887e86704187769110efbe64db68c58/awkward1-0.0.10-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "72a104a5cb3bc7b48e4674ea979839d5", "sha256": "d74eb61ad68187df7276ba76c38978ee5547e3ae8c7f2d9e4b1c89d6bcd65deb" }, "downloads": -1, "filename": "awkward1-0.0.10-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "72a104a5cb3bc7b48e4674ea979839d5", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 53534, "upload_time": "2019-08-16T22:01:30", "upload_time_iso_8601": "2019-08-16T22:01:30.555248Z", "url": "https://files.pythonhosted.org/packages/fb/e5/f6cb14ba313c7565fcc5a9d484320083ca5a3ba17d79b5092fa0b9dd8835/awkward1-0.0.10-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "85c6767e64183e03aa27817dd0a2fbfe", "sha256": "26762ed4477eb2ff173d8a95d7f2756dbb51c6e97fdcc6b689b1ce301045653e" }, "downloads": -1, "filename": "awkward1-0.0.10-cp36-cp36m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "85c6767e64183e03aa27817dd0a2fbfe", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 35468, "upload_time": "2019-08-16T22:02:34", "upload_time_iso_8601": "2019-08-16T22:02:34.350418Z", "url": "https://files.pythonhosted.org/packages/6d/0b/5c7b7be7075c92895f9bd6c5976fc16f28c25ad6e450221f82704728ee21/awkward1-0.0.10-cp36-cp36m-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "55a40ba0de66ac32ad66fa99e79100cc", "sha256": "c8a704d1ea544ff0c5a5e874754b8c846cb655c8f43b5d90e9ae83ae907df78c" }, "downloads": -1, "filename": "awkward1-0.0.10-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "55a40ba0de66ac32ad66fa99e79100cc", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 48085, "upload_time": "2019-08-16T22:01:32", "upload_time_iso_8601": "2019-08-16T22:01:32.901882Z", "url": "https://files.pythonhosted.org/packages/ba/4a/1ce642d112df59f0f95754b20cfe2730fcc189d300c0aca96fbff5c3800d/awkward1-0.0.10-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "568bd08122992ccedfab4a9628506752", "sha256": "664d3a68a1d56bb173125b315b396caa0648d11dffc9ad20527f077f38c6f709" }, "downloads": -1, "filename": "awkward1-0.0.10-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "568bd08122992ccedfab4a9628506752", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 49941, "upload_time": "2019-08-16T22:01:30", "upload_time_iso_8601": "2019-08-16T22:01:30.203884Z", "url": "https://files.pythonhosted.org/packages/3b/15/683ffb240885738ecdc7d702e25884287d31397c2c2d738a8a56a3f27f4b/awkward1-0.0.10-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "98c3fb2eb86f93c09438b14a26e41812", "sha256": "f478b3569b4bdcf717f539ee0daedb4ea1040aed8c7e88c070d1c73bb4a959aa" }, "downloads": -1, "filename": "awkward1-0.0.10-cp36-cp36m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "98c3fb2eb86f93c09438b14a26e41812", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 62104, "upload_time": "2019-08-16T22:01:32", "upload_time_iso_8601": "2019-08-16T22:01:32.177150Z", "url": "https://files.pythonhosted.org/packages/ac/68/8bd9fb6c7585d4a06d77a00e9513f2edae2ae20131bba5446a3fba31a4bc/awkward1-0.0.10-cp36-cp36m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f68b0c2b9db7c862bc48f74238b5d6dd", "sha256": "fdcd1b91a46205a1c59611f5d090902f311214d3d481623e2d1874dd5f420870" }, "downloads": -1, "filename": "awkward1-0.0.10-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "f68b0c2b9db7c862bc48f74238b5d6dd", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 48422, "upload_time": "2019-08-16T22:01:42", "upload_time_iso_8601": "2019-08-16T22:01:42.858881Z", "url": "https://files.pythonhosted.org/packages/31/46/03cac2b64c2f52d9facfd1e5f29b87502f688bdae19685c3e9f12b3277aa/awkward1-0.0.10-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b6c946876485bb9ffccb1760ad010b2f", "sha256": "b4230522f5f0d41f3f4cf3a4f3aa735419b1a785644a83c5369c43b2ab591f35" }, "downloads": -1, "filename": "awkward1-0.0.10-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "b6c946876485bb9ffccb1760ad010b2f", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 53582, "upload_time": "2019-08-16T22:01:40", "upload_time_iso_8601": "2019-08-16T22:01:40.159773Z", "url": "https://files.pythonhosted.org/packages/38/c1/3ecd208d78f61da654894f77464c3c54029a448c07a38abd23a74b2704ad/awkward1-0.0.10-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d6a7d5480ae5f0e909beedd595ecb038", "sha256": "8e487d3740f04e75e2aa64f9e5ce11ca4b64e4e0536e9e3786c4116c4ce33d4e" }, "downloads": -1, "filename": "awkward1-0.0.10-cp37-cp37m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "d6a7d5480ae5f0e909beedd595ecb038", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 35531, "upload_time": "2019-08-16T22:02:38", "upload_time_iso_8601": "2019-08-16T22:02:38.863851Z", "url": "https://files.pythonhosted.org/packages/60/c2/0e3377ab85f6dd2c15b67ca740af0d14fa9aa687a90150de420a6a60faab/awkward1-0.0.10-cp37-cp37m-macosx_10_13_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "99064135f4bad0d8f644158026792b83", "sha256": "47893f0de20c199182d48615ef2a2f148192cd10506463c56045a82120a868a3" }, "downloads": -1, "filename": "awkward1-0.0.10-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "99064135f4bad0d8f644158026792b83", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 48181, "upload_time": "2019-08-16T22:01:38", "upload_time_iso_8601": "2019-08-16T22:01:38.348403Z", "url": "https://files.pythonhosted.org/packages/2d/83/f5e014de21fee1fb52cb6b12141e29005dc1e0f33ca443d02b4dbe1b1b02/awkward1-0.0.10-cp37-cp37m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fa7799360122d2860f479a2ab9d075e4", "sha256": "d02319fa7fca27e0bff14ef5b1ceaec26d39fb8f326fe76a18562fd737bcfd0d" }, "downloads": -1, "filename": "awkward1-0.0.10-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "fa7799360122d2860f479a2ab9d075e4", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 49890, "upload_time": "2019-08-16T22:01:34", "upload_time_iso_8601": "2019-08-16T22:01:34.682359Z", "url": "https://files.pythonhosted.org/packages/a8/f1/d05c7223ca01c06426f5d0c7b34fd4280a3b7b97b953518443e439975cc5/awkward1-0.0.10-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d53817f95772145d9b4c749807a0ef3c", "sha256": "138761b9c006cd82bfe01e004437046938a0f1fe82bff555035ba4aa469a9e6a" }, "downloads": -1, "filename": "awkward1-0.0.10-cp37-cp37m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "d53817f95772145d9b4c749807a0ef3c", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 62170, "upload_time": "2019-08-16T22:01:35", "upload_time_iso_8601": "2019-08-16T22:01:35.626776Z", "url": "https://files.pythonhosted.org/packages/ad/c0/185a44e8079af7c7bbc05ef9a1e091bdc1467d5f713f8a5e670a6bf605bf/awkward1-0.0.10-cp37-cp37m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a1f3555c0e1874e3e856b481d9ecba1a", "sha256": "ca2e01904fb074c531ffac0732e95918f966c40dba578a2df6de6287c5ae4ce2" }, "downloads": -1, "filename": "awkward1-0.0.10-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "a1f3555c0e1874e3e856b481d9ecba1a", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 48451, "upload_time": "2019-08-16T22:01:38", "upload_time_iso_8601": "2019-08-16T22:01:38.724316Z", "url": "https://files.pythonhosted.org/packages/ca/bf/adb14b2b9fdb127d4ec18265be7ea5de2a0533852f4fcb0620e032dff7b9/awkward1-0.0.10-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5afd952851daec16108ec3678c31ed15", "sha256": "84248cff100bf83b54ee819d9f0ee0c8d5371884ece5686f8c7372a46ea86af6" }, "downloads": -1, "filename": "awkward1-0.0.10-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "5afd952851daec16108ec3678c31ed15", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 53564, "upload_time": "2019-08-16T22:03:42", "upload_time_iso_8601": "2019-08-16T22:03:42.758548Z", "url": "https://files.pythonhosted.org/packages/8f/f9/bb20581cafe4ab8a0d780e4e19998e42bec9bcb6ea8bc892558b7db8cf80/awkward1-0.0.10-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5f62a6866a578ab530bf419564df6039", "sha256": "c41b5612c2191d7dfa52523cc3baea959181013e2cd9b35fa94ccfa35a191b23" }, "downloads": -1, "filename": "awkward1-0.0.10.tar.gz", "has_sig": false, "md5_digest": "5f62a6866a578ab530bf419564df6039", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 182111, "upload_time": "2019-08-16T22:01:41", "upload_time_iso_8601": "2019-08-16T22:01:41.545011Z", "url": "https://files.pythonhosted.org/packages/84/b7/a5f38e4ca028483570c8268fa30c2ca72143e9983491f8844380228147ed/awkward1-0.0.10.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.14": [ { "comment_text": "", "digests": { "md5": "a2361a9de161c9a854bbcb8eccaf1292", "sha256": "618fbb4c4b84ae068e4d241900c7a6e393c90ca65fb45b37072090921d3abbaa" }, "downloads": -1, "filename": "awkward1-0.0.14-cp27-cp27m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "a2361a9de161c9a854bbcb8eccaf1292", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 35709, "upload_time": "2019-08-17T16:43:34", "upload_time_iso_8601": "2019-08-17T16:43:34.659547Z", "url": "https://files.pythonhosted.org/packages/d8/30/4e6b39797e56b86ffc6ac2f6fb021d21e95ae12d1ec92d12edd1696fa868/awkward1-0.0.14-cp27-cp27m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7ede82f1f01aeafa281288ab08504078", "sha256": "857cc47d4c8bf0b6fc47f2349d8d920d3ceb2d40284b0d55aabab2a99c8eeecc" }, "downloads": -1, "filename": "awkward1-0.0.14-cp27-cp27m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "7ede82f1f01aeafa281288ab08504078", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 48115, "upload_time": "2019-08-17T16:44:22", "upload_time_iso_8601": "2019-08-17T16:44:22.962043Z", "url": "https://files.pythonhosted.org/packages/57/59/7512d2891d3d5a8c2735e07217dea765949e939b3bcabe86026920a2e28f/awkward1-0.0.14-cp27-cp27m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d268570bd07ba8e03b39b9e1057110d3", "sha256": "2dac6eab6be8f347e55e79813f5a6204441b50d7ab1871c25ef0055cbd538c51" }, "downloads": -1, "filename": "awkward1-0.0.14-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "d268570bd07ba8e03b39b9e1057110d3", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 49913, "upload_time": "2019-08-17T16:44:23", "upload_time_iso_8601": "2019-08-17T16:44:23.002326Z", "url": "https://files.pythonhosted.org/packages/7c/bd/fd228884a55149e5ded96bf17c64bb17dc7fb2eda9734d59889f5f79a061/awkward1-0.0.14-cp27-cp27m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "71bb65aa36f6e90c7e819f5e3c7b9191", "sha256": "e69d13186aa3ad66f0fc3cdd8a83276a4c26b29103199d7c8e43f425c93b12fa" }, "downloads": -1, "filename": "awkward1-0.0.14-cp27-cp27m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "71bb65aa36f6e90c7e819f5e3c7b9191", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 62364, "upload_time": "2019-08-17T16:44:17", "upload_time_iso_8601": "2019-08-17T16:44:17.106896Z", "url": "https://files.pythonhosted.org/packages/7a/1c/9085267fcb819b25bda52200e2d2f37b995f9b1b248d05e7eadd2f825b18/awkward1-0.0.14-cp27-cp27m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ca08a00aca3ad7b771be61433a6df3e0", "sha256": "eccb1eb684812a89f482cc652b5439844e39105e67a315306f3b891c433c83a1" }, "downloads": -1, "filename": "awkward1-0.0.14-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "ca08a00aca3ad7b771be61433a6df3e0", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 48657, "upload_time": "2019-08-17T16:44:01", "upload_time_iso_8601": "2019-08-17T16:44:01.132588Z", "url": "https://files.pythonhosted.org/packages/9e/82/696403cefa6984724b306cd93e0354705608bb0687d1a120eaaf80a18130/awkward1-0.0.14-cp27-cp27m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "51728ec22c350f6fafed2ec69c193b0f", "sha256": "b709f1c38f87db8cae611baf3678f45620de460aa4139e0d9d8bdc6e137d90fe" }, "downloads": -1, "filename": "awkward1-0.0.14-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "51728ec22c350f6fafed2ec69c193b0f", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 53987, "upload_time": "2019-08-17T16:44:01", "upload_time_iso_8601": "2019-08-17T16:44:01.483007Z", "url": "https://files.pythonhosted.org/packages/9e/8a/3ba657ed0fdc18c91a6439ba15ba4f025d371f48d03efc34ca69442e9559/awkward1-0.0.14-cp27-cp27m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "98685fea274b61536840147890c987d4", "sha256": "51d42ebffcbb70f07a09dc22984e500a16fc49cfd104f1a77372aa153e15a371" }, "downloads": -1, "filename": "awkward1-0.0.14-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "98685fea274b61536840147890c987d4", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 48087, "upload_time": "2019-08-17T16:44:25", "upload_time_iso_8601": "2019-08-17T16:44:25.425640Z", "url": "https://files.pythonhosted.org/packages/7a/32/a4ceb5b37daf58b590e7eb91f65d609d3d9f212a3e7b82cc6061789a0d43/awkward1-0.0.14-cp34-cp34m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2cfee6bb687553f71d43631930d776ce", "sha256": "058951b80a890dc59e42b94e577ffd16f0302369546f716db56786402cb3960c" }, "downloads": -1, "filename": "awkward1-0.0.14-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "2cfee6bb687553f71d43631930d776ce", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 49881, "upload_time": "2019-08-17T16:44:26", "upload_time_iso_8601": "2019-08-17T16:44:26.492833Z", "url": "https://files.pythonhosted.org/packages/86/d2/a31273bd89ebad0d4e4f8784457c80d050946cec880a1e45bd8bbe2a3da3/awkward1-0.0.14-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "843fac6ece67a989cb124dcf2e0ea2df", "sha256": "cbd44d840a446ab46d0c561f1d022daf9d23ed7f57b0132a917adb23e1b49576" }, "downloads": -1, "filename": "awkward1-0.0.14-cp34-cp34m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "843fac6ece67a989cb124dcf2e0ea2df", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 62084, "upload_time": "2019-08-17T16:44:18", "upload_time_iso_8601": "2019-08-17T16:44:18.511870Z", "url": "https://files.pythonhosted.org/packages/dc/ee/636ab7e4589a22b54fbe2ccbf0747c232ad7c99af10d29fbb4a5b805b6f9/awkward1-0.0.14-cp34-cp34m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5edb8843a9e580d8b733a4dedef022c0", "sha256": "2d1b7cbead0c2c147778c169b036cb388b6a2a0a42725747336413166b2becc3" }, "downloads": -1, "filename": "awkward1-0.0.14-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "5edb8843a9e580d8b733a4dedef022c0", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 48082, "upload_time": "2019-08-17T16:44:27", "upload_time_iso_8601": "2019-08-17T16:44:27.319231Z", "url": "https://files.pythonhosted.org/packages/5a/d6/ab2c93cbc61092b33462f306f208f088533fa0bba50c84ef1e5bbb7f314f/awkward1-0.0.14-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7969205c74b3922028ab4e20dc5d81f2", "sha256": "b6d1461d1991e6016f577eb2e23b12419a43fc400a1a4771dccadcab38b189a2" }, "downloads": -1, "filename": "awkward1-0.0.14-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "7969205c74b3922028ab4e20dc5d81f2", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 49941, "upload_time": "2019-08-17T16:44:28", "upload_time_iso_8601": "2019-08-17T16:44:28.166979Z", "url": "https://files.pythonhosted.org/packages/7c/2b/31d1b7cb0c473f91c4eb12ed1e68f8b779b883080e6e7cc1324a13736542/awkward1-0.0.14-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "34759f2b885527177d7f5a8d0bdf304c", "sha256": "daacb4a8150d300f2adf9931526c0837ad637364cb615c24ac48c467e91de721" }, "downloads": -1, "filename": "awkward1-0.0.14-cp35-cp35m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "34759f2b885527177d7f5a8d0bdf304c", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 62105, "upload_time": "2019-08-17T16:44:19", "upload_time_iso_8601": "2019-08-17T16:44:19.570777Z", "url": "https://files.pythonhosted.org/packages/6a/d9/67f93b50fe859fa2dbdd3aaf0d9f8e1f6ff5383aa5551ef7428feb5b8068/awkward1-0.0.14-cp35-cp35m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "70182ffd2df5b3055e611f96190b73fc", "sha256": "52484f69007776f39d00bb4c2ae0992b3d41c2a94473927105fde6ca9a10bb26" }, "downloads": -1, "filename": "awkward1-0.0.14-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "70182ffd2df5b3055e611f96190b73fc", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 48373, "upload_time": "2019-08-17T16:44:05", "upload_time_iso_8601": "2019-08-17T16:44:05.418557Z", "url": "https://files.pythonhosted.org/packages/c8/f4/0285ad655b162e6be42100f3c4ca6244951cee0e87755cf1a4ff2484f89e/awkward1-0.0.14-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "58efb95b1156fbd90689dad2e549307d", "sha256": "e57f2454158a2a9bd7b22f506a4f7a2e1741e7210246a7469de688f827020438" }, "downloads": -1, "filename": "awkward1-0.0.14-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "58efb95b1156fbd90689dad2e549307d", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 53533, "upload_time": "2019-08-17T16:44:00", "upload_time_iso_8601": "2019-08-17T16:44:00.932912Z", "url": "https://files.pythonhosted.org/packages/f1/c4/185e2aaa36cc819c754e71b39b5832d709259072b19420b8ff8c92fa9e77/awkward1-0.0.14-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6d1e9b38cf69247afd2df08ea885546e", "sha256": "37dbd302111877825cd78efa3393e48d971d7f58ae6361bfc635b46f3a3d80fe" }, "downloads": -1, "filename": "awkward1-0.0.14-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "6d1e9b38cf69247afd2df08ea885546e", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 35470, "upload_time": "2019-08-17T16:43:38", "upload_time_iso_8601": "2019-08-17T16:43:38.869262Z", "url": "https://files.pythonhosted.org/packages/59/a8/1a4ff090382ed98f669de80e05dbf912aec3096541f2d13a4a747dabaf8f/awkward1-0.0.14-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ca9636f41d983f7257b4605f442fa055", "sha256": "88bda7c7ee9c2c659b3c266f244b91c24b4426200d926e75068773b7dccda8a1" }, "downloads": -1, "filename": "awkward1-0.0.14-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "ca9636f41d983f7257b4605f442fa055", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 48085, "upload_time": "2019-08-17T16:44:29", "upload_time_iso_8601": "2019-08-17T16:44:29.050771Z", "url": "https://files.pythonhosted.org/packages/dd/be/0c2504a28cd008249d1a39b650fe3f3d8081c9d9833ad0e6d1cb00714392/awkward1-0.0.14-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5ec4c05922d49117b35f350151fa970c", "sha256": "02a9fcbcd6d7629223003dc2cf9e3eb3015563cc205d8f24da0ee32204593989" }, "downloads": -1, "filename": "awkward1-0.0.14-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "5ec4c05922d49117b35f350151fa970c", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 49940, "upload_time": "2019-08-17T16:44:30", "upload_time_iso_8601": "2019-08-17T16:44:30.306514Z", "url": "https://files.pythonhosted.org/packages/44/70/cc064ee219729062bb30a43411efbf22c10855dd9f01ebfd4b8c5beede86/awkward1-0.0.14-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f87fc14a7c88b28cf64a0bfb0c940083", "sha256": "a4b62c29dc50feef91330ec3a00816efb960313e3612b3c2370ac4391ee7d5b4" }, "downloads": -1, "filename": "awkward1-0.0.14-cp36-cp36m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "f87fc14a7c88b28cf64a0bfb0c940083", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 62104, "upload_time": "2019-08-17T16:44:20", "upload_time_iso_8601": "2019-08-17T16:44:20.717464Z", "url": "https://files.pythonhosted.org/packages/9c/b9/3caa0d300e32aabfc559a2d37a4fc50f5d14ba5e783bbe70436aa7e483b5/awkward1-0.0.14-cp36-cp36m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "16491b3d6f4450ba84b6b78fbbbe88d8", "sha256": "b89e63e0a8ed6a11c92dc997812f068ffc421187d3e3e33e8342dad593e970ac" }, "downloads": -1, "filename": "awkward1-0.0.14-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "16491b3d6f4450ba84b6b78fbbbe88d8", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 48420, "upload_time": "2019-08-17T16:45:21", "upload_time_iso_8601": "2019-08-17T16:45:21.522567Z", "url": "https://files.pythonhosted.org/packages/2e/4e/f213f41c4b097e248c6099ab5df53ae8cebaf6d3c34fd3a828145be3c5f6/awkward1-0.0.14-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7346ba1e50a2ff11b1fd0df122eaa042", "sha256": "304a7b6fd501ea0791587bcfa22de0b6f118847ef33bdbebd99bf24701b099ea" }, "downloads": -1, "filename": "awkward1-0.0.14-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "7346ba1e50a2ff11b1fd0df122eaa042", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 53583, "upload_time": "2019-08-17T16:45:08", "upload_time_iso_8601": "2019-08-17T16:45:08.841418Z", "url": "https://files.pythonhosted.org/packages/e7/8e/f9fc120044a596d79548610040d619ce78f8fde403a5c132afa600571d25/awkward1-0.0.14-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fb1d4c4fc2227f3c008b892042035172", "sha256": "755354ed55c7fb6a9188f8f86086b90426086d3861360f073d820b1ef19f37a0" }, "downloads": -1, "filename": "awkward1-0.0.14-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "fb1d4c4fc2227f3c008b892042035172", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 35531, "upload_time": "2019-08-17T16:43:36", "upload_time_iso_8601": "2019-08-17T16:43:36.855095Z", "url": "https://files.pythonhosted.org/packages/3e/fd/3c236f5ef4c12754d391c832de084f43d3cca1409dab40450998c0da4e5a/awkward1-0.0.14-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8c799c8688c35afcee35d2e5d81ab435", "sha256": "bfa0c954fca86ded2de2279b91948613b34cb25d39cba71388e1d923d3ec08b5" }, "downloads": -1, "filename": "awkward1-0.0.14-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "8c799c8688c35afcee35d2e5d81ab435", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 48184, "upload_time": "2019-08-17T16:44:31", "upload_time_iso_8601": "2019-08-17T16:44:31.019974Z", "url": "https://files.pythonhosted.org/packages/d4/8f/faceb3f7d95c119bb45ab841bbc53c6ee6f7bbedd884f5c288bb47f03e54/awkward1-0.0.14-cp37-cp37m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c534293f905495c798f738a38012dc49", "sha256": "4180bd4f411d5a2677bb12b0c3179ed500e49e3dbc158ae4dde311299148009d" }, "downloads": -1, "filename": "awkward1-0.0.14-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "c534293f905495c798f738a38012dc49", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 49889, "upload_time": "2019-08-17T16:44:31", "upload_time_iso_8601": "2019-08-17T16:44:31.954369Z", "url": "https://files.pythonhosted.org/packages/76/be/c45e576f4d0585ff7bc048faabe7d104aff0002b3082c76605b2491e2fd7/awkward1-0.0.14-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4dd34775fea1d1d23bebe5b370dda13f", "sha256": "1a50aba5ee6267f04b080610c82bd0e58223c588775997fbe552ce2e41f0d4f1" }, "downloads": -1, "filename": "awkward1-0.0.14-cp37-cp37m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "4dd34775fea1d1d23bebe5b370dda13f", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 62173, "upload_time": "2019-08-17T16:44:21", "upload_time_iso_8601": "2019-08-17T16:44:21.834088Z", "url": "https://files.pythonhosted.org/packages/81/7d/9f60fe08d8c783eabad1fdf43e46e8f058a952679f76d0540e4fb7288daf/awkward1-0.0.14-cp37-cp37m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c459109557398e1bd6a285835d3694a3", "sha256": "0256aad26eb850fd3485cf87f2139a23977a9fb2bebce794f0fbde0655c96bf2" }, "downloads": -1, "filename": "awkward1-0.0.14-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "c459109557398e1bd6a285835d3694a3", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 48447, "upload_time": "2019-08-17T16:45:12", "upload_time_iso_8601": "2019-08-17T16:45:12.645364Z", "url": "https://files.pythonhosted.org/packages/d2/1b/86bcd96dbdb649186257c6fb809576775a1aafe168f7e22fe70e9614a94e/awkward1-0.0.14-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8da493e2a8d09fd4ffa5ffde2d9fc2eb", "sha256": "f3b91784d4217e1df4f8af0fd18a6cfc5f125a2de93771d977229997607ca40e" }, "downloads": -1, "filename": "awkward1-0.0.14-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "8da493e2a8d09fd4ffa5ffde2d9fc2eb", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 53563, "upload_time": "2019-08-17T16:45:29", "upload_time_iso_8601": "2019-08-17T16:45:29.337173Z", "url": "https://files.pythonhosted.org/packages/f1/c3/3c710754fc896d000d6c0bb1645188b71595f97dc59cdc3acf35321f3ef8/awkward1-0.0.14-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "49f8b3f9e3a454ee2b5546659de41286", "sha256": "7fc0f3b745546e16c0e960046cd70be42d42939ec276a773c6a191c127bc6441" }, "downloads": -1, "filename": "awkward1-0.0.14.tar.gz", "has_sig": false, "md5_digest": "49f8b3f9e3a454ee2b5546659de41286", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 182110, "upload_time": "2019-08-17T16:44:23", "upload_time_iso_8601": "2019-08-17T16:44:23.006572Z", "url": "https://files.pythonhosted.org/packages/32/fc/706f115b9b2debf95bbf21bb08f9409d32c667e9bc6bf9f9438e817312de/awkward1-0.0.14.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.6": [ { "comment_text": "", "digests": { "md5": "cc45db0cece4e9d989f6dde6dac39607", "sha256": "f8999d49f8924c760b519a51e9276d145d740c3590542f815682f0b627d3ed96" }, "downloads": -1, "filename": "awkward1-0.0.6-cp27-cp27m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "cc45db0cece4e9d989f6dde6dac39607", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 48102, "upload_time": "2019-08-16T21:06:09", "upload_time_iso_8601": "2019-08-16T21:06:09.772568Z", "url": "https://files.pythonhosted.org/packages/5d/71/de0f88d56a0e8d9f6df1604b0098967e6ccb14257dbff806a26148fb6c83/awkward1-0.0.6-cp27-cp27m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ef58fe30a3bb5fe418e6e7bda19cfb96", "sha256": "2e58a182b78eff79092376fec2baaf8ccc3903c9d683a5ae80edf3226ce27229" }, "downloads": -1, "filename": "awkward1-0.0.6-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "ef58fe30a3bb5fe418e6e7bda19cfb96", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 49899, "upload_time": "2019-08-16T21:06:14", "upload_time_iso_8601": "2019-08-16T21:06:14.973543Z", "url": "https://files.pythonhosted.org/packages/fb/1f/2ab9fae9ec018bf0b538c36948ce60e00b524627391c09408be211e66695/awkward1-0.0.6-cp27-cp27m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a594ea3fb8e779370a99338836fbad0b", "sha256": "0b6cb19e85e589af36c0f8867264a3fb062fe84b3adff12bfbb198a9b5148e46" }, "downloads": -1, "filename": "awkward1-0.0.6-cp27-cp27m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "a594ea3fb8e779370a99338836fbad0b", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 62357, "upload_time": "2019-08-16T21:06:13", "upload_time_iso_8601": "2019-08-16T21:06:13.668123Z", "url": "https://files.pythonhosted.org/packages/ac/be/cc523c8b8b71377b7aa09f49173c12e63b9b63d4105beaa1ea8fd48d85c5/awkward1-0.0.6-cp27-cp27m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6f3eb5e486a5aaf19a57739ec0fb21c3", "sha256": "fb69a14da0c8832041c5b529639cda9223de94e8620392bf65470bd7022732b4" }, "downloads": -1, "filename": "awkward1-0.0.6-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "6f3eb5e486a5aaf19a57739ec0fb21c3", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 48076, "upload_time": "2019-08-16T21:06:11", "upload_time_iso_8601": "2019-08-16T21:06:11.317174Z", "url": "https://files.pythonhosted.org/packages/95/b4/b32bd777fc4b0b907581db1ff6b0d0b37c8efb968a48f658b45ae4b4c5b3/awkward1-0.0.6-cp34-cp34m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c9117f1c0211bae304ca26e027a29ef1", "sha256": "683c5368888c5c5cca1f6cfd8c83168e8a9e799540b25ab6176bdf86eecbed72" }, "downloads": -1, "filename": "awkward1-0.0.6-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "c9117f1c0211bae304ca26e027a29ef1", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 49870, "upload_time": "2019-08-16T21:06:18", "upload_time_iso_8601": "2019-08-16T21:06:18.209422Z", "url": "https://files.pythonhosted.org/packages/83/ca/3b964c2b29c68e2b86dfb277ff7150063f41f084bf1f4055037e177d4d3a/awkward1-0.0.6-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "60fe9d2f506405ed973a393798596894", "sha256": "bd4d9663db9ef4a17fe099acabb6d1864e56fb0ba9a0cf1ab5f1e871a48b7951" }, "downloads": -1, "filename": "awkward1-0.0.6-cp34-cp34m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "60fe9d2f506405ed973a393798596894", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 62075, "upload_time": "2019-08-16T21:06:14", "upload_time_iso_8601": "2019-08-16T21:06:14.862768Z", "url": "https://files.pythonhosted.org/packages/1e/ab/713dd51fad1c18b30af144d94d39f3dcbe923ab6d9e0d0eab50e4b3f2f14/awkward1-0.0.6-cp34-cp34m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d68b35707cfda87a18c8c62a81eb198a", "sha256": "c540cd3841edfccd26a59b25c065119708c4552b4aa4ad1e59a93a06b1595f1a" }, "downloads": -1, "filename": "awkward1-0.0.6-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "d68b35707cfda87a18c8c62a81eb198a", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 48075, "upload_time": "2019-08-16T21:06:12", "upload_time_iso_8601": "2019-08-16T21:06:12.724020Z", "url": "https://files.pythonhosted.org/packages/cd/f1/b154550fc4ddb8d899d8a8b93938253d8204e2f64884232abd381887aed3/awkward1-0.0.6-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ed6867547c86f699adfea1c60d96ba13", "sha256": "c8068ae1fb041423c96278659031f9af8c2220d11d636225eeea60fef64f319f" }, "downloads": -1, "filename": "awkward1-0.0.6-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "ed6867547c86f699adfea1c60d96ba13", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 49933, "upload_time": "2019-08-16T21:06:20", "upload_time_iso_8601": "2019-08-16T21:06:20.867881Z", "url": "https://files.pythonhosted.org/packages/c1/22/cdd173b1d09afa49f4959fbed7c704692f20da8a2e99ac2dbbbd3b133214/awkward1-0.0.6-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ab0c34ab5e3035ade2de9f134352edde", "sha256": "0e8b70f5e22a7be7c473c777e4a7333a2d2d2d1f6c20ab895979a1f4e3befdc5" }, "downloads": -1, "filename": "awkward1-0.0.6-cp35-cp35m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "ab0c34ab5e3035ade2de9f134352edde", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 62092, "upload_time": "2019-08-16T21:06:17", "upload_time_iso_8601": "2019-08-16T21:06:17.067217Z", "url": "https://files.pythonhosted.org/packages/bf/16/f0fea0ec010c86bc63595cb3e8253cf665b23e9ffa81a19ab270a8d39440/awkward1-0.0.6-cp35-cp35m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "17ba3e91a5f841f1bd21e0e9f866a496", "sha256": "5063c932f4c9a01e64a1c4dab6bb093eb70837191e136a3016f1fe57397d3fc2" }, "downloads": -1, "filename": "awkward1-0.0.6-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "17ba3e91a5f841f1bd21e0e9f866a496", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 48075, "upload_time": "2019-08-16T21:06:14", "upload_time_iso_8601": "2019-08-16T21:06:14.173998Z", "url": "https://files.pythonhosted.org/packages/0c/47/ab7dca843c9b43d65ba7089ad9d18f9ff15a1a41c2a0967c86378644ad0d/awkward1-0.0.6-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e5329b66c658f4a109e128782b9eadc0", "sha256": "f968e065278843a2416a1b777a9a30dd78b97f3e6d1d64aa30e1bb744cad060b" }, "downloads": -1, "filename": "awkward1-0.0.6-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "e5329b66c658f4a109e128782b9eadc0", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 49930, "upload_time": "2019-08-16T21:06:22", "upload_time_iso_8601": "2019-08-16T21:06:22.431231Z", "url": "https://files.pythonhosted.org/packages/2f/34/cc1dc5d363a19b23a72fbc7999c3117951bb51fb77f04bb6e127041ea1aa/awkward1-0.0.6-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4674e11daae166767bb780020c97d61a", "sha256": "c61dd2612ccc7494cc0cda44a4c39611d9ec3fa4ac83ba6022d2ae1e517cd495" }, "downloads": -1, "filename": "awkward1-0.0.6-cp36-cp36m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "4674e11daae166767bb780020c97d61a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 62092, "upload_time": "2019-08-16T21:06:18", "upload_time_iso_8601": "2019-08-16T21:06:18.760427Z", "url": "https://files.pythonhosted.org/packages/a3/76/77a446bc80858c53b42658d68679d1b3e2ac60a06854379c3ab2b58c8a18/awkward1-0.0.6-cp36-cp36m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6ac6a489482ff07c282ca1bfb9dfa924", "sha256": "c53bbc8746b2394154861e9092140c39103913ba3ffb349ba8264d55febba6bb" }, "downloads": -1, "filename": "awkward1-0.0.6-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "6ac6a489482ff07c282ca1bfb9dfa924", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 48173, "upload_time": "2019-08-16T21:06:16", "upload_time_iso_8601": "2019-08-16T21:06:16.095393Z", "url": "https://files.pythonhosted.org/packages/fe/73/a84affe98848ed3db253767e8ea2a533cbbd86177cf877915af36097dc7f/awkward1-0.0.6-cp37-cp37m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "24dce26da91d64666c6005dc6828f258", "sha256": "4b96e553e59c340eac3de8df373ce9369e582ba3ae8f52ea9589f7788b70b6ce" }, "downloads": -1, "filename": "awkward1-0.0.6-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "24dce26da91d64666c6005dc6828f258", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 49878, "upload_time": "2019-08-16T21:06:24", "upload_time_iso_8601": "2019-08-16T21:06:24.362790Z", "url": "https://files.pythonhosted.org/packages/d9/76/5b0d807f1fd4d518367d8d009d8ac78bbf3630492a3248793d1f68ff6814/awkward1-0.0.6-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b98e688896c009ba4fc11cd87d8b95db", "sha256": "90c91a6d681dfc8734e7686c81add9ba71532dc6b8cc207e6bf67c96bda821ee" }, "downloads": -1, "filename": "awkward1-0.0.6-cp37-cp37m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "b98e688896c009ba4fc11cd87d8b95db", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 62164, "upload_time": "2019-08-16T21:06:21", "upload_time_iso_8601": "2019-08-16T21:06:21.566785Z", "url": "https://files.pythonhosted.org/packages/3a/88/f5a00bd653a2e92aab0175844eb2262726dc1a3268461cb604145eae79c9/awkward1-0.0.6-cp37-cp37m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4101a80739bb085dba5656110d7a59f5", "sha256": "a1185567694008450619e7dfa15ae0111d3f205a47bdaa1248cddce232f71fe9" }, "downloads": -1, "filename": "awkward1-0.0.6.tar.gz", "has_sig": false, "md5_digest": "4101a80739bb085dba5656110d7a59f5", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 182083, "upload_time": "2019-08-16T21:06:23", "upload_time_iso_8601": "2019-08-16T21:06:23.649550Z", "url": "https://files.pythonhosted.org/packages/08/a9/9c91d6157f768062a2f56cecc1b0424a880b04de4ec4494bc3f2a58a2402/awkward1-0.0.6.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.0": [ { "comment_text": "", "digests": { "md5": "b58e7ac9c138850bd40c8dbd6827717b", "sha256": "3aeb835485fb45db6abcc0bcfdf6aa6c61fdde9238056f68cd76a1f4e96b8689" }, "downloads": -1, "filename": "awkward1-0.1.0-cp27-cp27m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "b58e7ac9c138850bd40c8dbd6827717b", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 133647, "upload_time": "2019-08-27T22:03:55", "upload_time_iso_8601": "2019-08-27T22:03:55.015866Z", "url": "https://files.pythonhosted.org/packages/88/0e/a8f47b198dfeb4ab5db0b1cd3646b25905a2dc5168454e063dcbd9da8267/awkward1-0.1.0-cp27-cp27m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7d584de5ba67c8598622cf9b55a9b123", "sha256": "0c463242757e8e0090354fb9329e6acf0ec03ce8e5729261a9f2c0104f6eec78" }, "downloads": -1, "filename": "awkward1-0.1.0-cp27-cp27m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "7d584de5ba67c8598622cf9b55a9b123", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 166155, "upload_time": "2019-08-27T22:05:19", "upload_time_iso_8601": "2019-08-27T22:05:19.054866Z", "url": "https://files.pythonhosted.org/packages/3b/c3/7f320561cb8c0d48ee0454bb993ba18a2b0d11831dd681d1bc0c35daef4d/awkward1-0.1.0-cp27-cp27m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a19765ca8e37f08bc7413094bfaafdc4", "sha256": "7de65b2015c88870cbbba45850b075932c18a06d987ce2e552a1288e7daa8c52" }, "downloads": -1, "filename": "awkward1-0.1.0-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "a19765ca8e37f08bc7413094bfaafdc4", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 168420, "upload_time": "2019-08-27T22:05:23", "upload_time_iso_8601": "2019-08-27T22:05:23.035540Z", "url": "https://files.pythonhosted.org/packages/ca/15/e08c79ef3a093a16b18768df61f482cb821763f36beb2f600c8c20592fd7/awkward1-0.1.0-cp27-cp27m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f65a93763395bd1eae793286c77b8487", "sha256": "794dac1c0e9155959401a14ccdcbbaa43297977e2b781bc967c765ee90fe2ca0" }, "downloads": -1, "filename": "awkward1-0.1.0-cp27-cp27m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "f65a93763395bd1eae793286c77b8487", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 193404, "upload_time": "2019-08-27T22:05:20", "upload_time_iso_8601": "2019-08-27T22:05:20.440548Z", "url": "https://files.pythonhosted.org/packages/93/32/4839842822158e5f1173751f01e811dd053871f63b06ba1cf40de1b6b2d0/awkward1-0.1.0-cp27-cp27m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "89575a383fd757e879f3d036083f19c0", "sha256": "dcc8b32db2276db8c650cba1016117ff9aff72f868a6a3bc9282d9188b40fd38" }, "downloads": -1, "filename": "awkward1-0.1.0-cp27-cp27mu-manylinux1_i686.whl", "has_sig": false, "md5_digest": "89575a383fd757e879f3d036083f19c0", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 166166, "upload_time": "2019-08-27T22:05:20", "upload_time_iso_8601": "2019-08-27T22:05:20.383457Z", "url": "https://files.pythonhosted.org/packages/c3/6e/545f1db64118de4404e8addb6cdf7fd4aa959236e97d1bf612769566cb32/awkward1-0.1.0-cp27-cp27mu-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "00c2574a397ce1f3ed754609a4359ce9", "sha256": "7ba7521d14d03f2f287fdee3884fff2d503e9eeb05aa0e6d303cf781e3eff7cf" }, "downloads": -1, "filename": "awkward1-0.1.0-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "00c2574a397ce1f3ed754609a4359ce9", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 168434, "upload_time": "2019-08-27T22:05:28", "upload_time_iso_8601": "2019-08-27T22:05:28.523473Z", "url": "https://files.pythonhosted.org/packages/a7/cb/ba5b9a74edfca995ed7d07cb62cb504ac3a7847a10d0a0448aeca5bcbd60/awkward1-0.1.0-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d29d13bd77a421680aa37796f5f1a17e", "sha256": "bad11a5f67fb15cbceaad711cd7fbe990af617a9b0b58d503fb93ab23df199c6" }, "downloads": -1, "filename": "awkward1-0.1.0-cp27-cp27mu-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "d29d13bd77a421680aa37796f5f1a17e", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 193420, "upload_time": "2019-08-27T22:05:22", "upload_time_iso_8601": "2019-08-27T22:05:22.744976Z", "url": "https://files.pythonhosted.org/packages/8a/fd/cb62dec579f30b769d600eb9e00e269a4a009958878b0dec8df209d52fc6/awkward1-0.1.0-cp27-cp27mu-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1d83cae60f4de86ef3fdde51af80721f", "sha256": "fcf20b1c6e854d41fbd5144975a434df334729181318d099a991de67e27444d7" }, "downloads": -1, "filename": "awkward1-0.1.0-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "1d83cae60f4de86ef3fdde51af80721f", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 121016, "upload_time": "2019-08-27T22:05:21", "upload_time_iso_8601": "2019-08-27T22:05:21.815669Z", "url": "https://files.pythonhosted.org/packages/66/36/f3eacff1588575fe79a10cd33baf40811c7e8f50a1306a45d4534e5ec360/awkward1-0.1.0-cp27-cp27m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ee93171bea3277269ac6d73d5b4ffb7d", "sha256": "566f86f65f41df6ab55b4419a1eb4752d90c1e3aaf10fb43838ed1f932b4084c" }, "downloads": -1, "filename": "awkward1-0.1.0-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "ee93171bea3277269ac6d73d5b4ffb7d", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 141644, "upload_time": "2019-08-27T22:05:32", "upload_time_iso_8601": "2019-08-27T22:05:32.230583Z", "url": "https://files.pythonhosted.org/packages/f7/c4/3471be6000c270423e8663a87fdc3e5868e3bb478119f8adf88da65c7101/awkward1-0.1.0-cp27-cp27m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b2cd15824399a3b75393c9284fc40553", "sha256": "f6a6de94621beccbecf51af1aa1367ab424d9135362fe9bdf9cef7431ecde8f8" }, "downloads": -1, "filename": "awkward1-0.1.0-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "b2cd15824399a3b75393c9284fc40553", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 165551, "upload_time": "2019-08-27T22:05:21", "upload_time_iso_8601": "2019-08-27T22:05:21.718780Z", "url": "https://files.pythonhosted.org/packages/ef/8e/250952a1e40cdef115e31cf30ca2fa2b0d007df399dc461c873bef90c2ad/awkward1-0.1.0-cp34-cp34m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "da38f35dc141a6bdbb1f7718bf350f90", "sha256": "d53b8c116fb782135ca20fff612b350fdfba039bb6c094274f06bd0ffc3521eb" }, "downloads": -1, "filename": "awkward1-0.1.0-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "da38f35dc141a6bdbb1f7718bf350f90", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 168055, "upload_time": "2019-08-27T22:05:31", "upload_time_iso_8601": "2019-08-27T22:05:31.894782Z", "url": "https://files.pythonhosted.org/packages/bf/c5/d6a532bc124647ef2da05dee5882df843e94766f4c80c0ed278f7bd0e280/awkward1-0.1.0-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "31c270ebdc97778d38d6adf67ea8f8f1", "sha256": "ad1bf622d4c475e5a7548350a3a994ce2815a0e300bf3e05613626b0c572ec91" }, "downloads": -1, "filename": "awkward1-0.1.0-cp34-cp34m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "31c270ebdc97778d38d6adf67ea8f8f1", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 192799, "upload_time": "2019-08-27T22:05:26", "upload_time_iso_8601": "2019-08-27T22:05:26.517388Z", "url": "https://files.pythonhosted.org/packages/6e/af/f7b87d4491334244131e99db3c71b327b2ed1b208854642ffc365879a233/awkward1-0.1.0-cp34-cp34m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b3fe0cc4de947ad301279fd25741e68c", "sha256": "8756f66f94e38149dc2a105d4a8f6c9b59aa3486942e5d1f47d90322abfdc34c" }, "downloads": -1, "filename": "awkward1-0.1.0-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "b3fe0cc4de947ad301279fd25741e68c", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 164839, "upload_time": "2019-08-27T22:05:24", "upload_time_iso_8601": "2019-08-27T22:05:24.076553Z", "url": "https://files.pythonhosted.org/packages/db/c0/3d35abe1931d509acf5da1c07bd328891b9204163d55048c9b09c4feff1f/awkward1-0.1.0-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7a33a0228cee3f1e5e35e38860a776b8", "sha256": "04f7425a6ca5019efa72a20d5206ce59aba65e5e9384e09950d8cc4e322a32f0" }, "downloads": -1, "filename": "awkward1-0.1.0-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "7a33a0228cee3f1e5e35e38860a776b8", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 168179, "upload_time": "2019-08-27T22:05:35", "upload_time_iso_8601": "2019-08-27T22:05:35.306380Z", "url": "https://files.pythonhosted.org/packages/67/3e/334f67b8323822511f14350a60c7188a5aced140b9594d1357ea4c1326ca/awkward1-0.1.0-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bdebdc2e00a9a1102a7a56eaa9431d70", "sha256": "2a06e51e987ef0c31a7fcfcb244cab4744994fb70b6f717c53fd4da02ba71e61" }, "downloads": -1, "filename": "awkward1-0.1.0-cp35-cp35m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "bdebdc2e00a9a1102a7a56eaa9431d70", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 192819, "upload_time": "2019-08-27T22:05:30", "upload_time_iso_8601": "2019-08-27T22:05:30.046407Z", "url": "https://files.pythonhosted.org/packages/5d/18/df6a2a63fb3dd22cd14a21290d9d8469d76447572c003c1bd13ccdb0a8b7/awkward1-0.1.0-cp35-cp35m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d9b5c7d6b9a443f04037ab9363d4b816", "sha256": "2130e14301156a8b2fb65475a826152267538e3b8461475757e11d1020375d23" }, "downloads": -1, "filename": "awkward1-0.1.0-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "d9b5c7d6b9a443f04037ab9363d4b816", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 120036, "upload_time": "2019-08-27T22:05:34", "upload_time_iso_8601": "2019-08-27T22:05:34.213833Z", "url": "https://files.pythonhosted.org/packages/51/3f/de52d6f1a7134763b7b84f11645284a0a6d044ff579b43657095ab4686d7/awkward1-0.1.0-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c7c5f8c925cadc031260edb46622dd4f", "sha256": "b7ee677eb9aec0e902c79d71c2ab8457989659a3803b3fe4cd6444cecb89d1af" }, "downloads": -1, "filename": "awkward1-0.1.0-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "c7c5f8c925cadc031260edb46622dd4f", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 140546, "upload_time": "2019-08-27T22:06:22", "upload_time_iso_8601": "2019-08-27T22:06:22.139106Z", "url": "https://files.pythonhosted.org/packages/38/2e/434cd1d6a839d1d2879617493accb92bf3a4a712acf23c06f73e79ba7048/awkward1-0.1.0-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f916d633929c002fbe477e2357bd535d", "sha256": "2491587411eabb2335a0280f81e2acef790c0453be2638d2f041fd29d07bd94f" }, "downloads": -1, "filename": "awkward1-0.1.0-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "f916d633929c002fbe477e2357bd535d", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 132856, "upload_time": "2019-08-27T22:04:03", "upload_time_iso_8601": "2019-08-27T22:04:03.295302Z", "url": "https://files.pythonhosted.org/packages/d7/98/a05ce6022b924a40386544bdae7c97dd6bbec06854c8f52b1937b08d1098/awkward1-0.1.0-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b69cf6ff742129b30648332367fcab34", "sha256": "0134308f7379000f8c2981d612846dc084362d1f4f0346494f64c13479491a45" }, "downloads": -1, "filename": "awkward1-0.1.0-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "b69cf6ff742129b30648332367fcab34", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 164833, "upload_time": "2019-08-27T22:05:27", "upload_time_iso_8601": "2019-08-27T22:05:27.649135Z", "url": "https://files.pythonhosted.org/packages/33/de/24c0e51a01544a42fafc1a54317f77a6f316f529b106a6d345e7f2d3e07d/awkward1-0.1.0-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dda1be03879d2e7ee312644f3b1e8a64", "sha256": "b956433054fcb16721cace473980b759223386348deddb90a22fbd0d68289c10" }, "downloads": -1, "filename": "awkward1-0.1.0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "dda1be03879d2e7ee312644f3b1e8a64", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 168180, "upload_time": "2019-08-27T22:05:38", "upload_time_iso_8601": "2019-08-27T22:05:38.282781Z", "url": "https://files.pythonhosted.org/packages/c0/5a/364f7dc776f97ca22c76eb439f656b602e4990a33e4de4f3c0c7a5d6fbad/awkward1-0.1.0-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "01d8e9a75937a6ce175fb0250670ec9f", "sha256": "cd4d7b5ffc118975ab110f3194e627544cf93c110c50cf83f41b415a3ec7f1bb" }, "downloads": -1, "filename": "awkward1-0.1.0-cp36-cp36m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "01d8e9a75937a6ce175fb0250670ec9f", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 192822, "upload_time": "2019-08-27T22:05:33", "upload_time_iso_8601": "2019-08-27T22:05:33.189861Z", "url": "https://files.pythonhosted.org/packages/06/a8/3e8e52152a66e5921a5c8e1b90d8c550285775be4710ce0994ae9121df7c/awkward1-0.1.0-cp36-cp36m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3bf3eea0dbc847ec4650a1731216a22d", "sha256": "38538b559b3cb6ec2c658b9f2fc7371b45c2b1aa5b6ae9366c0cd5168c30dca8" }, "downloads": -1, "filename": "awkward1-0.1.0-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "3bf3eea0dbc847ec4650a1731216a22d", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 120075, "upload_time": "2019-08-27T22:06:04", "upload_time_iso_8601": "2019-08-27T22:06:04.306395Z", "url": "https://files.pythonhosted.org/packages/5f/8a/c61d33f453eed779454b8c496a2cc40cdf03250225727ee671b4072ea138/awkward1-0.1.0-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "23221574db37e33a092341081ccae0a3", "sha256": "05c3776b7b26cb31540874455f7a3947f81c9bcea455733737c0c9eafae29e91" }, "downloads": -1, "filename": "awkward1-0.1.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "23221574db37e33a092341081ccae0a3", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 140589, "upload_time": "2019-08-27T22:06:06", "upload_time_iso_8601": "2019-08-27T22:06:06.852894Z", "url": "https://files.pythonhosted.org/packages/0c/be/d2684f54a458e2f689ac6cde898aa7dec575841a46ae87058e6cff90c527/awkward1-0.1.0-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "31547980c189d83ac156aa15cece1271", "sha256": "ba695e322af8b0eba9d8c100b73fd2f8ff90bf325c714eabffbd05f08cc44985" }, "downloads": -1, "filename": "awkward1-0.1.0-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "31547980c189d83ac156aa15cece1271", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 133072, "upload_time": "2019-08-27T22:04:07", "upload_time_iso_8601": "2019-08-27T22:04:07.383052Z", "url": "https://files.pythonhosted.org/packages/a0/f0/52223b5d9ab3f610af400afbece64d085511d1918edea5ca9363fffe3fec/awkward1-0.1.0-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4171c3ac695ee9a69b407d671ee08078", "sha256": "39dbf1311219e9b481ee90834d4ad9190a239442741f6cd0fb48cc6ee1c81c5d" }, "downloads": -1, "filename": "awkward1-0.1.0-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "4171c3ac695ee9a69b407d671ee08078", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 165780, "upload_time": "2019-08-27T22:05:31", "upload_time_iso_8601": "2019-08-27T22:05:31.025202Z", "url": "https://files.pythonhosted.org/packages/26/66/79195e1719fde5bdd2a23d579cdd419c3d9ad6269aca555b7224c935147c/awkward1-0.1.0-cp37-cp37m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "66ea0592a45dc807e2c4c7ab825af235", "sha256": "1892a2953e1b805b6c9bd6368fb15e6a6f797b196ecec3f788d787dac61e313f" }, "downloads": -1, "filename": "awkward1-0.1.0-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "66ea0592a45dc807e2c4c7ab825af235", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 168127, "upload_time": "2019-08-27T22:05:40", "upload_time_iso_8601": "2019-08-27T22:05:40.365814Z", "url": "https://files.pythonhosted.org/packages/59/d4/36247f6644fad5593d8c09816eeaba83673fb126fb3729c862459d3b00b9/awkward1-0.1.0-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "528d43af82f10ec083f6ad887dd545d1", "sha256": "3297b62ffb89ebb8ba5d4f0d0297365174be230a921be71b5778dbe2066ee1a7" }, "downloads": -1, "filename": "awkward1-0.1.0-cp37-cp37m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "528d43af82f10ec083f6ad887dd545d1", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 192890, "upload_time": "2019-08-27T22:05:39", "upload_time_iso_8601": "2019-08-27T22:05:39.396884Z", "url": "https://files.pythonhosted.org/packages/ce/39/31c5c92adb1e91f5714310cd4e540f949d2b6746b3358d6d75844dc9b337/awkward1-0.1.0-cp37-cp37m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3558f7185a9a462e36c35d3402f4a965", "sha256": "5a1de9cb5f86ac32ef018b367cda5b8fdecc07c9a40ce91fec5ab5f0ce1d8326" }, "downloads": -1, "filename": "awkward1-0.1.0-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "3558f7185a9a462e36c35d3402f4a965", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 120180, "upload_time": "2019-08-27T22:06:25", "upload_time_iso_8601": "2019-08-27T22:06:25.110181Z", "url": "https://files.pythonhosted.org/packages/57/0d/df9643b58bc3b5444a9de52306d875c6d889a8519dda791c99b0e1cff297/awkward1-0.1.0-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4c18ba203f12415d6751719b07c40633", "sha256": "1f6a267b57d05bb584d3e634632973946b236ceac44390ce6470125283d1c9cc" }, "downloads": -1, "filename": "awkward1-0.1.0-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "4c18ba203f12415d6751719b07c40633", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 140598, "upload_time": "2019-08-27T22:07:16", "upload_time_iso_8601": "2019-08-27T22:07:16.094712Z", "url": "https://files.pythonhosted.org/packages/e9/c5/43cf420ba4fc758e18a34d1925806cb99d3bd4e3bb183b180814cc940b56/awkward1-0.1.0-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f41257a91c467c0dca03dce9055899b3", "sha256": "8e3a6c1e6aad54667949287e8b270bc8568924ce0d2ebd2b09856654651c4aef" }, "downloads": -1, "filename": "awkward1-0.1.0.tar.gz", "has_sig": false, "md5_digest": "f41257a91c467c0dca03dce9055899b3", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 196019, "upload_time": "2019-08-27T22:05:41", "upload_time_iso_8601": "2019-08-27T22:05:41.442784Z", "url": "https://files.pythonhosted.org/packages/88/ca/d249da5f67a725fab1c16c46f228c21fdcb0eeca7268e7b23264455bb480/awkward1-0.1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.128": [ { "comment_text": "", "digests": { "md5": "3d9a2427c31e09990f0868097be78041", "sha256": "e3b915750c81a006938479096c5c4048311bc2c7e28b920f22c98e5ae03640b7" }, "downloads": -1, "filename": "awkward1-0.1.128-cp27-cp27m-macosx_10_14_x86_64.whl", "has_sig": false, "md5_digest": "3d9a2427c31e09990f0868097be78041", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 4574623, "upload_time": "2020-02-29T15:32:40", "upload_time_iso_8601": "2020-02-29T15:32:40.337677Z", "url": "https://files.pythonhosted.org/packages/fc/95/d8d4721a701184a723f77545ec098fa2e48fc279702aa09746a5814ade47/awkward1-0.1.128-cp27-cp27m-macosx_10_14_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8dcac9b3916c6d63fd18ae8e0235ac67", "sha256": "08ed7c26be19fa9c7418bd89bf485170d59e90c291b74a1abc3a9feb0a1defaa" }, "downloads": -1, "filename": "awkward1-0.1.128-cp27-cp27m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "8dcac9b3916c6d63fd18ae8e0235ac67", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 4689885, "upload_time": "2020-02-29T15:43:29", "upload_time_iso_8601": "2020-02-29T15:43:29.123778Z", "url": "https://files.pythonhosted.org/packages/85/39/00244d4e96b7c55066aed5129100964b4335ad53df90359c5f4b1ac3764f/awkward1-0.1.128-cp27-cp27m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c08bb30a9aacadb60fb24fdaef163912", "sha256": "1856f4177f2a97f635d139fc4dfb39ec7ef746c0ff904f30d2f39648a72d3ecd" }, "downloads": -1, "filename": "awkward1-0.1.128-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "c08bb30a9aacadb60fb24fdaef163912", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 4594119, "upload_time": "2020-02-29T15:46:14", "upload_time_iso_8601": "2020-02-29T15:46:14.249306Z", "url": "https://files.pythonhosted.org/packages/a4/c3/92329316d53b7536b79f9444bded9a5a880a4f989af838ac89e1213410d0/awkward1-0.1.128-cp27-cp27m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0e5693ea932be17a5f3a9b72ed5c48fd", "sha256": "5510378c0994674cc6c2c2e76270c7b1c0533932a7dd6c7e5de4c9bd0550d8eb" }, "downloads": -1, "filename": "awkward1-0.1.128-cp27-cp27m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "0e5693ea932be17a5f3a9b72ed5c48fd", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 4734846, "upload_time": "2020-02-29T15:42:44", "upload_time_iso_8601": "2020-02-29T15:42:44.960345Z", "url": "https://files.pythonhosted.org/packages/84/56/bd36d9977fe83335a9ed951724d1cc069be745d0d0ba342499d57838cce7/awkward1-0.1.128-cp27-cp27m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d58c1e6dd9126faf55ed5f50b4e4259e", "sha256": "2fe9067be2c468c951cddce9a5b7754c4228d470ef224239211ec1a18cdee8f8" }, "downloads": -1, "filename": "awkward1-0.1.128-cp27-cp27mu-manylinux1_i686.whl", "has_sig": false, "md5_digest": "d58c1e6dd9126faf55ed5f50b4e4259e", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 4689980, "upload_time": "2020-02-29T15:43:30", "upload_time_iso_8601": "2020-02-29T15:43:30.779828Z", "url": "https://files.pythonhosted.org/packages/65/11/47a90248fcdd8e9f7151fc8098a0b8401c6cdbdf18293ed0f39507c3387b/awkward1-0.1.128-cp27-cp27mu-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "787bee6e4a8fea6efec554261a4d2f17", "sha256": "3a480c99734fdbaa174b4fff54cf8f99a9fc7236623dd272cbc5df67a140ca27" }, "downloads": -1, "filename": "awkward1-0.1.128-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "787bee6e4a8fea6efec554261a4d2f17", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 4594185, "upload_time": "2020-02-29T15:46:15", "upload_time_iso_8601": "2020-02-29T15:46:15.950965Z", "url": "https://files.pythonhosted.org/packages/90/ec/ee984ba2ac4f855b180dd0983c851b5ddbafc8360978995540c463b5b256/awkward1-0.1.128-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3f9b27b6c3ead85a9dbf59afea92aa01", "sha256": "67153f2c62580b679ecf10b4948edc9d34efe0a84d9092c178accc4ec3979bbf" }, "downloads": -1, "filename": "awkward1-0.1.128-cp27-cp27mu-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "3f9b27b6c3ead85a9dbf59afea92aa01", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 4734860, "upload_time": "2020-02-29T15:42:46", "upload_time_iso_8601": "2020-02-29T15:42:46.957900Z", "url": "https://files.pythonhosted.org/packages/bd/e1/8b375ab3f78f40fee3b8e85c7528f4c9bf63390890ea4602430c5cc60bef/awkward1-0.1.128-cp27-cp27mu-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c43af3faf6d04c87b7ec44789d4a51cb", "sha256": "825a266b0dafb84d105623bc58ffe77a82c0a5db32edeb497581e48510e5bd00" }, "downloads": -1, "filename": "awkward1-0.1.128-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "c43af3faf6d04c87b7ec44789d4a51cb", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 3669906, "upload_time": "2020-02-29T15:32:34", "upload_time_iso_8601": "2020-02-29T15:32:34.659830Z", "url": "https://files.pythonhosted.org/packages/a9/28/ec3a73e1298f884085d8ae53a38793698cd4fc0356503d5c571ff1c3b8ca/awkward1-0.1.128-cp27-cp27m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3709f2882c15781c22aa7c1273871bfa", "sha256": "c498194c27d71300319811efe1e172110a95ba8e9d9c2787f9c50415714c65f6" }, "downloads": -1, "filename": "awkward1-0.1.128-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "3709f2882c15781c22aa7c1273871bfa", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 4874848, "upload_time": "2020-02-29T15:32:51", "upload_time_iso_8601": "2020-02-29T15:32:51.294106Z", "url": "https://files.pythonhosted.org/packages/9b/95/519c9f33c65114f46dd8c92673b6eb75311b2b0dff8582d46a9dc2338ce3/awkward1-0.1.128-cp27-cp27m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a52c42cfef9400441f47ed7b97582c3b", "sha256": "2583d19dac845c2b88d8dc8289212421ce8c30de779b4c7a580e64db310add93" }, "downloads": -1, "filename": "awkward1-0.1.128-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "a52c42cfef9400441f47ed7b97582c3b", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 4686540, "upload_time": "2020-02-29T15:43:32", "upload_time_iso_8601": "2020-02-29T15:43:32.460750Z", "url": "https://files.pythonhosted.org/packages/88/60/fe94e71f74d32553f8f4c76b98a1092706f077ff03a646f311b9348fc5b8/awkward1-0.1.128-cp34-cp34m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "509d47fe9c1d6fb4137c756f66aed007", "sha256": "388d93f343c89ed5b6be9957726757c417fa7f19845010c60627d49ddc0cdec6" }, "downloads": -1, "filename": "awkward1-0.1.128-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "509d47fe9c1d6fb4137c756f66aed007", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 4594186, "upload_time": "2020-02-29T15:46:17", "upload_time_iso_8601": "2020-02-29T15:46:17.869608Z", "url": "https://files.pythonhosted.org/packages/ae/1f/5fa15f2b30060a22db4302fba36b9f32a04602c2aa601538262fd6a8d2c9/awkward1-0.1.128-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "56e548bac40f1e313c4842bf731d5972", "sha256": "a4567af29513fd49fe2c223c70d8ac9fc253534fc01bb506788d76703fd25808" }, "downloads": -1, "filename": "awkward1-0.1.128-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "56e548bac40f1e313c4842bf731d5972", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 4685962, "upload_time": "2020-02-29T15:43:34", "upload_time_iso_8601": "2020-02-29T15:43:34.040753Z", "url": "https://files.pythonhosted.org/packages/ad/b0/2d1b06e0496fae30d174fd490ca36a9ad954bc31a5e491c36227a103c53b/awkward1-0.1.128-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e3d5339eb8fe4f293edd0ea821020d03", "sha256": "49b1d3fd52a38a827efafd9f58407b330fca86d8b55b79380d843275cefe732b" }, "downloads": -1, "filename": "awkward1-0.1.128-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "e3d5339eb8fe4f293edd0ea821020d03", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 4592974, "upload_time": "2020-02-29T15:46:20", "upload_time_iso_8601": "2020-02-29T15:46:20.104173Z", "url": "https://files.pythonhosted.org/packages/04/56/21c61963811eea50b5ea56898a46fee0e990334bbd1c7fb58669dfe3e01f/awkward1-0.1.128-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5a66345af7ede68394490ad1efbb938e", "sha256": "2f4c4c44e5169a53b1b09c5116072ff5c03e7d5a1436bbec6e128cab75129e0c" }, "downloads": -1, "filename": "awkward1-0.1.128-cp35-cp35m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "5a66345af7ede68394490ad1efbb938e", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 4731796, "upload_time": "2020-02-29T15:42:48", "upload_time_iso_8601": "2020-02-29T15:42:48.931773Z", "url": "https://files.pythonhosted.org/packages/e7/26/adb581fe1d9e213f2f4c55f4df394a70fd4aedde19e84ca103fbd501a57f/awkward1-0.1.128-cp35-cp35m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e41343e3124a2b0d45cfe1877fac25e6", "sha256": "4ed078e1b72397941fbc3e7c197420582285832db1aa983c97f5fc2679663e2f" }, "downloads": -1, "filename": "awkward1-0.1.128-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "e41343e3124a2b0d45cfe1877fac25e6", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 3668635, "upload_time": "2020-02-29T15:32:48", "upload_time_iso_8601": "2020-02-29T15:32:48.036099Z", "url": "https://files.pythonhosted.org/packages/f7/6f/b2b8d31b2beba73ae3ab3cfb56a151a2433e9c13d4fb232585cf32ab9d01/awkward1-0.1.128-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "254177f8026ea2e98a15a81f2aacf1c8", "sha256": "cd3afbec07ec7a4d4fbf31015deaf224c260a61cc393c9b9cd14b852dfe500e4" }, "downloads": -1, "filename": "awkward1-0.1.128-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "254177f8026ea2e98a15a81f2aacf1c8", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 4871218, "upload_time": "2020-02-29T15:36:25", "upload_time_iso_8601": "2020-02-29T15:36:25.601629Z", "url": "https://files.pythonhosted.org/packages/b1/84/8ddc4ab38284f5f6d01da9aa53881a1981544df8e8e1f5f9d06aaab0de6a/awkward1-0.1.128-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cc3d20d2ce4e34873f66baf6ae5f8c59", "sha256": "4e16b03237d5339b853e4cc3c6faf074fe1cb256d967246ac82b8d684913cbc2" }, "downloads": -1, "filename": "awkward1-0.1.128-cp36-cp36m-macosx_10_14_x86_64.whl", "has_sig": false, "md5_digest": "cc3d20d2ce4e34873f66baf6ae5f8c59", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 4573808, "upload_time": "2020-02-29T15:32:55", "upload_time_iso_8601": "2020-02-29T15:32:55.687573Z", "url": "https://files.pythonhosted.org/packages/24/03/20150d9756634184f5700452117d79596a1bceada9b033b10af5d9696eb3/awkward1-0.1.128-cp36-cp36m-macosx_10_14_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f8b93cd7565f6d219d26a91ebb4e14a3", "sha256": "5e1ce1898df9b4bda18c8571f5dc14d455176ceceaa63e2c684be278f1be630d" }, "downloads": -1, "filename": "awkward1-0.1.128-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "f8b93cd7565f6d219d26a91ebb4e14a3", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 4685967, "upload_time": "2020-02-29T15:43:35", "upload_time_iso_8601": "2020-02-29T15:43:35.756153Z", "url": "https://files.pythonhosted.org/packages/49/6b/d96e65e870b89c5117a83085bf413e2c599d6d64449300690af05d8454a0/awkward1-0.1.128-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a454f6c90b8234f62d0ca16fbfb5c573", "sha256": "e01d786de8b622d0b2f782aaa50d7767aa6f53c9fdac123f2adc9fbc667fbab9" }, "downloads": -1, "filename": "awkward1-0.1.128-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "a454f6c90b8234f62d0ca16fbfb5c573", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 4592983, "upload_time": "2020-02-29T15:46:22", "upload_time_iso_8601": "2020-02-29T15:46:22.160400Z", "url": "https://files.pythonhosted.org/packages/18/4f/fa35a8d7ebdadb229570ac4213e9ae3ad0b3656b148f6522cb4ba9f08822/awkward1-0.1.128-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e5a04086cae321c1f9db40407221fc81", "sha256": "1002cfd4168bba2bec02c08e14f1c9e5787b202cf561779bff4d40f84a4445cf" }, "downloads": -1, "filename": "awkward1-0.1.128-cp36-cp36m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "e5a04086cae321c1f9db40407221fc81", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 4731791, "upload_time": "2020-02-29T15:42:50", "upload_time_iso_8601": "2020-02-29T15:42:50.752219Z", "url": "https://files.pythonhosted.org/packages/01/ba/e3dba6ed03977996e3b6aa29c314aa0109e59aa24f4bf13876a49c2794f2/awkward1-0.1.128-cp36-cp36m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c752efb994350fd8de88e8c7018a6b04", "sha256": "dccbb3ef65f78afab5efb90fe76497030ed8a1d12ac913f87ab814991972a274" }, "downloads": -1, "filename": "awkward1-0.1.128-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "c752efb994350fd8de88e8c7018a6b04", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 3668665, "upload_time": "2020-02-29T15:36:23", "upload_time_iso_8601": "2020-02-29T15:36:23.373350Z", "url": "https://files.pythonhosted.org/packages/c1/be/c8200262ada08107c0a57117f96c2b1ebae7d1e41dbe34eb3fa12925b410/awkward1-0.1.128-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "837fce90bad71845334153ac4fe95e81", "sha256": "0c2907e81c12a7c59e20664b5a4e8033f451135466b27ff6744b6bd09744f6ee" }, "downloads": -1, "filename": "awkward1-0.1.128-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "837fce90bad71845334153ac4fe95e81", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 4871228, "upload_time": "2020-02-29T15:37:05", "upload_time_iso_8601": "2020-02-29T15:37:05.657324Z", "url": "https://files.pythonhosted.org/packages/58/c0/ca38fb6b7998a8ae285332d0ae5085beb3245f12b0317bd6e245132e1736/awkward1-0.1.128-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1d9f41037145992cdb70a007061e6db3", "sha256": "47eaf3e70f9fd9f1d603cab64e6a037a6e21d5d0831585c94103af69ab6bdbcb" }, "downloads": -1, "filename": "awkward1-0.1.128-cp37-cp37m-macosx_10_14_x86_64.whl", "has_sig": false, "md5_digest": "1d9f41037145992cdb70a007061e6db3", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 4573814, "upload_time": "2020-02-29T15:32:59", "upload_time_iso_8601": "2020-02-29T15:32:59.853805Z", "url": "https://files.pythonhosted.org/packages/93/28/ff7a4a5511d0ef62445c3ef97a2adcc88ba4dea1fdbda6a0c95e023e01da/awkward1-0.1.128-cp37-cp37m-macosx_10_14_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f5275173470b2d136831f6156110daf2", "sha256": "848582dbda4c559e38000e779d3fe7a0f797d6c93775092f839b666c93bdbb15" }, "downloads": -1, "filename": "awkward1-0.1.128-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "f5275173470b2d136831f6156110daf2", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 4686760, "upload_time": "2020-02-29T15:43:37", "upload_time_iso_8601": "2020-02-29T15:43:37.757880Z", "url": "https://files.pythonhosted.org/packages/23/6c/c1547346b6bfdb6409918167045c8a4acb28748d5db11c9913842867dca1/awkward1-0.1.128-cp37-cp37m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0a3bd8d6495c7bd353e122754060fdae", "sha256": "77cf1d20b329aaaaecde9394707d1e0c5a83e99a015b360fc9ba126a2dbfffc3" }, "downloads": -1, "filename": "awkward1-0.1.128-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "0a3bd8d6495c7bd353e122754060fdae", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 4597425, "upload_time": "2020-02-29T15:46:24", "upload_time_iso_8601": "2020-02-29T15:46:24.210827Z", "url": "https://files.pythonhosted.org/packages/46/31/eaa781b390eaa7df1dbff7d5bd4604ecc3c147431f4c63ea92515f5c1ec9/awkward1-0.1.128-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "505680889243eba7ce046f68d25dff2c", "sha256": "6f4f9fe71e09629554ccdac34ea3502b81377c8522caef1aa089d0923a2a87ae" }, "downloads": -1, "filename": "awkward1-0.1.128-cp37-cp37m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "505680889243eba7ce046f68d25dff2c", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 4731712, "upload_time": "2020-02-29T15:42:52", "upload_time_iso_8601": "2020-02-29T15:42:52.597978Z", "url": "https://files.pythonhosted.org/packages/7d/86/8f4fdbe4609705af8a548235b8bd3c992c3195e2f795e1c52bd0aec4f5a4/awkward1-0.1.128-cp37-cp37m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4746ce7f5f0da668be4fdc9bdcb66a99", "sha256": "5505875c6fc2ee0c4fee8732df435916dae092feacde159cf00dea5e2f1d4412" }, "downloads": -1, "filename": "awkward1-0.1.128-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "4746ce7f5f0da668be4fdc9bdcb66a99", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 3668606, "upload_time": "2020-02-29T15:36:38", "upload_time_iso_8601": "2020-02-29T15:36:38.976164Z", "url": "https://files.pythonhosted.org/packages/7a/5e/6b21b7053ca709497647f6bcf0f1dd601c9a8d217f8177556dd52e34da66/awkward1-0.1.128-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6a09cda838558270e11593b51ce8af39", "sha256": "e44849385d868c968e89a29e13a9d27bfe31b8fdc75dd847ed879e24929a0cc4" }, "downloads": -1, "filename": "awkward1-0.1.128-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "6a09cda838558270e11593b51ce8af39", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 4871213, "upload_time": "2020-02-29T15:36:56", "upload_time_iso_8601": "2020-02-29T15:36:56.546329Z", "url": "https://files.pythonhosted.org/packages/ba/62/335cf969ff27b74c36f30c523248aa469289f1bd0b689281e67e9167d26d/awkward1-0.1.128-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d9389409025be7083b57f7a11a4cfb05", "sha256": "d5ecee264ffe0162cd86362729d3da430e7501109b89b43814228b47e74c268d" }, "downloads": -1, "filename": "awkward1-0.1.128-cp38-cp38-macosx_10_14_x86_64.whl", "has_sig": false, "md5_digest": "d9389409025be7083b57f7a11a4cfb05", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 4623432, "upload_time": "2020-02-29T15:33:00", "upload_time_iso_8601": "2020-02-29T15:33:00.610292Z", "url": "https://files.pythonhosted.org/packages/21/c4/120939af44adced0d4478ba25adacb17fe648ace1f55dda3a5445c6274f1/awkward1-0.1.128-cp38-cp38-macosx_10_14_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4405eca98b044be0a2079d1a93bdbd41", "sha256": "eaecdcb31fb141ef318e9116cc2a8cb8669fc745486d6987211734b7cd4740c4" }, "downloads": -1, "filename": "awkward1-0.1.128-cp38-cp38-manylinux1_i686.whl", "has_sig": false, "md5_digest": "4405eca98b044be0a2079d1a93bdbd41", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 4669190, "upload_time": "2020-02-29T15:43:39", "upload_time_iso_8601": "2020-02-29T15:43:39.864242Z", "url": "https://files.pythonhosted.org/packages/ef/44/aed61e64c779b365b062b59b71745ef6d2f1e952afcbf18a4d5a8f0c1b7a/awkward1-0.1.128-cp38-cp38-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e62c5d4ab40f5dff4ce4243ad216481b", "sha256": "943ddc29c76274f15d995508b7880a425ff95f924b94cf903e7f8c4a564ad6b1" }, "downloads": -1, "filename": "awkward1-0.1.128-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "e62c5d4ab40f5dff4ce4243ad216481b", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 4557594, "upload_time": "2020-02-29T15:46:25", "upload_time_iso_8601": "2020-02-29T15:46:25.983433Z", "url": "https://files.pythonhosted.org/packages/2d/0b/53ecd2620e0d0f64c8dd960e67ec5309a4d3d5afe9944ba5c784e9b53fec/awkward1-0.1.128-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "87f9da23fb723ff398c5d70607a9cdbd", "sha256": "c7daa28fff41305c261ca5b1482f0c9f9b0ba76e17a17be5f121c0f20b3317f6" }, "downloads": -1, "filename": "awkward1-0.1.128-cp38-cp38-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "87f9da23fb723ff398c5d70607a9cdbd", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 4718760, "upload_time": "2020-02-29T15:42:54", "upload_time_iso_8601": "2020-02-29T15:42:54.535853Z", "url": "https://files.pythonhosted.org/packages/9d/60/918d4052f8a11ca0df120293a5c92560907e71850b91383971c628393ec2/awkward1-0.1.128-cp38-cp38-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dfa1b3004a7edcb0e89be9ae4b9156bf", "sha256": "b41e52a0fd7792d0e1c3bede01a409f49db7e993aa02217e862050da7e6adc95" }, "downloads": -1, "filename": "awkward1-0.1.128-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "dfa1b3004a7edcb0e89be9ae4b9156bf", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 3663598, "upload_time": "2020-02-29T15:36:47", "upload_time_iso_8601": "2020-02-29T15:36:47.817376Z", "url": "https://files.pythonhosted.org/packages/31/ea/bb7112aa3a0e4edd6a226c897d4ea77b4a01ebe80129db1f6e145855dfdc/awkward1-0.1.128-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4bae66328e9e85e000128158bdb20f86", "sha256": "087bfb6a5cd784aa0b7d901f029a17c6c17a90b626e4064a744931398b894233" }, "downloads": -1, "filename": "awkward1-0.1.128-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "4bae66328e9e85e000128158bdb20f86", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 4862709, "upload_time": "2020-02-29T15:37:00", "upload_time_iso_8601": "2020-02-29T15:37:00.761493Z", "url": "https://files.pythonhosted.org/packages/54/5a/ae4d0d3dd2e15b34bd7b6ae566a29446cd7177ffe6293a5d1e26f065017b/awkward1-0.1.128-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "013b8d503d28fea28a1e42a44de92187", "sha256": "a6c1bd8676f5b6a5b5fa6a16e069a82e4ba3b1e124839f82d50c30c7799e87b4" }, "downloads": -1, "filename": "awkward1-0.1.128.tar.gz", "has_sig": false, "md5_digest": "013b8d503d28fea28a1e42a44de92187", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 497616, "upload_time": "2020-02-29T15:42:56", "upload_time_iso_8601": "2020-02-29T15:42:56.241200Z", "url": "https://files.pythonhosted.org/packages/a0/27/24e8948978774d6a3d2b75447687a844862ea61a332fbd15e6d99d6599f1/awkward1-0.1.128.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.17": [ { "comment_text": "", "digests": { "md5": "865fd1a9f65e5b609c6e5c37152ffbc7", "sha256": "eba8c78a0215c5f30b07562c0923479d02151db89114c63ec94bb1001aadc1a2" }, "downloads": -1, "filename": "awkward1-0.1.17-cp27-cp27m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "865fd1a9f65e5b609c6e5c37152ffbc7", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 478628, "upload_time": "2019-10-22T20:19:28", "upload_time_iso_8601": "2019-10-22T20:19:28.719558Z", "url": "https://files.pythonhosted.org/packages/9b/b4/77ead35c4409effb73fcf8ba85a1cca8b2dce83d176d4a19336a982ed46e/awkward1-0.1.17-cp27-cp27m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "780491ed5347b51797c050afc573d92a", "sha256": "9ac3a1970d5e510c79cfb447716ee8089c7ca9cf4285179b1c12cdf2edf336e4" }, "downloads": -1, "filename": "awkward1-0.1.17-cp27-cp27m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "780491ed5347b51797c050afc573d92a", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 605271, "upload_time": "2019-10-22T20:23:53", "upload_time_iso_8601": "2019-10-22T20:23:53.451060Z", "url": "https://files.pythonhosted.org/packages/8c/ee/988bcf5b76aa846b61077c0bc81af612b349af11d7edddb2c33fcfba94dc/awkward1-0.1.17-cp27-cp27m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ad118bfeabc36270613965f9af4bb956", "sha256": "f4daf867f8f5ec08f64ba5b0d8701d77690526a82c56d0abcfabed6ec73c0d04" }, "downloads": -1, "filename": "awkward1-0.1.17-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "ad118bfeabc36270613965f9af4bb956", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 591554, "upload_time": "2019-10-22T20:23:42", "upload_time_iso_8601": "2019-10-22T20:23:42.702096Z", "url": "https://files.pythonhosted.org/packages/15/43/448f1eafd211440e4555a41babae3f4781e83e3b5f27b160bb1234215305/awkward1-0.1.17-cp27-cp27m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "14285a3455a664dc10a4b4c49f97b51f", "sha256": "0f6d5ca65d13706fc1ff2c71ad591a919b9d35fe3734a7daca7f7c13c4fa3f8c" }, "downloads": -1, "filename": "awkward1-0.1.17-cp27-cp27m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "14285a3455a664dc10a4b4c49f97b51f", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 596858, "upload_time": "2019-10-22T20:24:29", "upload_time_iso_8601": "2019-10-22T20:24:29.103722Z", "url": "https://files.pythonhosted.org/packages/6d/eb/ddd0d627c07acc27056cf75cc708a14b53ecdbc29474f028c0bb1954ef04/awkward1-0.1.17-cp27-cp27m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8b5f112f6122c0add5f4eda22964c01d", "sha256": "5baa2c3b1ca58b81bbe34f9387353e262df5dc825817a28eaa5398aad565b590" }, "downloads": -1, "filename": "awkward1-0.1.17-cp27-cp27mu-manylinux1_i686.whl", "has_sig": false, "md5_digest": "8b5f112f6122c0add5f4eda22964c01d", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 605330, "upload_time": "2019-10-22T20:23:55", "upload_time_iso_8601": "2019-10-22T20:23:55.757537Z", "url": "https://files.pythonhosted.org/packages/5e/70/fc5cafbe022921e51466db6f0cee88a791404f8470e1cfc2bdc0889f6bc6/awkward1-0.1.17-cp27-cp27mu-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5b82372a77e0667150fbdc70c4ff37f9", "sha256": "48b148b38f6011b164a29a88e424c36915678fe531665c26e52f3cd5585d3191" }, "downloads": -1, "filename": "awkward1-0.1.17-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "5b82372a77e0667150fbdc70c4ff37f9", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 591549, "upload_time": "2019-10-22T20:23:44", "upload_time_iso_8601": "2019-10-22T20:23:44.261338Z", "url": "https://files.pythonhosted.org/packages/65/d6/db2f79f5a06e704bc87c76f0afe61bd77bf6a73be910b16825a0e5aea50f/awkward1-0.1.17-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "604681bf60eca7bbae7041a7f1c14a3f", "sha256": "ae73766bb30cc08a653ae1bac6865e65c15d83c053f792b8915a87d1542cbc75" }, "downloads": -1, "filename": "awkward1-0.1.17-cp27-cp27mu-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "604681bf60eca7bbae7041a7f1c14a3f", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 596827, "upload_time": "2019-10-22T20:24:30", "upload_time_iso_8601": "2019-10-22T20:24:30.518005Z", "url": "https://files.pythonhosted.org/packages/37/22/0453ca3c0ec058fb5a7c5d75b02b9f38aa34de42aff4c9e59eedb06bf6fa/awkward1-0.1.17-cp27-cp27mu-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "547814ef6cc3c1770e4f7181b3e059b3", "sha256": "52c77c75ca351b7d13ae2e3923200b5af71e426cb34a65625e7722a470f84737" }, "downloads": -1, "filename": "awkward1-0.1.17-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "547814ef6cc3c1770e4f7181b3e059b3", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 341025, "upload_time": "2019-10-22T20:20:30", "upload_time_iso_8601": "2019-10-22T20:20:30.842544Z", "url": "https://files.pythonhosted.org/packages/52/91/c28665c4f3f0715a68956106175fca8b2a7c9476f40d61ad507d02e92d48/awkward1-0.1.17-cp27-cp27m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b81a1ebf6faceb7ea2ba12ad3c371531", "sha256": "2dfb21b88c75d8473f10a129fc7cd558d84fdf0b4ee6283b00518a0637c5f70c" }, "downloads": -1, "filename": "awkward1-0.1.17-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "b81a1ebf6faceb7ea2ba12ad3c371531", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 406010, "upload_time": "2019-10-22T20:20:29", "upload_time_iso_8601": "2019-10-22T20:20:29.998051Z", "url": "https://files.pythonhosted.org/packages/42/ca/418d2c6d957cc98560469d948b7205e411fa11d2d63de91533d050bb6237/awkward1-0.1.17-cp27-cp27m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9c605ec3ed24641a6f3329a9fa7a90cd", "sha256": "758256acdcd9a8c186c7280d2de2b79385c3ef6340a00a58b54412f0c7af4d60" }, "downloads": -1, "filename": "awkward1-0.1.17-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "9c605ec3ed24641a6f3329a9fa7a90cd", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 604798, "upload_time": "2019-10-22T20:23:58", "upload_time_iso_8601": "2019-10-22T20:23:58.204692Z", "url": "https://files.pythonhosted.org/packages/50/b0/b4db07d2de8fae78cf46df797baa274d2687bd1c55cfc15e9e359f0e3bc4/awkward1-0.1.17-cp34-cp34m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8e9b1a3a9e2921ab5a3dee60b58cef43", "sha256": "6356980171bf325beac0f9d9f101db0fbef97009859c4fb113b8c52a30662bd3" }, "downloads": -1, "filename": "awkward1-0.1.17-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "8e9b1a3a9e2921ab5a3dee60b58cef43", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 592152, "upload_time": "2019-10-22T20:23:46", "upload_time_iso_8601": "2019-10-22T20:23:46.203261Z", "url": "https://files.pythonhosted.org/packages/cb/b6/2a1b5a46719e1dc2aefce796e9416e914e20bf104f5a0f1bb77a5d9a2bc1/awkward1-0.1.17-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cc8a97957d9ae363f3a07c87df9f74e1", "sha256": "cb05a1280884cc2fdf455e4dae5c70e18616e1c115902aaa758efd70740978fb" }, "downloads": -1, "filename": "awkward1-0.1.17-cp34-cp34m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "cc8a97957d9ae363f3a07c87df9f74e1", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 595798, "upload_time": "2019-10-22T20:24:32", "upload_time_iso_8601": "2019-10-22T20:24:32.102734Z", "url": "https://files.pythonhosted.org/packages/1c/4d/18296f9fed6338bdce9a4b601d56d3d7fc97517ba0f61c6ad6d8348d43fd/awkward1-0.1.17-cp34-cp34m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "368ef7a1f3ecde4e7ee7cd842ffb6d21", "sha256": "7f397bb64fa68c09b1a8cbc47a10627ab8979035cbca929ef504f259f703941b" }, "downloads": -1, "filename": "awkward1-0.1.17-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "368ef7a1f3ecde4e7ee7cd842ffb6d21", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 604951, "upload_time": "2019-10-22T20:24:00", "upload_time_iso_8601": "2019-10-22T20:24:00.151085Z", "url": "https://files.pythonhosted.org/packages/31/26/94a304d6190221dede0abf0665efb9e57d156a14ae488fb2f1ad33fb9c88/awkward1-0.1.17-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "12924f88998fda6a37c36e649066d409", "sha256": "29c9e85cf40650a605a2fc84d2d3fdb582aac3d8aad601391830e9e59e793431" }, "downloads": -1, "filename": "awkward1-0.1.17-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "12924f88998fda6a37c36e649066d409", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 592158, "upload_time": "2019-10-22T20:23:48", "upload_time_iso_8601": "2019-10-22T20:23:48.118673Z", "url": "https://files.pythonhosted.org/packages/d4/e5/efab7338697583074916d1900132c6f7951caf4e4c6a64753364176275d2/awkward1-0.1.17-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d5686dcd7cadd4ec1f0ac33774d947a3", "sha256": "8a9dd31af36cb6d4696ce2a4fc51474e1d90b1ebedd439d1ccc9c39ad6c19e40" }, "downloads": -1, "filename": "awkward1-0.1.17-cp35-cp35m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "d5686dcd7cadd4ec1f0ac33774d947a3", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 595910, "upload_time": "2019-10-22T20:24:33", "upload_time_iso_8601": "2019-10-22T20:24:33.699306Z", "url": "https://files.pythonhosted.org/packages/cc/ab/b49129ed79935be6a1155790a2f062387c1aae5b7e51ce570f8e560e0ee0/awkward1-0.1.17-cp35-cp35m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "be1917c251688ee53a74357509ba61a9", "sha256": "633040a58f5d61e31965d6da493d24da515bd2ccc982d21fa0f40b92397c93fc" }, "downloads": -1, "filename": "awkward1-0.1.17-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "be1917c251688ee53a74357509ba61a9", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 340092, "upload_time": "2019-10-22T20:20:25", "upload_time_iso_8601": "2019-10-22T20:20:25.467936Z", "url": "https://files.pythonhosted.org/packages/3d/8d/882c76bc0ddfce5e181fe842d5198334d507b296d80903dcfaea77889e80/awkward1-0.1.17-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d48c7efe5d05b6916f0539170a282f15", "sha256": "97480d4470740faba1f38ae40c1e48e4aa858dfe803662a05ef1d5aae589ceb8" }, "downloads": -1, "filename": "awkward1-0.1.17-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "d48c7efe5d05b6916f0539170a282f15", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 404521, "upload_time": "2019-10-22T20:20:43", "upload_time_iso_8601": "2019-10-22T20:20:43.505870Z", "url": "https://files.pythonhosted.org/packages/7c/b1/2a06d1010caa66f6aa85642582bd088d9e6ee21b714711ef003e7e3cb074/awkward1-0.1.17-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e1fee05ecde75caaff539d52a6957cd1", "sha256": "5b57b74e4cea09401521aaf13e13ad3eb003c6bd0c0ad442900059c8f727277d" }, "downloads": -1, "filename": "awkward1-0.1.17-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "e1fee05ecde75caaff539d52a6957cd1", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 478209, "upload_time": "2019-10-22T20:19:41", "upload_time_iso_8601": "2019-10-22T20:19:41.255205Z", "url": "https://files.pythonhosted.org/packages/cc/3e/5475023f93d81cc73a1931b4fdefd53897f043e9fa1f1de0fb3d0c0af984/awkward1-0.1.17-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "65c7a80d51f94ef59fa0ea6ae04031ad", "sha256": "296598c13a8def9d01e34ea3916562cbac58650051e345cf1f472cf6c86ba556" }, "downloads": -1, "filename": "awkward1-0.1.17-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "65c7a80d51f94ef59fa0ea6ae04031ad", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 604951, "upload_time": "2019-10-22T20:24:02", "upload_time_iso_8601": "2019-10-22T20:24:02.602171Z", "url": "https://files.pythonhosted.org/packages/6f/e5/1416efbfdc594ab2bf4823501c1adeccf06ec83eeb9c94df72886e605bfd/awkward1-0.1.17-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "18f31ea213d4cc773d5c0309c38cf907", "sha256": "c0492c84e7fd7b906e6fd5711b64b5926dddcd266be5ffb49d0fb8fccf00d2de" }, "downloads": -1, "filename": "awkward1-0.1.17-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "18f31ea213d4cc773d5c0309c38cf907", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 592157, "upload_time": "2019-10-22T20:23:49", "upload_time_iso_8601": "2019-10-22T20:23:49.994832Z", "url": "https://files.pythonhosted.org/packages/a9/f4/f1d76a7a5091fa3a5c19dd55dbc4dd173735ad53d67936abbef6c4f1f4dd/awkward1-0.1.17-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "79d12006efde18eac386ad4a1d77975b", "sha256": "16644ca8ada8da727eaca29109ef448856159f55758ec1d393500fef212415bf" }, "downloads": -1, "filename": "awkward1-0.1.17-cp36-cp36m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "79d12006efde18eac386ad4a1d77975b", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 595908, "upload_time": "2019-10-22T20:24:35", "upload_time_iso_8601": "2019-10-22T20:24:35.232195Z", "url": "https://files.pythonhosted.org/packages/0f/2a/7b5b9012099799cfd3217189b67730e5611c49f5e5241466b1e6d374cfc3/awkward1-0.1.17-cp36-cp36m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fe40ca00cd6ed7fbebd8f616559da269", "sha256": "db242d2eb45efd9814893c03d22fabdc75658257588c1919ed408b002f9be619" }, "downloads": -1, "filename": "awkward1-0.1.17-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "fe40ca00cd6ed7fbebd8f616559da269", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 340178, "upload_time": "2019-10-22T20:22:42", "upload_time_iso_8601": "2019-10-22T20:22:42.223003Z", "url": "https://files.pythonhosted.org/packages/57/65/a9642ee4c6a52c0c275f3e536529963b0b0c81d7857ea51817cda0fe8897/awkward1-0.1.17-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9ea6337d84646fadc42a66d5c2901a53", "sha256": "0f43c590aab6d77e81bf67ca869d1b8bb70536cb4011d77a3b30cbe4bd8602b8" }, "downloads": -1, "filename": "awkward1-0.1.17-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "9ea6337d84646fadc42a66d5c2901a53", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 404563, "upload_time": "2019-10-22T20:23:13", "upload_time_iso_8601": "2019-10-22T20:23:13.798958Z", "url": "https://files.pythonhosted.org/packages/bd/29/33042672198a3925d0050514c2a44d7d74be786b7cf0632c2e69e46d0de4/awkward1-0.1.17-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5362a8495ae35f726e1ec3e4db238781", "sha256": "ff5dbb831fa5e1191c14df3abd0057e5c275a2bf00470b5ec5574f3ea7c68f4e" }, "downloads": -1, "filename": "awkward1-0.1.17-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "5362a8495ae35f726e1ec3e4db238781", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 478233, "upload_time": "2019-10-22T20:19:44", "upload_time_iso_8601": "2019-10-22T20:19:44.436675Z", "url": "https://files.pythonhosted.org/packages/61/18/5e5f06b29f1196d4d7135ea12e614b5ca01827ebd54f7c7d418a4c3133a8/awkward1-0.1.17-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5f4b8c981c4656ec36b3d7fc9917c110", "sha256": "9f6343898d7094688ca293bcc588ef9b3644642cbf2048f659b65e5f3bdcf983" }, "downloads": -1, "filename": "awkward1-0.1.17-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "5f4b8c981c4656ec36b3d7fc9917c110", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 604561, "upload_time": "2019-10-22T20:24:04", "upload_time_iso_8601": "2019-10-22T20:24:04.534415Z", "url": "https://files.pythonhosted.org/packages/16/7b/25be7030de55beef7981fa3296f968418cdbd0b4579571777035f0c04ac7/awkward1-0.1.17-cp37-cp37m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a98d8e046a26dd383369157d579c06d5", "sha256": "1b5aaa60c1b76d36139d175ad9ea0c7feb436b8a572b967065469af598869e73" }, "downloads": -1, "filename": "awkward1-0.1.17-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "a98d8e046a26dd383369157d579c06d5", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 592345, "upload_time": "2019-10-22T20:23:52", "upload_time_iso_8601": "2019-10-22T20:23:52.715723Z", "url": "https://files.pythonhosted.org/packages/62/ee/dcb12a4838a7ca024e57abcbcd2c36d1c02c74b561abf65478ace5498f7a/awkward1-0.1.17-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "940c2fd358f77af54b1de4213d4c2951", "sha256": "fed24684e75a80fcbdf5ceaa480a6dd15610d47ab2f8432502cd639257b6fdff" }, "downloads": -1, "filename": "awkward1-0.1.17-cp37-cp37m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "940c2fd358f77af54b1de4213d4c2951", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 595796, "upload_time": "2019-10-22T20:24:36", "upload_time_iso_8601": "2019-10-22T20:24:36.933014Z", "url": "https://files.pythonhosted.org/packages/33/d2/e1057d07b35e8dd7392859233829bb7ae776b06169d5cbc5171aaf26ea8b/awkward1-0.1.17-cp37-cp37m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8892a9e029a5d38c37d96b7f5f044bf2", "sha256": "ca2defaf96aee9ca3f91e8dcf6fcc77f8dd7055558cad7678f9161e1a08b0ff4" }, "downloads": -1, "filename": "awkward1-0.1.17-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "8892a9e029a5d38c37d96b7f5f044bf2", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 340148, "upload_time": "2019-10-22T20:23:48", "upload_time_iso_8601": "2019-10-22T20:23:48.235111Z", "url": "https://files.pythonhosted.org/packages/20/e4/7c84ec1c208fa3fda2efcf78b8453cefddb0f484a1ddca5f5fdcf07caa5d/awkward1-0.1.17-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0e5d7eb89e86055ce61b7a5df9697a0e", "sha256": "2670f6d31787429b60ce7ccbd42dc36ecb98249487081f5da7a3eae02e27a730" }, "downloads": -1, "filename": "awkward1-0.1.17-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "0e5d7eb89e86055ce61b7a5df9697a0e", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 404521, "upload_time": "2019-10-22T20:24:08", "upload_time_iso_8601": "2019-10-22T20:24:08.804486Z", "url": "https://files.pythonhosted.org/packages/91/cd/007d4cf9e9dba41c93dcea0b5401b1c6a15a70a674ebb5313503d3c3d5ae/awkward1-0.1.17-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6ed8da9352b18376ffe2b98068a47b17", "sha256": "0948fe003f87a4df1d8cfda5e8570bdd77c88356cecee2332786e6cacae8aebd" }, "downloads": -1, "filename": "awkward1-0.1.17-cp38-cp38-manylinux1_i686.whl", "has_sig": false, "md5_digest": "6ed8da9352b18376ffe2b98068a47b17", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 599024, "upload_time": "2019-10-22T20:24:06", "upload_time_iso_8601": "2019-10-22T20:24:06.796927Z", "url": "https://files.pythonhosted.org/packages/8d/20/49a5e78e22523d603fdf5be12392f87f29897ae9bab4a8c2523b0bda36a5/awkward1-0.1.17-cp38-cp38-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "33a953673cccdc36184227fecc682a45", "sha256": "37e648eacf0bd451380a2a8dc55b151d6f43733ae04796f80dc2a9a57529d52d" }, "downloads": -1, "filename": "awkward1-0.1.17-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "33a953673cccdc36184227fecc682a45", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 585169, "upload_time": "2019-10-22T20:23:54", "upload_time_iso_8601": "2019-10-22T20:23:54.638793Z", "url": "https://files.pythonhosted.org/packages/10/ff/01c645e092ba624fbab38f70810291458cb8448aaedf9f75a3c1f6709629/awkward1-0.1.17-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "377a9a0a85e26fd1263faa2acf728ef1", "sha256": "e67331f1d1b8645e62f438cd138357927c68e7450445139c8935c0d384c628c4" }, "downloads": -1, "filename": "awkward1-0.1.17-cp38-cp38-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "377a9a0a85e26fd1263faa2acf728ef1", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 594137, "upload_time": "2019-10-22T20:24:38", "upload_time_iso_8601": "2019-10-22T20:24:38.559765Z", "url": "https://files.pythonhosted.org/packages/96/ff/e560b0d5eac6cf6ec87407ecb4752ded427bbaa84aac67434dd7b420e8c6/awkward1-0.1.17-cp38-cp38-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "727723395463682f873effc271813c7d", "sha256": "992471e0dfa3cac16254fd4e93a07bbe396d7db850dbc201123cbe8a7f2af54e" }, "downloads": -1, "filename": "awkward1-0.1.17.tar.gz", "has_sig": false, "md5_digest": "727723395463682f873effc271813c7d", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 245577, "upload_time": "2019-10-22T20:24:40", "upload_time_iso_8601": "2019-10-22T20:24:40.082070Z", "url": "https://files.pythonhosted.org/packages/59/da/0e687c0add14cd590a42c6513929b0b99cb548f6c8014de0918ab55a6ea4/awkward1-0.1.17.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.25": [ { "comment_text": "", "digests": { "md5": "9eaa04ecbc7265f9747b324a5f1f9ac9", "sha256": "f58d232bec87d39d806401751c2ecd2c2ed3d6f6b70305e416329d4b2261f492" }, "downloads": -1, "filename": "awkward1-0.1.25-cp27-cp27m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "9eaa04ecbc7265f9747b324a5f1f9ac9", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 866501, "upload_time": "2019-11-27T23:05:09", "upload_time_iso_8601": "2019-11-27T23:05:09.937741Z", "url": "https://files.pythonhosted.org/packages/c8/d7/06ec008c7a1173a8a65ede853a38d5a53c6709ab9fed3c94af5ff9301b42/awkward1-0.1.25-cp27-cp27m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4c58a1149b2e64bf729f4bf2335fc6fd", "sha256": "a9b08992199795765e73d561a376c264a389af7a9f6449abe242c1db4aaca4f9" }, "downloads": -1, "filename": "awkward1-0.1.25-cp27-cp27m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "4c58a1149b2e64bf729f4bf2335fc6fd", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 1056563, "upload_time": "2019-11-27T23:12:52", "upload_time_iso_8601": "2019-11-27T23:12:52.939503Z", "url": "https://files.pythonhosted.org/packages/85/17/e2f6661ed66f676b600e173916cdc373bca536204f703381d58e2f5e9a88/awkward1-0.1.25-cp27-cp27m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "17e247e8d1e1ea9be4575280fc981bed", "sha256": "4fdcd6c5ce48734862a2f80907d2e917886a1602af4cfd0142c515e912f4f671" }, "downloads": -1, "filename": "awkward1-0.1.25-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "17e247e8d1e1ea9be4575280fc981bed", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 1029554, "upload_time": "2019-11-27T23:12:14", "upload_time_iso_8601": "2019-11-27T23:12:14.746782Z", "url": "https://files.pythonhosted.org/packages/ef/fd/d31e20e482e7f08f259e735c5665889a3b76b1170768a93488a72f242c17/awkward1-0.1.25-cp27-cp27m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d7be4a916b0534a6589145561bd75e1e", "sha256": "0853b141e4dbddeda975a383a13f5088662a59e3f28aee578964fa74116af127" }, "downloads": -1, "filename": "awkward1-0.1.25-cp27-cp27m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "d7be4a916b0534a6589145561bd75e1e", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 1085981, "upload_time": "2019-11-27T23:13:23", "upload_time_iso_8601": "2019-11-27T23:13:23.055041Z", "url": "https://files.pythonhosted.org/packages/5c/7a/45d72b17fcf92595f5aefacdc6cb0ad7374f4a0fe170e60095f833ef4eae/awkward1-0.1.25-cp27-cp27m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4509fc394f3312fa9d368d67c8b340d0", "sha256": "0908a6c1258486c77855eae82b17eba00f22806e2ece4eacad28a921ae5e7ba0" }, "downloads": -1, "filename": "awkward1-0.1.25-cp27-cp27mu-manylinux1_i686.whl", "has_sig": false, "md5_digest": "4509fc394f3312fa9d368d67c8b340d0", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 1056581, "upload_time": "2019-11-27T23:12:54", "upload_time_iso_8601": "2019-11-27T23:12:54.486778Z", "url": "https://files.pythonhosted.org/packages/eb/a1/4a9868657a42633bb1bf5e9282b341c8405f3cd1b140df2ef2a76db6d808/awkward1-0.1.25-cp27-cp27mu-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b05f827e18c99faa40e64ca8ad739c22", "sha256": "2721fa7064cf5c10e7133e29647d1efe9c4f17a52b3b7c36c97b42a3baf1d10c" }, "downloads": -1, "filename": "awkward1-0.1.25-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "b05f827e18c99faa40e64ca8ad739c22", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 1029586, "upload_time": "2019-11-27T23:12:16", "upload_time_iso_8601": "2019-11-27T23:12:16.785038Z", "url": "https://files.pythonhosted.org/packages/67/05/c9f67a223349f162ac992608773d0dfeb65860d41595e50ccacaa4e88960/awkward1-0.1.25-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a683daa6cdcb56bef0ee19737b39d8cb", "sha256": "946db8ebec4c5469a79a55916c2663ae311eee318fbd3030317c0c943aa7c47f" }, "downloads": -1, "filename": "awkward1-0.1.25-cp27-cp27mu-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "a683daa6cdcb56bef0ee19737b39d8cb", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 1085963, "upload_time": "2019-11-27T23:13:24", "upload_time_iso_8601": "2019-11-27T23:13:24.724734Z", "url": "https://files.pythonhosted.org/packages/d2/f3/6488eef9cca4912802db2cb6672f34d946ad91a0c3b04f1dc880ce20a281/awkward1-0.1.25-cp27-cp27mu-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d391e9b9098600292355dae51034eafc", "sha256": "548d14c90507e4a0a81041e18ff6476c8e51fab217ce77fed4ad3eb9c073618c" }, "downloads": -1, "filename": "awkward1-0.1.25-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "d391e9b9098600292355dae51034eafc", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 577990, "upload_time": "2019-11-27T23:04:45", "upload_time_iso_8601": "2019-11-27T23:04:45.122335Z", "url": "https://files.pythonhosted.org/packages/0c/be/d59010f1c9b6f68038ed3036478cefa786828c1210c4ecfd7c1a4031143d/awkward1-0.1.25-cp27-cp27m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ca2ba9008c5395491919929ab8c9fefe", "sha256": "08064aae7f1124c957fe67105667011bb3c2ea7aaad3f778701fcae48d62a9f9" }, "downloads": -1, "filename": "awkward1-0.1.25-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "ca2ba9008c5395491919929ab8c9fefe", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 690595, "upload_time": "2019-11-27T23:04:53", "upload_time_iso_8601": "2019-11-27T23:04:53.628765Z", "url": "https://files.pythonhosted.org/packages/d8/8e/1c424861d1ff5ec6042127e89bb99403c6b420a7e07f6246620243cce67e/awkward1-0.1.25-cp27-cp27m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4d1776542f173745a9c3d9f3a76d00e8", "sha256": "080b673973e4cd19a017daf6dfe52ff8068fbc1524fff0dc961b7f2810f708e4" }, "downloads": -1, "filename": "awkward1-0.1.25-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "4d1776542f173745a9c3d9f3a76d00e8", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 1052727, "upload_time": "2019-11-27T23:12:56", "upload_time_iso_8601": "2019-11-27T23:12:56.639921Z", "url": "https://files.pythonhosted.org/packages/be/c8/ebbe15b717f2acfb3ccdfcd83990703fb5d41eae84c23d87895e156edfd3/awkward1-0.1.25-cp34-cp34m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "67ba1f357a5dc1d839a17ad9fe9fb18e", "sha256": "eaa06a771f4ca95187ef46602ac9acfd5c883a615d1efe552e62dbf67fe810c3" }, "downloads": -1, "filename": "awkward1-0.1.25-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "67ba1f357a5dc1d839a17ad9fe9fb18e", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 1030914, "upload_time": "2019-11-27T23:12:18", "upload_time_iso_8601": "2019-11-27T23:12:18.825007Z", "url": "https://files.pythonhosted.org/packages/60/87/1ec85db03556dacf0cc1553aa66a2eec5273b3b5eed4d78451afbebb7e0b/awkward1-0.1.25-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3ed4eb5ea335faa43f8f79d5a4d9d4bf", "sha256": "a66f2932927a87f3b7a5e716669c1b0fc6f5ec5b0fad20d6d1373af69bd82db4" }, "downloads": -1, "filename": "awkward1-0.1.25-cp34-cp34m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "3ed4eb5ea335faa43f8f79d5a4d9d4bf", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 1084008, "upload_time": "2019-11-27T23:13:26", "upload_time_iso_8601": "2019-11-27T23:13:26.437827Z", "url": "https://files.pythonhosted.org/packages/cb/11/965128ac00f88e02010181017fe0f21a934850d09e6240c9f76c8a7441a9/awkward1-0.1.25-cp34-cp34m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "44fb762f0d7495dd92327613694c04da", "sha256": "395a5bbf3365d4ef8840a5b115ad09b71dd91788565888f74bba4e158b146b73" }, "downloads": -1, "filename": "awkward1-0.1.25-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "44fb762f0d7495dd92327613694c04da", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 1053315, "upload_time": "2019-11-27T23:12:58", "upload_time_iso_8601": "2019-11-27T23:12:58.768998Z", "url": "https://files.pythonhosted.org/packages/08/56/e73b92f3bbd498711ab55ca6e5d2fbdc56a7d4cd2bc449230ca9360d3a22/awkward1-0.1.25-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c53a5905baf46e17d1b1578f4c589dd6", "sha256": "f606ac4abd12b6bc0b6756f88918b7027c0a8ebb0ebc7db39b5f3c27a70b82e1" }, "downloads": -1, "filename": "awkward1-0.1.25-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "c53a5905baf46e17d1b1578f4c589dd6", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 1030940, "upload_time": "2019-11-27T23:12:20", "upload_time_iso_8601": "2019-11-27T23:12:20.540558Z", "url": "https://files.pythonhosted.org/packages/28/0c/99d76479f1e3c6fcdee7b86c591ee570fab80ca069fee70e742e0e90e609/awkward1-0.1.25-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d9d9b1fafb0a602f9596b7f2ebe6bdbe", "sha256": "079ebc880b1a088d661443276e93a67978ad22d9c6b85117eb0e5712655bec02" }, "downloads": -1, "filename": "awkward1-0.1.25-cp35-cp35m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "d9d9b1fafb0a602f9596b7f2ebe6bdbe", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 1084876, "upload_time": "2019-11-27T23:13:28", "upload_time_iso_8601": "2019-11-27T23:13:28.120504Z", "url": "https://files.pythonhosted.org/packages/18/ac/9da9f4384ddb9200c785ae30aa094e72b366ee61f2e5687f060eb8b86b2e/awkward1-0.1.25-cp35-cp35m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e392003fe78ebb4fd932dfa25e1de703", "sha256": "a2893b8a73908c8bdeb9c0e324c1a181303516d5457c650e88272b61a468d11e" }, "downloads": -1, "filename": "awkward1-0.1.25-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "e392003fe78ebb4fd932dfa25e1de703", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 576833, "upload_time": "2019-11-27T23:05:05", "upload_time_iso_8601": "2019-11-27T23:05:05.829510Z", "url": "https://files.pythonhosted.org/packages/06/68/03d4e3d8d48aa55c29236a5610c473046ea7e941cb269328f2f701327ea6/awkward1-0.1.25-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6164715209a49eaeafcc1bc08839cedb", "sha256": "e954664220129b2d84292224fdc2ebd5f99193a2d5a48684be15825f32507413" }, "downloads": -1, "filename": "awkward1-0.1.25-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "6164715209a49eaeafcc1bc08839cedb", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 687594, "upload_time": "2019-11-27T23:07:44", "upload_time_iso_8601": "2019-11-27T23:07:44.937861Z", "url": "https://files.pythonhosted.org/packages/da/79/64f88be6e0d637959a18a6981838432c41903c3e385884ee3f13f9a11315/awkward1-0.1.25-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6797695883a2271b833cb8f9c31303bf", "sha256": "0b1e27f97586aa6f40a034c0c0803605f11e908296381369bdc9bcc6c601e3d1" }, "downloads": -1, "filename": "awkward1-0.1.25-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "6797695883a2271b833cb8f9c31303bf", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 867021, "upload_time": "2019-11-27T23:04:43", "upload_time_iso_8601": "2019-11-27T23:04:43.247528Z", "url": "https://files.pythonhosted.org/packages/2a/a5/c3ae201d8da3b3c9daf101d200dc8c10da7cd0ca2d979fb8fab530ce2460/awkward1-0.1.25-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8ba5015a7687e112cecffdc3d6901c9a", "sha256": "2429e68a27fa7c315ae4311a6433dcaddd44366e9bedf622d71db192f9361d30" }, "downloads": -1, "filename": "awkward1-0.1.25-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "8ba5015a7687e112cecffdc3d6901c9a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 1053317, "upload_time": "2019-11-27T23:13:00", "upload_time_iso_8601": "2019-11-27T23:13:00.820245Z", "url": "https://files.pythonhosted.org/packages/35/3f/290e35d8916f2fc28c50179bf6d95c3e285e940738fd348a3592b2889097/awkward1-0.1.25-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2ea48b2da8d08a955405bcfd8153e3ee", "sha256": "eaa694aa92d7eaef7bd027c49cdccd66648acee16b659e5518f6046f441c865a" }, "downloads": -1, "filename": "awkward1-0.1.25-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "2ea48b2da8d08a955405bcfd8153e3ee", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 1030942, "upload_time": "2019-11-27T23:12:22", "upload_time_iso_8601": "2019-11-27T23:12:22.522425Z", "url": "https://files.pythonhosted.org/packages/b5/1b/0a58195e2d05c5a508d7b8a25f7860ee99c4e0e4e75433ad897dfc59b3e6/awkward1-0.1.25-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0e969610bf479d30b02d73b6a70da3bd", "sha256": "3c8a2f76ff074e598100657413ddd3f9ba977b745a5e9d74c39e42623ed1eb3b" }, "downloads": -1, "filename": "awkward1-0.1.25-cp36-cp36m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "0e969610bf479d30b02d73b6a70da3bd", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 1084879, "upload_time": "2019-11-27T23:13:29", "upload_time_iso_8601": "2019-11-27T23:13:29.696043Z", "url": "https://files.pythonhosted.org/packages/52/8f/ec4240571b3ae1cc2e5c21eae878b3a0f0328e2ed7cfdb5f16cee328bde6/awkward1-0.1.25-cp36-cp36m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4df1c2b199e6f3c68508d92635ea2746", "sha256": "de74de4ec4135e8d743c74c31fa7efa51fe7c490a0eef51dd8bc7605f5f53c62" }, "downloads": -1, "filename": "awkward1-0.1.25-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "4df1c2b199e6f3c68508d92635ea2746", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 576895, "upload_time": "2019-11-27T23:07:35", "upload_time_iso_8601": "2019-11-27T23:07:35.428691Z", "url": "https://files.pythonhosted.org/packages/e3/bd/523dd02a77c3ddb3ac01f055ac6d1819bc81476fe18df6d6937213c065f5/awkward1-0.1.25-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f132eff7246ec09bf11217b983641677", "sha256": "365a5c2873ee5a28b28e387b95ff8976c5cb89eb36fad57c1fc4dff76589c555" }, "downloads": -1, "filename": "awkward1-0.1.25-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "f132eff7246ec09bf11217b983641677", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 687639, "upload_time": "2019-11-27T23:07:50", "upload_time_iso_8601": "2019-11-27T23:07:50.628269Z", "url": "https://files.pythonhosted.org/packages/d4/87/078f20b63c941303131df7694940f9ad337e82cfd39b8ebd8e9829d11e34/awkward1-0.1.25-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a6c92a8baf701f77b008141fa4ba4379", "sha256": "a63f3c52773dc1385a86e4ef6abad05b09c934825312a4bd5d0dc426195d228a" }, "downloads": -1, "filename": "awkward1-0.1.25-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "a6c92a8baf701f77b008141fa4ba4379", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 867067, "upload_time": "2019-11-27T23:05:49", "upload_time_iso_8601": "2019-11-27T23:05:49.035826Z", "url": "https://files.pythonhosted.org/packages/99/7e/17afa26d72c554d807dbef3b5af045e596ad5113218b98907b7e46824e3d/awkward1-0.1.25-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "90f2eeb05c923e09d2948c32e5237d64", "sha256": "f0f19fe2b24cc9c0619f7881bdbef58736c14dd943d2d807e938a50cc0a036ea" }, "downloads": -1, "filename": "awkward1-0.1.25-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "90f2eeb05c923e09d2948c32e5237d64", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 1052860, "upload_time": "2019-11-27T23:13:02", "upload_time_iso_8601": "2019-11-27T23:13:02.794779Z", "url": "https://files.pythonhosted.org/packages/10/b3/6fe82152978f1ec919443fdb3a3e92f0b260d818b89adae14187b7a72e18/awkward1-0.1.25-cp37-cp37m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5f9981c4944ba0b67bfa8c61453a7403", "sha256": "51f3fe87c96dc40105fbf975e3fafd9b89214228adaea839a8f1e8acc0a4efdd" }, "downloads": -1, "filename": "awkward1-0.1.25-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "5f9981c4944ba0b67bfa8c61453a7403", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 1031095, "upload_time": "2019-11-27T23:12:24", "upload_time_iso_8601": "2019-11-27T23:12:24.150781Z", "url": "https://files.pythonhosted.org/packages/55/db/cadb597e8f3f75481516709e165cc68566756a54a6b4b975d9184bc1483b/awkward1-0.1.25-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ed02cdd4cc161edfa5b240731e4fd8e7", "sha256": "d48cc7abb24d25722caf4f4312c7baf203183f02fab3ae871f4aac5c3dbf9ceb" }, "downloads": -1, "filename": "awkward1-0.1.25-cp37-cp37m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "ed02cdd4cc161edfa5b240731e4fd8e7", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 1084472, "upload_time": "2019-11-27T23:13:31", "upload_time_iso_8601": "2019-11-27T23:13:31.393753Z", "url": "https://files.pythonhosted.org/packages/73/fe/40b7913556e88e1489ea545ae7ac553bed3bced69a7735c57f94d11e233c/awkward1-0.1.25-cp37-cp37m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5096579bbac48159ae98c3fc078f826d", "sha256": "e7bcd12690aed6511acbd1bca484b3264530cf3c3a479f8ee38c34273ef6a923" }, "downloads": -1, "filename": "awkward1-0.1.25-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "5096579bbac48159ae98c3fc078f826d", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 576952, "upload_time": "2019-11-27T23:07:32", "upload_time_iso_8601": "2019-11-27T23:07:32.914366Z", "url": "https://files.pythonhosted.org/packages/2d/c0/031262b6506343f481d484eab70672eddac72da3d08af2aa8b2b7abe8ba6/awkward1-0.1.25-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5dde04a94d9612306bd6d79faf159a18", "sha256": "08e65fe7220a1516d0882bb00f47c5867cc1ba2ab6781b0eeb74964e591b2c4e" }, "downloads": -1, "filename": "awkward1-0.1.25-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "5dde04a94d9612306bd6d79faf159a18", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 687613, "upload_time": "2019-11-27T23:08:00", "upload_time_iso_8601": "2019-11-27T23:08:00.514483Z", "url": "https://files.pythonhosted.org/packages/53/4c/97e11d672b11f08abbaad486007fd5fdad4f110fc631d0afe91887e71297/awkward1-0.1.25-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ac6a4c51c13675a1d94eb4372c3d8852", "sha256": "4592a7d87b618a8e23e78a2d940447f70be6236fd06940745e9549f5754f97c4" }, "downloads": -1, "filename": "awkward1-0.1.25-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "ac6a4c51c13675a1d94eb4372c3d8852", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 883789, "upload_time": "2019-11-27T23:04:37", "upload_time_iso_8601": "2019-11-27T23:04:37.419813Z", "url": "https://files.pythonhosted.org/packages/82/8b/ad923e9bde79214e9ca15fa593ae3b91ddcd2d7ec662e46c31536537fec4/awkward1-0.1.25-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "13ed003e9e2a2ac286fffa1a7b0e0d34", "sha256": "11720c2a65f61975aa8931bc1aed60f45b2ff3d61dfd3640a27e26217d89e564" }, "downloads": -1, "filename": "awkward1-0.1.25-cp38-cp38-manylinux1_i686.whl", "has_sig": false, "md5_digest": "13ed003e9e2a2ac286fffa1a7b0e0d34", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 1044426, "upload_time": "2019-11-27T23:13:04", "upload_time_iso_8601": "2019-11-27T23:13:04.427996Z", "url": "https://files.pythonhosted.org/packages/43/84/beb44892dd5c96feb3805f3f3aa047073dd6566a286abc121f8a315665be/awkward1-0.1.25-cp38-cp38-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6a956bb876ae59c67a0b0a6ab5f387ea", "sha256": "e3ca0a97775edfb8880ac0d6d20ba9926bc3fedbb241adaa00d9208cc1587db3" }, "downloads": -1, "filename": "awkward1-0.1.25-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "6a956bb876ae59c67a0b0a6ab5f387ea", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 1014224, "upload_time": "2019-11-27T23:12:25", "upload_time_iso_8601": "2019-11-27T23:12:25.806482Z", "url": "https://files.pythonhosted.org/packages/ac/f8/9debeddc54e987a8072cb16eb4b29dc3d3a3b4cf39d6ba33fd8f597a1592/awkward1-0.1.25-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "89f48b1da10cb963b8e9f8f4336f6d32", "sha256": "7984b9e80a49e5340fa6059013de53080e9e3c6ac1a977f0f5adee463cc9a618" }, "downloads": -1, "filename": "awkward1-0.1.25-cp38-cp38-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "89f48b1da10cb963b8e9f8f4336f6d32", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 1087464, "upload_time": "2019-11-27T23:13:33", "upload_time_iso_8601": "2019-11-27T23:13:33.045288Z", "url": "https://files.pythonhosted.org/packages/cd/26/1ceaf5a2dbf96b5705f1677e1580121dc094315a3aaf52beed707d483d24/awkward1-0.1.25-cp38-cp38-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c5d0a7150c3eebbed1fd40fe67bdcdef", "sha256": "1c84be805fff7f72cde01a37d0c78decc7cc3c6ee99ec182ea594ec80f03303f" }, "downloads": -1, "filename": "awkward1-0.1.25-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "c5d0a7150c3eebbed1fd40fe67bdcdef", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 573106, "upload_time": "2019-11-27T23:08:01", "upload_time_iso_8601": "2019-11-27T23:08:01.827872Z", "url": "https://files.pythonhosted.org/packages/8e/da/838515e59f44356b951529948be863fee37a1cdaff12d285e4dba2a31600/awkward1-0.1.25-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fe4995d1db82b27610cddee2a7452da0", "sha256": "d6c6498d7820e22de44ee4e4ff1a4c7078aa942e69df934f948b4913117f6641" }, "downloads": -1, "filename": "awkward1-0.1.25-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "fe4995d1db82b27610cddee2a7452da0", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 683772, "upload_time": "2019-11-27T23:08:32", "upload_time_iso_8601": "2019-11-27T23:08:32.049598Z", "url": "https://files.pythonhosted.org/packages/ee/4b/1ed49fab968e8541d78471628ba43c0f7c3830a51d443bc924bf9878ceee/awkward1-0.1.25-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8d9c5ba5224de119f04202371962587a", "sha256": "312ca193a90d57dbcde40f11d060271ca768d71bb77a4c4311bc2294552b7261" }, "downloads": -1, "filename": "awkward1-0.1.25.tar.gz", "has_sig": false, "md5_digest": "8d9c5ba5224de119f04202371962587a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 284733, "upload_time": "2019-11-27T23:13:35", "upload_time_iso_8601": "2019-11-27T23:13:35.028250Z", "url": "https://files.pythonhosted.org/packages/d6/8d/a9c53c6298d76dc8715844cec4d4a943ae8b4932ba5c91fa9086aaa121ba/awkward1-0.1.25.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.38": [ { "comment_text": "", "digests": { "md5": "b2d22930de535f8d445d91a13962933f", "sha256": "632c813916ae33efb62b8a14150c97f9c504395a3dee845cb606faedd3140196" }, "downloads": -1, "filename": "awkward1-0.1.38-cp27-cp27m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "b2d22930de535f8d445d91a13962933f", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 1484004, "upload_time": "2019-12-28T16:16:59", "upload_time_iso_8601": "2019-12-28T16:16:59.220246Z", "url": "https://files.pythonhosted.org/packages/19/ed/55a1d530e148fd686036603e5d04451a6e41c114fcce8a8502ed5069689a/awkward1-0.1.38-cp27-cp27m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "10df1bc21d0c20ea6dab091179825657", "sha256": "b07fc1fade79a8fc7babe9372a91f839f3268c53438d3e0520d0667939af4269" }, "downloads": -1, "filename": "awkward1-0.1.38-cp27-cp27m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "10df1bc21d0c20ea6dab091179825657", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 1829526, "upload_time": "2019-12-28T16:21:43", "upload_time_iso_8601": "2019-12-28T16:21:43.022383Z", "url": "https://files.pythonhosted.org/packages/2e/24/8476f3b9c3b3ccee0fc779d05eb09c429d955826e6a5b8f1198704dbbc67/awkward1-0.1.38-cp27-cp27m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5548b720226f223b320709afa15e3a19", "sha256": "8270a1f40ed229e11ca996d36fad35c59547a791f52cd17070db1416c1769b1c" }, "downloads": -1, "filename": "awkward1-0.1.38-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "5548b720226f223b320709afa15e3a19", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 1813107, "upload_time": "2019-12-28T16:23:22", "upload_time_iso_8601": "2019-12-28T16:23:22.408548Z", "url": "https://files.pythonhosted.org/packages/b7/76/4a7a66a866cbca510b0868c726db98906714ba088d896177e98f68819a1b/awkward1-0.1.38-cp27-cp27m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6d68930a2238af890f09c34333c569e4", "sha256": "7791cf602556509370c493315cf0de136efcb41e3b9a06e49a15c2b5246a30df" }, "downloads": -1, "filename": "awkward1-0.1.38-cp27-cp27m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "6d68930a2238af890f09c34333c569e4", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 1866525, "upload_time": "2019-12-28T16:26:21", "upload_time_iso_8601": "2019-12-28T16:26:21.908708Z", "url": "https://files.pythonhosted.org/packages/9a/7a/8a82fd40af20cb241e20bcb4d0478d6aa8c072a79c1b44576fff13d41ef6/awkward1-0.1.38-cp27-cp27m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8b7ab55e40b39f588d5c765214f0fb7f", "sha256": "515c155d49aa95b59eac4e774ca9a823461ea944f70b9b2f804d028668e6b87c" }, "downloads": -1, "filename": "awkward1-0.1.38-cp27-cp27mu-manylinux1_i686.whl", "has_sig": false, "md5_digest": "8b7ab55e40b39f588d5c765214f0fb7f", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 1829552, "upload_time": "2019-12-28T16:21:44", "upload_time_iso_8601": "2019-12-28T16:21:44.962777Z", "url": "https://files.pythonhosted.org/packages/2d/3e/c9ebab2ef73c1dc1caae3bee0c1698d52078f52cccd9f189b85d18716c49/awkward1-0.1.38-cp27-cp27mu-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8e64bb2ad00b6bacbefcbde75e03b264", "sha256": "ca364d1190d94f6504e5c2be845df341aac83c83fa9d74162d56c041fc87f2ab" }, "downloads": -1, "filename": "awkward1-0.1.38-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "8e64bb2ad00b6bacbefcbde75e03b264", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 1813118, "upload_time": "2019-12-28T16:23:24", "upload_time_iso_8601": "2019-12-28T16:23:24.554810Z", "url": "https://files.pythonhosted.org/packages/a2/ec/e3e13b1c7e63aee3b286b8dc2e530730e2e143f67e4d41ce6363a953f06c/awkward1-0.1.38-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5e3898fa2fe4c3e2612c920608c71ac2", "sha256": "fcfa765ce23631eb47d3d72d2002b97ab430f564312621ccea82eb2a9d0ad4f5" }, "downloads": -1, "filename": "awkward1-0.1.38-cp27-cp27mu-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "5e3898fa2fe4c3e2612c920608c71ac2", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 1866569, "upload_time": "2019-12-28T16:26:24", "upload_time_iso_8601": "2019-12-28T16:26:24.500277Z", "url": "https://files.pythonhosted.org/packages/d3/5e/3b0c93661104922234bfaae9aa9ed9c5c9a016c7ef554319461556e338c2/awkward1-0.1.38-cp27-cp27mu-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5d8c88983430baf7933e0907329541dc", "sha256": "400fb92a551e66a5ac090f6265110a71676a86e34af6f86fa14811c714acb18f" }, "downloads": -1, "filename": "awkward1-0.1.38-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "5d8c88983430baf7933e0907329541dc", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 1687343, "upload_time": "2019-12-28T16:18:26", "upload_time_iso_8601": "2019-12-28T16:18:26.143702Z", "url": "https://files.pythonhosted.org/packages/18/db/4808775f613437ce966b141013295f344919c2db09b7e902cf92e7d7e7f1/awkward1-0.1.38-cp27-cp27m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "31c053790ce6cb37d71a2e84897f5da9", "sha256": "f30fb507593fbe237342f73ba76f80ccb1ddcda16e62029f84089e5f620e4d22" }, "downloads": -1, "filename": "awkward1-0.1.38-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "31c053790ce6cb37d71a2e84897f5da9", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 2312470, "upload_time": "2019-12-28T16:18:21", "upload_time_iso_8601": "2019-12-28T16:18:21.727540Z", "url": "https://files.pythonhosted.org/packages/72/8d/8a9c5495cc201d747e5dd4ec4a926108fd2dc60ff3dc3d8dd15c84cb9e83/awkward1-0.1.38-cp27-cp27m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d6395628db6acd83156fafca73fa0cdd", "sha256": "72f9ecead39a2ea4faed961edf17e00c282f83d4b001650223a9e13d76ea24db" }, "downloads": -1, "filename": "awkward1-0.1.38-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "d6395628db6acd83156fafca73fa0cdd", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 1836039, "upload_time": "2019-12-28T16:21:47", "upload_time_iso_8601": "2019-12-28T16:21:47.011186Z", "url": "https://files.pythonhosted.org/packages/58/ff/07143761969c60d2baef743455e33d9489717e4a5bef44e7dc103a59e6f5/awkward1-0.1.38-cp34-cp34m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1bfc34731f20313b13b78e520e4348f3", "sha256": "a4fb1bcfa948db98b2d8013e16b0798a6500666255c15ec2a5a8138023e11585" }, "downloads": -1, "filename": "awkward1-0.1.38-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "1bfc34731f20313b13b78e520e4348f3", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 1819741, "upload_time": "2019-12-28T16:23:26", "upload_time_iso_8601": "2019-12-28T16:23:26.709853Z", "url": "https://files.pythonhosted.org/packages/6f/30/d52f941083edef8d83b2ca3a17c1856238d96d8c21dd6678c3c8ceb1f6ff/awkward1-0.1.38-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a3b5e6cacbe729cf78e86c8545e2cde5", "sha256": "420dda936a35e731890c48881029f39e3e0d7fddc33257a845c0f02842dad965" }, "downloads": -1, "filename": "awkward1-0.1.38-cp34-cp34m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "a3b5e6cacbe729cf78e86c8545e2cde5", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 1868631, "upload_time": "2019-12-28T16:26:26", "upload_time_iso_8601": "2019-12-28T16:26:26.698784Z", "url": "https://files.pythonhosted.org/packages/e9/19/b5aaa158b1511f681f61e2896eb5ee890d341a25c368a9118a7b6e4e3c71/awkward1-0.1.38-cp34-cp34m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "40310534238673d38440e39eb7ce4ac1", "sha256": "861a667b63188bf7cd654a88a56c4d11151e940d88993bacc43cf9a421bea880" }, "downloads": -1, "filename": "awkward1-0.1.38-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "40310534238673d38440e39eb7ce4ac1", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 1834077, "upload_time": "2019-12-28T16:21:49", "upload_time_iso_8601": "2019-12-28T16:21:49.200235Z", "url": "https://files.pythonhosted.org/packages/e2/30/bee7947033c1d85412d0eb9187019946b4abe4c1cb0c340653a971cec014/awkward1-0.1.38-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c77dcdbcc6f37fbacbba7c3299df71b6", "sha256": "42100520071dc2160ed23e14cbe20ef466f0fdf11ece75a0af199a8bb075f6c2" }, "downloads": -1, "filename": "awkward1-0.1.38-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "c77dcdbcc6f37fbacbba7c3299df71b6", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 1821236, "upload_time": "2019-12-28T16:23:28", "upload_time_iso_8601": "2019-12-28T16:23:28.957969Z", "url": "https://files.pythonhosted.org/packages/8a/f2/9c6cb2844b049b93962b3b8bd18f7209f9d327e9437e1abf3bec26041c6c/awkward1-0.1.38-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5c604c78ed5a34ced90b5d47ba055faa", "sha256": "424bcb21ba86766b1ce62acc9b3512dce59616b1fbf08e5e05dc568adf678749" }, "downloads": -1, "filename": "awkward1-0.1.38-cp35-cp35m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "5c604c78ed5a34ced90b5d47ba055faa", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 1868207, "upload_time": "2019-12-28T16:26:28", "upload_time_iso_8601": "2019-12-28T16:26:28.620580Z", "url": "https://files.pythonhosted.org/packages/33/4f/12142b2819f5d88865b79af19a02876d4f56e9e43b012df47112cc1ff567/awkward1-0.1.38-cp35-cp35m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "82ed60c08c449599d399aa90fcbb3ab9", "sha256": "79807f3f9248ef67d494ce57c7b9ef6d0a1060a85e7528fc49dbe48ce9deb3f1" }, "downloads": -1, "filename": "awkward1-0.1.38-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "82ed60c08c449599d399aa90fcbb3ab9", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 1686657, "upload_time": "2019-12-28T16:18:47", "upload_time_iso_8601": "2019-12-28T16:18:47.013721Z", "url": "https://files.pythonhosted.org/packages/c5/e8/ea5e2398c7a0a5d1dd0913c19cdd9eafc41123dc56d67a844ac67180463d/awkward1-0.1.38-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5a64d10a2faa87eb9dc19e3382ecbf1e", "sha256": "9e31dbd092b51d66807ccb9fcc5e86eccfef30c2fd66fae6499f65f89a01a2a4" }, "downloads": -1, "filename": "awkward1-0.1.38-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "5a64d10a2faa87eb9dc19e3382ecbf1e", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 2309132, "upload_time": "2019-12-28T16:20:06", "upload_time_iso_8601": "2019-12-28T16:20:06.570378Z", "url": "https://files.pythonhosted.org/packages/23/b4/1e1f267dc77b04b9dd79462345294c774e6416c5caca9a78e48b2c445a59/awkward1-0.1.38-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cd7221cf5e2551b529f53aa5e8c4ff40", "sha256": "fe4c8b7cbcc67ad8847cc1b3ea783fbb0843cc23b78fa920f3aab22a3354daa6" }, "downloads": -1, "filename": "awkward1-0.1.38-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "cd7221cf5e2551b529f53aa5e8c4ff40", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 1484142, "upload_time": "2019-12-28T16:17:20", "upload_time_iso_8601": "2019-12-28T16:17:20.750589Z", "url": "https://files.pythonhosted.org/packages/7b/e8/3ba0cc6acbb14898c2a2f816300fde663a232443656e5c3ae128a78745d8/awkward1-0.1.38-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2e6574a9a6a09b1e6a5fb312a716dfb0", "sha256": "eb0b67444bb5f95d580cfc1968092432e7be66c135ac5399f9ee72d3ee9c28ce" }, "downloads": -1, "filename": "awkward1-0.1.38-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "2e6574a9a6a09b1e6a5fb312a716dfb0", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 1834064, "upload_time": "2019-12-28T16:21:50", "upload_time_iso_8601": "2019-12-28T16:21:50.954131Z", "url": "https://files.pythonhosted.org/packages/bf/30/63ea45813f85908b026941edf360ac08eacfab6cf1ce94446626aad01a1c/awkward1-0.1.38-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "79e4a32487e3aab59b4d4dfaa4bac5f1", "sha256": "7f9fbe703c18d7f233e3ebe7e295c229e41fc2477ebf726755d9a4c969afbbad" }, "downloads": -1, "filename": "awkward1-0.1.38-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "79e4a32487e3aab59b4d4dfaa4bac5f1", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 1821250, "upload_time": "2019-12-28T16:23:30", "upload_time_iso_8601": "2019-12-28T16:23:30.763835Z", "url": "https://files.pythonhosted.org/packages/55/e1/41bc395e99dafc2345eb9d5c6cd038925607f0e95fd04c18f39944be9725/awkward1-0.1.38-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "aab664766f6d7df4edd72764b5fc889d", "sha256": "81debc4ecd094e595ae99030adbb379c8c143791adea7b2d097d8c72deb942ef" }, "downloads": -1, "filename": "awkward1-0.1.38-cp36-cp36m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "aab664766f6d7df4edd72764b5fc889d", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 1868208, "upload_time": "2019-12-28T16:26:30", "upload_time_iso_8601": "2019-12-28T16:26:30.556944Z", "url": "https://files.pythonhosted.org/packages/d9/87/325b323454237a3b04d08d2c9106f189cae5c726049f5cc85dd662b60ebd/awkward1-0.1.38-cp36-cp36m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c45d2c8dd7340d86e9b6172c856603e4", "sha256": "48c16f196ed965e3244394b5e58cbed99ea832c9f2b893d7c42960fa1d365e9a" }, "downloads": -1, "filename": "awkward1-0.1.38-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "c45d2c8dd7340d86e9b6172c856603e4", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 1686693, "upload_time": "2019-12-28T16:20:36", "upload_time_iso_8601": "2019-12-28T16:20:36.358189Z", "url": "https://files.pythonhosted.org/packages/a9/55/273047edb9e8e593a4fbbae298d86a1e585431f8180b79e054cea8f13da4/awkward1-0.1.38-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b0d1cb83f50d8b774cbbd74b77fa6cce", "sha256": "a4fb11805cf0b8f276925ad88bd3642628e1e0cbcc27fcefebd8077f40424cd0" }, "downloads": -1, "filename": "awkward1-0.1.38-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "b0d1cb83f50d8b774cbbd74b77fa6cce", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 2309179, "upload_time": "2019-12-28T16:21:04", "upload_time_iso_8601": "2019-12-28T16:21:04.848662Z", "url": "https://files.pythonhosted.org/packages/ba/f5/0dfbcd114d0adf5114478101cfdf80a3ab0973ab8def4b7c43af94a67346/awkward1-0.1.38-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "29f44ab00bb85293a6fcd3fe928f9d89", "sha256": "17b7b71edf6ccd3c90ae92c49790056d7c002aeaf14789c3d30a212f0fb5ceef" }, "downloads": -1, "filename": "awkward1-0.1.38-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "29f44ab00bb85293a6fcd3fe928f9d89", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 1484302, "upload_time": "2019-12-28T16:18:02", "upload_time_iso_8601": "2019-12-28T16:18:02.014258Z", "url": "https://files.pythonhosted.org/packages/9e/df/5cca91d37d1146a3faa02d32f44f525114331b5f8d291ed28b63414e74e6/awkward1-0.1.38-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "57802e80511456983972c0572a1cf71f", "sha256": "a292c027c909c5477abaf4e042476bd88c157440dd8278f5936b7b764a92c039" }, "downloads": -1, "filename": "awkward1-0.1.38-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "57802e80511456983972c0572a1cf71f", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 1836520, "upload_time": "2019-12-28T16:21:52", "upload_time_iso_8601": "2019-12-28T16:21:52.729566Z", "url": "https://files.pythonhosted.org/packages/69/05/283fc1b792eb42d1ea17be419a2242f194be9011c81f2d79d0add6ea183a/awkward1-0.1.38-cp37-cp37m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8311a87c3c79882b424a44d6252db85d", "sha256": "c9b84380856de7f246f4023ebe1a43e0c5ff331c515d46aeb209f302bbdbc0a9" }, "downloads": -1, "filename": "awkward1-0.1.38-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "8311a87c3c79882b424a44d6252db85d", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 1821772, "upload_time": "2019-12-28T16:23:32", "upload_time_iso_8601": "2019-12-28T16:23:32.819411Z", "url": "https://files.pythonhosted.org/packages/08/64/a4521a7bf87e0e0ede8b09b46f7e940d46de9e2661c8308d4249dc0d1186/awkward1-0.1.38-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8dcc57217181fc9c9d53b846695a5026", "sha256": "11c467d4eb0fcb4b09fc72768289d218438bcddcbb6f2e28747f77e65ad774e6" }, "downloads": -1, "filename": "awkward1-0.1.38-cp37-cp37m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "8dcc57217181fc9c9d53b846695a5026", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 1867735, "upload_time": "2019-12-28T16:26:32", "upload_time_iso_8601": "2019-12-28T16:26:32.415205Z", "url": "https://files.pythonhosted.org/packages/2b/ed/569513e374d7e5da8c36ad68b2e19a5171f3735011990d5e00881aae88b4/awkward1-0.1.38-cp37-cp37m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3b7ba03eaf2f9a7e348d3d34580b353b", "sha256": "252096d91815ce177a585fcfe0e4b499979552835d8afa65d1c2ca431cd62821" }, "downloads": -1, "filename": "awkward1-0.1.38-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "3b7ba03eaf2f9a7e348d3d34580b353b", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 1686754, "upload_time": "2019-12-28T16:21:04", "upload_time_iso_8601": "2019-12-28T16:21:04.853989Z", "url": "https://files.pythonhosted.org/packages/e1/f7/117d397871c41cfee7513a47c1daa136a10b44b83bdeaad49389408ceb17/awkward1-0.1.38-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f287bd3f632a728f5a563cd46b266ffd", "sha256": "fb06c0f609e42e5ca6770ff44cecb2f5a2396e84c92b0f3f68c90de8b5b17c56" }, "downloads": -1, "filename": "awkward1-0.1.38-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "f287bd3f632a728f5a563cd46b266ffd", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 2309275, "upload_time": "2019-12-28T16:21:32", "upload_time_iso_8601": "2019-12-28T16:21:32.567777Z", "url": "https://files.pythonhosted.org/packages/c5/44/6779af274f6312b40293b3bc675e8655bb0993c3d2420cee4caf154f952a/awkward1-0.1.38-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3d4ec41737abfcc4d1d76276cd706887", "sha256": "b856695ad641d25a0cbf58a019853392c6f6a4e167261b9e33a988f7b793df79" }, "downloads": -1, "filename": "awkward1-0.1.38-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "3d4ec41737abfcc4d1d76276cd706887", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 1505981, "upload_time": "2019-12-28T16:17:44", "upload_time_iso_8601": "2019-12-28T16:17:44.344960Z", "url": "https://files.pythonhosted.org/packages/2b/0b/8ed73c6550d8395068176c85161c05d3dfa17388b57659a9f0d4ad5dc440/awkward1-0.1.38-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "00d9b0d20e7e06c900feeca215cfa6ff", "sha256": "fa73bd6088597d945064e5a8765410bdbb653aa992e1102808a25a1d7e783f08" }, "downloads": -1, "filename": "awkward1-0.1.38-cp38-cp38-manylinux1_i686.whl", "has_sig": false, "md5_digest": "00d9b0d20e7e06c900feeca215cfa6ff", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 1816392, "upload_time": "2019-12-28T16:21:54", "upload_time_iso_8601": "2019-12-28T16:21:54.960590Z", "url": "https://files.pythonhosted.org/packages/14/3f/55164927c72174640e31c2475cfe0cea986b419708d4f2a0127424c4096d/awkward1-0.1.38-cp38-cp38-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d950ff6eddb8157e96a42ff6b705dd91", "sha256": "6bbe1e438c41b9eb3f432cc49f4fad56140fafc4fdddcd3350d4b84df733b4d5" }, "downloads": -1, "filename": "awkward1-0.1.38-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "d950ff6eddb8157e96a42ff6b705dd91", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 1796877, "upload_time": "2019-12-28T16:23:35", "upload_time_iso_8601": "2019-12-28T16:23:35.307509Z", "url": "https://files.pythonhosted.org/packages/d1/06/8be880bb678c47aebb981fdf5b3f5f4fef0bf03fdab31b1ec1d56d49c92b/awkward1-0.1.38-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "327506dd9ec4df6a67cb831182c7e7fc", "sha256": "77649adcfb0aa92834b43fc922fc86b5793e2f65ece2bf9149b8dc0e0c9c90eb" }, "downloads": -1, "filename": "awkward1-0.1.38-cp38-cp38-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "327506dd9ec4df6a67cb831182c7e7fc", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 1867167, "upload_time": "2019-12-28T16:26:34", "upload_time_iso_8601": "2019-12-28T16:26:34.216629Z", "url": "https://files.pythonhosted.org/packages/e9/2f/f4aa1ec4bdb6021aabe3c4378a82c7de4543982f142f537f2ce6e160b020/awkward1-0.1.38-cp38-cp38-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "195ba237e7a13faadfb201f4ad987946", "sha256": "04acacbc86196000ae61960cbab659973704dabacdf4504e5347bad6675b5635" }, "downloads": -1, "filename": "awkward1-0.1.38-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "195ba237e7a13faadfb201f4ad987946", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 1682807, "upload_time": "2019-12-28T16:21:36", "upload_time_iso_8601": "2019-12-28T16:21:36.460907Z", "url": "https://files.pythonhosted.org/packages/b2/14/7e34729f3641060bebf2f25037dda3afcad49411f791cd63ade208fcb491/awkward1-0.1.38-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "542151cc70d2df512c37c4fadf0eee11", "sha256": "af05b0d811d1f6c6c13f2fdeb5084310a8d658300dfb594620a0556c24df7c2b" }, "downloads": -1, "filename": "awkward1-0.1.38-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "542151cc70d2df512c37c4fadf0eee11", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 2306054, "upload_time": "2019-12-28T16:21:05", "upload_time_iso_8601": "2019-12-28T16:21:05.553350Z", "url": "https://files.pythonhosted.org/packages/71/ed/5160fffd9c244d2ceb0a3dcb1502674a967d437f95c40a455252504c2ee8/awkward1-0.1.38-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "071b5ff7216f1dd88bb46da4d6c2fcec", "sha256": "1c87defa8c1661ffe36f8a785fa9a60ae3b70484984a935e710cd8cb1f763fd7" }, "downloads": -1, "filename": "awkward1-0.1.38.tar.gz", "has_sig": false, "md5_digest": "071b5ff7216f1dd88bb46da4d6c2fcec", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 308173, "upload_time": "2019-12-28T16:26:36", "upload_time_iso_8601": "2019-12-28T16:26:36.094360Z", "url": "https://files.pythonhosted.org/packages/13/e0/08b7c883fc1a8d0ade2afb05510c09c18ba0a94fc98345d2f28a9878f583/awkward1-0.1.38.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.7": [ { "comment_text": "", "digests": { "md5": "c1b8c2f3ce3a93ae11f83339df862be1", "sha256": "a1dcdff115df1afd4f28ae6c6632865348bc0b743cc128aec8774fda49a70ed5" }, "downloads": -1, "filename": "awkward1-0.1.7-cp27-cp27m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "c1b8c2f3ce3a93ae11f83339df862be1", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 351262, "upload_time": "2019-09-26T20:02:45", "upload_time_iso_8601": "2019-09-26T20:02:45.838465Z", "url": "https://files.pythonhosted.org/packages/1c/3e/7b554977583895e2343a4b37eaa83233d124f40b3507a05ac022bbc7a08c/awkward1-0.1.7-cp27-cp27m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ae42291936db9ec47d849abe531f7038", "sha256": "8798e2483229e301ce4a0c9bfe80d594e0ce32467f052bad7cc205f94b078905" }, "downloads": -1, "filename": "awkward1-0.1.7-cp27-cp27m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "ae42291936db9ec47d849abe531f7038", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 425953, "upload_time": "2019-09-26T20:05:22", "upload_time_iso_8601": "2019-09-26T20:05:22.611358Z", "url": "https://files.pythonhosted.org/packages/bf/3a/4290c14718847b0a1987f4e610fdaf07fb4fb13238e9ab95ae286aa92026/awkward1-0.1.7-cp27-cp27m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "aa328563823b5e836d3b241d25e88b00", "sha256": "a8c5a64f1a17760d269c482141d2453ee6605cf5c7b1dacbee43a04184073abb" }, "downloads": -1, "filename": "awkward1-0.1.7-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "aa328563823b5e836d3b241d25e88b00", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 412703, "upload_time": "2019-09-26T20:05:18", "upload_time_iso_8601": "2019-09-26T20:05:18.570803Z", "url": "https://files.pythonhosted.org/packages/be/0e/730ac0583f1e8d1019343edd133449c508df08e813df2d83ef4317e54c7c/awkward1-0.1.7-cp27-cp27m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "39251b8ab457ef7448c512cdbc1c8091", "sha256": "7ccd75a4f77833f1a563cc777307348388df16c709e32ab0bdefb4b4e391ae7d" }, "downloads": -1, "filename": "awkward1-0.1.7-cp27-cp27m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "39251b8ab457ef7448c512cdbc1c8091", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 424999, "upload_time": "2019-09-26T20:05:38", "upload_time_iso_8601": "2019-09-26T20:05:38.218857Z", "url": "https://files.pythonhosted.org/packages/05/53/251d40f06c24764cae4fb96be76bbf1f0f376bf29c3600a580b7bdc71603/awkward1-0.1.7-cp27-cp27m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a171c326b5ed92eae84b1429bc3f7916", "sha256": "0f2c36c47ed28fe10a2e850cd781c1bdc43618d70d1f5f391f3f56e85ab95c5d" }, "downloads": -1, "filename": "awkward1-0.1.7-cp27-cp27mu-manylinux1_i686.whl", "has_sig": false, "md5_digest": "a171c326b5ed92eae84b1429bc3f7916", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 425983, "upload_time": "2019-09-26T20:05:25", "upload_time_iso_8601": "2019-09-26T20:05:25.190864Z", "url": "https://files.pythonhosted.org/packages/c7/29/6d9e65008503321bb2f6455d597953e49e045048801a496fe2e26d5ebb5e/awkward1-0.1.7-cp27-cp27mu-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2062ffc77f7e72e02c252c4f355606c0", "sha256": "888b030e198d899f8d0e43e1a57a8786859e37e7f63209ad7e7d459e9a8faaf4" }, "downloads": -1, "filename": "awkward1-0.1.7-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "2062ffc77f7e72e02c252c4f355606c0", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 412708, "upload_time": "2019-09-26T20:05:20", "upload_time_iso_8601": "2019-09-26T20:05:20.208951Z", "url": "https://files.pythonhosted.org/packages/23/da/64cd3594e776dd2c82794859f4f65580e79b306eb243485071b73697c2ce/awkward1-0.1.7-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a93b6ef1f949c37eebaf328a0503a715", "sha256": "7be7d40c180fd7caedd721592831a9b9c1d2bad6182c9174b8e4d3749653d1b6" }, "downloads": -1, "filename": "awkward1-0.1.7-cp27-cp27mu-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "a93b6ef1f949c37eebaf328a0503a715", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 425015, "upload_time": "2019-09-26T20:05:40", "upload_time_iso_8601": "2019-09-26T20:05:40.300384Z", "url": "https://files.pythonhosted.org/packages/7a/83/0b74089f563fb7401935c166b7e2cf6c119bbabfa066b28c8ad0368b0758/awkward1-0.1.7-cp27-cp27mu-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4882d45943ac5209ec03ef5905def0b6", "sha256": "86a1167a78aeecb6ef505eba294b5543c5bebd7e23003b001d7d891d70b4caad" }, "downloads": -1, "filename": "awkward1-0.1.7-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "4882d45943ac5209ec03ef5905def0b6", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 254451, "upload_time": "2019-09-26T20:03:24", "upload_time_iso_8601": "2019-09-26T20:03:24.192287Z", "url": "https://files.pythonhosted.org/packages/f5/ae/43733176313c63e23ce498732e479da90b364bf1e36263f2f5c15a03ed06/awkward1-0.1.7-cp27-cp27m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "878b0cb5bc54e341a6592d97859ab638", "sha256": "af0eb94b596f8c4a3a3b1129022770a7a2ffbfc5ae9eba62716de04b9edb6ff1" }, "downloads": -1, "filename": "awkward1-0.1.7-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "878b0cb5bc54e341a6592d97859ab638", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 303068, "upload_time": "2019-09-26T20:04:02", "upload_time_iso_8601": "2019-09-26T20:04:02.995412Z", "url": "https://files.pythonhosted.org/packages/1c/4d/96a2ac4d11c1460942c22e3bbffedc48db84bcdc08ad0418207678bfd6d9/awkward1-0.1.7-cp27-cp27m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3269103c2750cb764b380069c8ae9875", "sha256": "1c392aa5d9a6657897cb7bd36a6f42cc418a4df693fa082daeb2d986ef95bcea" }, "downloads": -1, "filename": "awkward1-0.1.7-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "3269103c2750cb764b380069c8ae9875", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 426677, "upload_time": "2019-09-26T20:05:27", "upload_time_iso_8601": "2019-09-26T20:05:27.670777Z", "url": "https://files.pythonhosted.org/packages/e7/d2/65788bf7cd0e37e0e20bf6cc0dc36813fb0ac55168d2e5ae59c600a7c800/awkward1-0.1.7-cp34-cp34m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6b51049bb97e35b96ba19ef9d3608787", "sha256": "df03d877d5b8d51680714535a19e65e65722d8b33b548540276b8117af75367b" }, "downloads": -1, "filename": "awkward1-0.1.7-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "6b51049bb97e35b96ba19ef9d3608787", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 412718, "upload_time": "2019-09-26T20:05:21", "upload_time_iso_8601": "2019-09-26T20:05:21.893404Z", "url": "https://files.pythonhosted.org/packages/5a/69/0ffda38e57f6fe304595de0e2acf7c5028f02e2c521af374bfc9502c925f/awkward1-0.1.7-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "89ff6b5b7fffe06f3ba5a5c0110f352c", "sha256": "bcf16c73a93faca462f5df1a3ff9fec474dc778a7ebc55eb2bb628ccef09a34c" }, "downloads": -1, "filename": "awkward1-0.1.7-cp34-cp34m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "89ff6b5b7fffe06f3ba5a5c0110f352c", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 424882, "upload_time": "2019-09-26T20:05:41", "upload_time_iso_8601": "2019-09-26T20:05:41.825881Z", "url": "https://files.pythonhosted.org/packages/9d/71/8e849004e15fcc411c0502f68820bdae960ec37ea1181a8905bd35819d70/awkward1-0.1.7-cp34-cp34m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fe58d654d8bcc0328686fdfe1313270a", "sha256": "a774d639ca2ee9bd296277b54ee50a35c51c2cdccff7ae73521fb4eba6c53726" }, "downloads": -1, "filename": "awkward1-0.1.7-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "fe58d654d8bcc0328686fdfe1313270a", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 426575, "upload_time": "2019-09-26T20:05:30", "upload_time_iso_8601": "2019-09-26T20:05:30.302781Z", "url": "https://files.pythonhosted.org/packages/1b/5d/69b83a3058e152f8325389c76d70a81f339015b3734b5740b6b346790280/awkward1-0.1.7-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f7913f589d3c93f0fc33df20904104f1", "sha256": "3de486f6db4867fd63bf027c247849ca4cc74b77c722d52dd0df3636009b0b73" }, "downloads": -1, "filename": "awkward1-0.1.7-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "f7913f589d3c93f0fc33df20904104f1", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 412541, "upload_time": "2019-09-26T20:05:23", "upload_time_iso_8601": "2019-09-26T20:05:23.861909Z", "url": "https://files.pythonhosted.org/packages/6f/07/e6a6499d498cfd565c886d84f97581e2e6bfcd305fc29e368abf4bfc83be/awkward1-0.1.7-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7e732ab5fcff57cbfd9ee54308ce6b63", "sha256": "d2121aeb6ac8e10e952cbbf1017b77b1962906f6306f87014f62b5bfb3ace76d" }, "downloads": -1, "filename": "awkward1-0.1.7-cp35-cp35m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "7e732ab5fcff57cbfd9ee54308ce6b63", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 425294, "upload_time": "2019-09-26T20:05:43", "upload_time_iso_8601": "2019-09-26T20:05:43.876070Z", "url": "https://files.pythonhosted.org/packages/fc/e7/ad709493ddf2988bab36fc4053f59b00741284fbbc6e5774e79479114f66/awkward1-0.1.7-cp35-cp35m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4ff8211629036f1b56c2c5cec5154064", "sha256": "6ecb30c8d6ec511a7709779b5591251c5e02cbc03aabeb876d08c87c9abd8410" }, "downloads": -1, "filename": "awkward1-0.1.7-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "4ff8211629036f1b56c2c5cec5154064", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 253736, "upload_time": "2019-09-26T20:03:19", "upload_time_iso_8601": "2019-09-26T20:03:19.520063Z", "url": "https://files.pythonhosted.org/packages/f7/57/0a7e52357a93866dbdcb0c3092db636306ecc4f4cc792d539ce6a56f38af/awkward1-0.1.7-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f36da12cba57174f836255d68834ba3e", "sha256": "1d71cdb2a812c0584e600a910cd736fe81ca17c7f2a56332287dc6ab3363c894" }, "downloads": -1, "filename": "awkward1-0.1.7-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "f36da12cba57174f836255d68834ba3e", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 301476, "upload_time": "2019-09-26T20:03:32", "upload_time_iso_8601": "2019-09-26T20:03:32.721916Z", "url": "https://files.pythonhosted.org/packages/ac/80/3a7c607c60cb4122c1f88e4c033a96395facdffe1e869d602ca958eeaca0/awkward1-0.1.7-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c82f3c20b0f635cada93cc8ef68015af", "sha256": "434d9158fbb0afdb9d2c15badf631571719cbb3c6bc40aaa4da93970c013bd0b" }, "downloads": -1, "filename": "awkward1-0.1.7-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "c82f3c20b0f635cada93cc8ef68015af", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 350436, "upload_time": "2019-09-26T20:02:41", "upload_time_iso_8601": "2019-09-26T20:02:41.358222Z", "url": "https://files.pythonhosted.org/packages/a5/bd/53640ac9b375209fee7fa4c38961ecf4dfe764e3d4dfa353f4e5b095cc29/awkward1-0.1.7-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d0bb24b12eb97d45e18c95577e83d0f9", "sha256": "5d4c399b2fc030759ae7c59447258da9e1259e9f7faa3ff417ad7e88c9bd87ef" }, "downloads": -1, "filename": "awkward1-0.1.7-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "d0bb24b12eb97d45e18c95577e83d0f9", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 426574, "upload_time": "2019-09-26T20:05:33", "upload_time_iso_8601": "2019-09-26T20:05:33.116713Z", "url": "https://files.pythonhosted.org/packages/09/69/5da7ec9f1dcae58a271b8debe787eb633eabd759e64a34c04d02060358be/awkward1-0.1.7-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "44ef69437ae647599a9a7f49a06dd440", "sha256": "82c0622d08ffd6e20c96b249ee940a29ce5f9da567244a0120fbc7c154b20f3c" }, "downloads": -1, "filename": "awkward1-0.1.7-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "44ef69437ae647599a9a7f49a06dd440", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 412540, "upload_time": "2019-09-26T20:05:26", "upload_time_iso_8601": "2019-09-26T20:05:26.433244Z", "url": "https://files.pythonhosted.org/packages/7e/4e/61091a7c393a4d01b4dc196bad101f23843d064c068feedbfa1d97ae3d27/awkward1-0.1.7-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f5d0490828d25e5ca53bcd4f5f53ba9d", "sha256": "cab514baa17e577e5a460108b1f64d353f254666031a6163a6c6b57a6bc8ee23" }, "downloads": -1, "filename": "awkward1-0.1.7-cp36-cp36m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "f5d0490828d25e5ca53bcd4f5f53ba9d", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 425293, "upload_time": "2019-09-26T20:05:45", "upload_time_iso_8601": "2019-09-26T20:05:45.533531Z", "url": "https://files.pythonhosted.org/packages/f7/10/939fdb06109057c19ce3b178dce0ef87f316e6ef253f3873abd0f0786840/awkward1-0.1.7-cp36-cp36m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fffd8f804babc59b30b47599a3e32a4c", "sha256": "8df3cea5ad11fb4c68c14125d0eed6b81be80a33ae3235ee117fbf3d8173fe94" }, "downloads": -1, "filename": "awkward1-0.1.7-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "fffd8f804babc59b30b47599a3e32a4c", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 253777, "upload_time": "2019-09-26T20:05:05", "upload_time_iso_8601": "2019-09-26T20:05:05.899258Z", "url": "https://files.pythonhosted.org/packages/2b/ed/9ef3c6d310506b07a87217937e35ef72056b89f850f1988d6dd77b984334/awkward1-0.1.7-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "28a07719bf695d7883d0fa588708439d", "sha256": "788bf31dfee78e2d35ccdba27f4a1a73df0af2c54dae210124c0be1a6357ad3f" }, "downloads": -1, "filename": "awkward1-0.1.7-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "28a07719bf695d7883d0fa588708439d", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 301515, "upload_time": "2019-09-26T20:04:48", "upload_time_iso_8601": "2019-09-26T20:04:48.218605Z", "url": "https://files.pythonhosted.org/packages/a6/d4/c07bbccd3319b0a9f71c4dc2a4c7a7eb0f059a8ec5a0b581e41b142c91bf/awkward1-0.1.7-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "50811d982cbbc345147fb2575bc6205f", "sha256": "4dc28bb2d16bfdc2d1239c596e5c5268dc29856ed57c3e149e06a19715a1ae02" }, "downloads": -1, "filename": "awkward1-0.1.7-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "50811d982cbbc345147fb2575bc6205f", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 350522, "upload_time": "2019-09-26T20:02:40", "upload_time_iso_8601": "2019-09-26T20:02:40.058062Z", "url": "https://files.pythonhosted.org/packages/81/5a/b15846b8e4382c6b7814342ce45080e6964891dc333adf0f70ad614bea5e/awkward1-0.1.7-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "74a0701a5e9822427260bbe41336805e", "sha256": "7a4bbc67346b678aa3ec1259a10c3549e52bc148c41fa7a4763edef9ac6ebc0b" }, "downloads": -1, "filename": "awkward1-0.1.7-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "74a0701a5e9822427260bbe41336805e", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 426436, "upload_time": "2019-09-26T20:05:34", "upload_time_iso_8601": "2019-09-26T20:05:34.781847Z", "url": "https://files.pythonhosted.org/packages/50/04/8b7380198eb4b5d7c18f5de8e28d1bcb2ffe6c4e6323f9ae0a8a1440c952/awkward1-0.1.7-cp37-cp37m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bdf15d8f9e60cdcaf985674b749cd847", "sha256": "bcebe861b7167674fa2dd71c873d146802b977ea9aa557d15d7bc63b6de728f6" }, "downloads": -1, "filename": "awkward1-0.1.7-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "bdf15d8f9e60cdcaf985674b749cd847", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 412358, "upload_time": "2019-09-26T20:05:29", "upload_time_iso_8601": "2019-09-26T20:05:29.196288Z", "url": "https://files.pythonhosted.org/packages/b2/4a/c7be24f21fff7b8f2d2e6a26ec96b121c2a770be7cea1e5b8712625537b9/awkward1-0.1.7-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "28cc13f292a0f2c5590d1a9c3e2971c0", "sha256": "03b4cdce02ffacc1b15929de4c959e41a55d2f0fa4f09a89878c9af77aeb3a70" }, "downloads": -1, "filename": "awkward1-0.1.7-cp37-cp37m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "28cc13f292a0f2c5590d1a9c3e2971c0", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 425350, "upload_time": "2019-09-26T20:05:47", "upload_time_iso_8601": "2019-09-26T20:05:47.200876Z", "url": "https://files.pythonhosted.org/packages/14/c5/786889132eb403a613e48deb1797d2caef36b5091a7f8cde62c02ec42c2d/awkward1-0.1.7-cp37-cp37m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ac874801cabe771c04860094bf5c3f85", "sha256": "022053b65113fa70b032e104ab580532daa79ca5d6fea581c4c503a24b592a62" }, "downloads": -1, "filename": "awkward1-0.1.7-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "ac874801cabe771c04860094bf5c3f85", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 253780, "upload_time": "2019-09-26T20:04:53", "upload_time_iso_8601": "2019-09-26T20:04:53.892398Z", "url": "https://files.pythonhosted.org/packages/31/ab/3be634047728ffd78896b6ac1198db0302577497e15f544874e3963b6713/awkward1-0.1.7-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ba09ecb41d4b15777c51224f250136ba", "sha256": "7108a9c36a3f85043f569df344ab834a3eb33ec9dda27242e7a46faa555ef01b" }, "downloads": -1, "filename": "awkward1-0.1.7-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "ba09ecb41d4b15777c51224f250136ba", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 301447, "upload_time": "2019-09-26T20:05:15", "upload_time_iso_8601": "2019-09-26T20:05:15.158787Z", "url": "https://files.pythonhosted.org/packages/fb/1a/05a6b093e96b6c73be38ac0a802396c9700bbfe32fff1b507bb0e54740c5/awkward1-0.1.7-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c403c7ac37043591065b1d0b9ae038dc", "sha256": "0084b1ed8eeec976438df35890b3c465500d934bc175672e881937ed74ca8bfd" }, "downloads": -1, "filename": "awkward1-0.1.7.tar.gz", "has_sig": false, "md5_digest": "c403c7ac37043591065b1d0b9ae038dc", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 217954, "upload_time": "2019-09-26T20:05:48", "upload_time_iso_8601": "2019-09-26T20:05:48.633239Z", "url": "https://files.pythonhosted.org/packages/f4/a3/fc89957ef818fb622d6a3d63b54a2a3b86f2e1223f434b8299f9d5bbcf53/awkward1-0.1.7.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.92": [ { "comment_text": "", "digests": { "md5": "a22e76999b6e75655f2e2185e51a3fd4", "sha256": "9b9bce91812b14f6521ed63ae62df1b2b6063286028447c57e0e93056048a173" }, "downloads": -1, "filename": "awkward1-0.1.92-cp27-cp27m-macosx_10_14_x86_64.whl", "has_sig": false, "md5_digest": "a22e76999b6e75655f2e2185e51a3fd4", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 2176538, "upload_time": "2020-01-28T22:02:17", "upload_time_iso_8601": "2020-01-28T22:02:17.346778Z", "url": "https://files.pythonhosted.org/packages/ee/f9/e566ec0f9536a39658583452dbee481e1ef5ddc79fdbe10108db5b1cf1cf/awkward1-0.1.92-cp27-cp27m-macosx_10_14_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "87d3b60e943cb93cdfc97a9be4a8d689", "sha256": "e49d994dd074e2957dd3e2efd32606863ff6e9bf2e48163837cd67d644dbfb88" }, "downloads": -1, "filename": "awkward1-0.1.92-cp27-cp27m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "87d3b60e943cb93cdfc97a9be4a8d689", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 2407826, "upload_time": "2020-01-28T22:11:10", "upload_time_iso_8601": "2020-01-28T22:11:10.947579Z", "url": "https://files.pythonhosted.org/packages/c9/07/e9edcdc609165ccf29d24cb17802e74a90ff7835ed6bc80a45d9679ecc8f/awkward1-0.1.92-cp27-cp27m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9f6e8a7b8cdd751697d68ec4baf17d61", "sha256": "8721db7093951fd3dfb063d5ed80161e0742e0f11df0a2bc671c0ad8e4fe044c" }, "downloads": -1, "filename": "awkward1-0.1.92-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "9f6e8a7b8cdd751697d68ec4baf17d61", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 2374730, "upload_time": "2020-01-28T22:09:49", "upload_time_iso_8601": "2020-01-28T22:09:49.649580Z", "url": "https://files.pythonhosted.org/packages/78/92/30c2131de2c80ebe838a7970aa994d34381800f5279ee1b37f3ba3d6c977/awkward1-0.1.92-cp27-cp27m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2c52d688ecfbeb9b4b0203282ca3faaf", "sha256": "886021de12ee1b7d0d719b4e64f7cf68a71c1706b906757030474ee3cc586ecd" }, "downloads": -1, "filename": "awkward1-0.1.92-cp27-cp27m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "2c52d688ecfbeb9b4b0203282ca3faaf", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 2453033, "upload_time": "2020-01-28T22:13:07", "upload_time_iso_8601": "2020-01-28T22:13:07.464365Z", "url": "https://files.pythonhosted.org/packages/d5/e5/cac40836936af0ad66ea915e94f054ba9fb7ad2a9cb0a15a29a9b60a30c0/awkward1-0.1.92-cp27-cp27m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5c7dc9e9f33414116ca62fff611f6747", "sha256": "9a337c32f2215ba074982486d432c97267d82eeec8cca8be10d2d3dd7d7fbfbe" }, "downloads": -1, "filename": "awkward1-0.1.92-cp27-cp27mu-manylinux1_i686.whl", "has_sig": false, "md5_digest": "5c7dc9e9f33414116ca62fff611f6747", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 2407829, "upload_time": "2020-01-28T22:11:13", "upload_time_iso_8601": "2020-01-28T22:11:13.031405Z", "url": "https://files.pythonhosted.org/packages/a5/6c/5e9af76aa8dc69e7183a08bc98bc63a8cedbb11737781c8520042ae96c50/awkward1-0.1.92-cp27-cp27mu-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "865aa8c132cef38c88b58c0947bbc1b0", "sha256": "0eb4c3e8ebbc700a32eeda8160156e060dc0b16bb0a38d7e9ee858d0e4a79e4e" }, "downloads": -1, "filename": "awkward1-0.1.92-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "865aa8c132cef38c88b58c0947bbc1b0", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 2374683, "upload_time": "2020-01-28T22:09:52", "upload_time_iso_8601": "2020-01-28T22:09:52.034313Z", "url": "https://files.pythonhosted.org/packages/38/76/8129083cf79f471c56e4958759c727356b4c00252a28bea6b3309c68d41f/awkward1-0.1.92-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1e7b6d84d59ced0853bd76bf17b64d45", "sha256": "0afe770697ad6c2849eac9190b7480d1383aabbf36546b5a580b0a79f2020224" }, "downloads": -1, "filename": "awkward1-0.1.92-cp27-cp27mu-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "1e7b6d84d59ced0853bd76bf17b64d45", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 2453035, "upload_time": "2020-01-28T22:13:09", "upload_time_iso_8601": "2020-01-28T22:13:09.646902Z", "url": "https://files.pythonhosted.org/packages/10/89/aa81eafc70a0b16ca35ba2495abd6e4c7ab5033df3e1d214551b09de735f/awkward1-0.1.92-cp27-cp27mu-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8f68c65b2619659c6c9ab45df0664ba8", "sha256": "72e14932f60a1ae827ad56931a5067f7ed437bcfe39c83cef2f5c35174f4af51" }, "downloads": -1, "filename": "awkward1-0.1.92-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "8f68c65b2619659c6c9ab45df0664ba8", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 2202452, "upload_time": "2020-01-28T22:04:14", "upload_time_iso_8601": "2020-01-28T22:04:14.478672Z", "url": "https://files.pythonhosted.org/packages/ad/e0/81c1c6c1d8e0233cf540f84972d2a79d546d5ff5b0d7ebb963f15ab26d75/awkward1-0.1.92-cp27-cp27m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fc00d56e5e4fb6045454da9acf08eaca", "sha256": "1784af489589dba9b480e5f38eb86dd599f117795895d8fb4bf404ea40731174" }, "downloads": -1, "filename": "awkward1-0.1.92-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "fc00d56e5e4fb6045454da9acf08eaca", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 3042594, "upload_time": "2020-01-28T22:03:58", "upload_time_iso_8601": "2020-01-28T22:03:58.845521Z", "url": "https://files.pythonhosted.org/packages/ca/80/ae9b8916e732c3bc02bb1f1641923966a56e0c667f539d943c3c86f69b7d/awkward1-0.1.92-cp27-cp27m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9ba579a98ba4c2d984f50716e68ea3ee", "sha256": "cea22a5501f99ad77ea6bf3d0fbe30fb4c4acd33dcb273667a9523802eacad20" }, "downloads": -1, "filename": "awkward1-0.1.92-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "9ba579a98ba4c2d984f50716e68ea3ee", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 2400764, "upload_time": "2020-01-28T22:11:15", "upload_time_iso_8601": "2020-01-28T22:11:15.134283Z", "url": "https://files.pythonhosted.org/packages/10/9a/c8801a5129bd85a8d4766199e8627601aa53bd7b52378668ff3496b177cf/awkward1-0.1.92-cp34-cp34m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "223e46b440e5cf1885f81c4a3adc41a0", "sha256": "47e609401c123dcd9990fe719afa4f1cd1b5052d6a7076cb4f9a65839ee25d62" }, "downloads": -1, "filename": "awkward1-0.1.92-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "223e46b440e5cf1885f81c4a3adc41a0", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 2371181, "upload_time": "2020-01-28T22:09:54", "upload_time_iso_8601": "2020-01-28T22:09:54.356912Z", "url": "https://files.pythonhosted.org/packages/57/76/a6ef2d8d179cd5c3762e906015b5e22adc6a3f4b531d004d99d57a6b24e8/awkward1-0.1.92-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f39766df75da1c5edc3bc8d8cecdc820", "sha256": "57905d916de7467040ff68d46156f677b7450adf480840709651d65fe484ff06" }, "downloads": -1, "filename": "awkward1-0.1.92-cp34-cp34m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "f39766df75da1c5edc3bc8d8cecdc820", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 2452556, "upload_time": "2020-01-28T22:13:11", "upload_time_iso_8601": "2020-01-28T22:13:11.466340Z", "url": "https://files.pythonhosted.org/packages/a3/2d/c966ae5619d079c0a1d2f27e806110989f2c9e2c58b86e424c2cf7e8cc39/awkward1-0.1.92-cp34-cp34m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "980d25ab608e17a8d2a96ce2d137b70e", "sha256": "e4257155f7777f9b531a9178c7248ebcdfba2d7a71c9d62d4d413536ef256b5e" }, "downloads": -1, "filename": "awkward1-0.1.92-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "980d25ab608e17a8d2a96ce2d137b70e", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 2400620, "upload_time": "2020-01-28T22:11:17", "upload_time_iso_8601": "2020-01-28T22:11:17.664734Z", "url": "https://files.pythonhosted.org/packages/36/b0/e6adf2c414359dd42c07093ddfc43de2905348d4933b2336ef2553ebf2b3/awkward1-0.1.92-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6910da9316eeecac0b5d41166624867b", "sha256": "dc7171b92f0e19f3824b7d158e63da272d47663e6ecc3d87e7a17146327c03f7" }, "downloads": -1, "filename": "awkward1-0.1.92-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "6910da9316eeecac0b5d41166624867b", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 2370636, "upload_time": "2020-01-28T22:09:56", "upload_time_iso_8601": "2020-01-28T22:09:56.333237Z", "url": "https://files.pythonhosted.org/packages/b4/8a/307429804dcfec7935f9bcf37f0508cf8fc27bfefc6969d8fffacbce4f6c/awkward1-0.1.92-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d57989a356c11d99bc85d3ecdd69b533", "sha256": "179df7e477044b948c31b3a1245fce7780d1e532bec924337924728f5b8cf3ea" }, "downloads": -1, "filename": "awkward1-0.1.92-cp35-cp35m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "d57989a356c11d99bc85d3ecdd69b533", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 2451906, "upload_time": "2020-01-28T22:13:13", "upload_time_iso_8601": "2020-01-28T22:13:13.276069Z", "url": "https://files.pythonhosted.org/packages/b1/d0/ef7e7794f484eb872b3ffbee52fc06d96a587cb8d366f6a2a2532d3ff8f3/awkward1-0.1.92-cp35-cp35m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ca559925da78c2b78700330365a110c2", "sha256": "060376841a1388eebdcf8cb8b9f45c31cd8de061e0c69869061b011315fcf3fb" }, "downloads": -1, "filename": "awkward1-0.1.92-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "ca559925da78c2b78700330365a110c2", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 2201868, "upload_time": "2020-01-28T22:04:13", "upload_time_iso_8601": "2020-01-28T22:04:13.463653Z", "url": "https://files.pythonhosted.org/packages/e0/7c/15541faa3ba0d960bf5638438edad220027cd6df3bc7682dab291b190698/awkward1-0.1.92-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6203d9615e650ded026eb0630c2441c3", "sha256": "82418d1532f393c383a55c5f4772f198667d58986109c1726081d76e002afe71" }, "downloads": -1, "filename": "awkward1-0.1.92-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "6203d9615e650ded026eb0630c2441c3", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 3039445, "upload_time": "2020-01-28T22:05:51", "upload_time_iso_8601": "2020-01-28T22:05:51.124812Z", "url": "https://files.pythonhosted.org/packages/da/19/3f738db09e068fbe446f9eada9016a36e57cf0392c79569b8c22d4b57d56/awkward1-0.1.92-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "397ccdcc802802a32091ed83d7b1d682", "sha256": "76796ca4b8421f5622e18b2b360c27b0b541318499978538fdb03ab52b1a6e4a" }, "downloads": -1, "filename": "awkward1-0.1.92-cp36-cp36m-macosx_10_14_x86_64.whl", "has_sig": false, "md5_digest": "397ccdcc802802a32091ed83d7b1d682", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 2176297, "upload_time": "2020-01-28T22:02:47", "upload_time_iso_8601": "2020-01-28T22:02:47.041433Z", "url": "https://files.pythonhosted.org/packages/59/51/855fb1ab5f14d0f9fb6c435b3fc5b3f2fa41ff00dda0d6ca2da55c14ffec/awkward1-0.1.92-cp36-cp36m-macosx_10_14_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d4e17c47b25a07095e7b0015348c149c", "sha256": "1cb76b72930572d7eb815267ed827d9adfc057db4de08014072d5daca70370ce" }, "downloads": -1, "filename": "awkward1-0.1.92-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "d4e17c47b25a07095e7b0015348c149c", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 2400653, "upload_time": "2020-01-28T22:11:19", "upload_time_iso_8601": "2020-01-28T22:11:19.641982Z", "url": "https://files.pythonhosted.org/packages/90/37/fa88a9cac395c27900e20947504a783299652f68a608c6546fc377367f4b/awkward1-0.1.92-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "daa0b30896007aea011062a7cc8cf6d3", "sha256": "66ce8d923fecc66d792a0a8959fe3a07bddc8c65a0d6a5fcccab01e1333e06b5" }, "downloads": -1, "filename": "awkward1-0.1.92-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "daa0b30896007aea011062a7cc8cf6d3", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 2370646, "upload_time": "2020-01-28T22:09:58", "upload_time_iso_8601": "2020-01-28T22:09:58.537129Z", "url": "https://files.pythonhosted.org/packages/c7/1b/b91e710061dcd47e31a50b36cf7c9f8e9e3619485e1fc84b5e2cdf5e8e62/awkward1-0.1.92-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2cc17f3371a31065cb38e31b50c4c6e6", "sha256": "3ec9c52cd2a150bffc99a57380363d6436ad07baeba71240d9c85e6bcd6d60f7" }, "downloads": -1, "filename": "awkward1-0.1.92-cp36-cp36m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "2cc17f3371a31065cb38e31b50c4c6e6", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 2451911, "upload_time": "2020-01-28T22:13:15", "upload_time_iso_8601": "2020-01-28T22:13:15.426782Z", "url": "https://files.pythonhosted.org/packages/ae/42/53b18a4f304d04f446ae2e3b284410e36b01ccae4c7a1e1b1f829e575521/awkward1-0.1.92-cp36-cp36m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f0398331c7709f1337a443ca70802770", "sha256": "0fc62d22396b18fed2627b570b8d286876273912be3f652628002712ac8ea3bd" }, "downloads": -1, "filename": "awkward1-0.1.92-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "f0398331c7709f1337a443ca70802770", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 2201906, "upload_time": "2020-01-28T22:06:47", "upload_time_iso_8601": "2020-01-28T22:06:47.332994Z", "url": "https://files.pythonhosted.org/packages/11/c9/e368f83c9bcd278221b13f4c1529124e276da487fc86a47512e3cc5bd428/awkward1-0.1.92-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "78a5ca75ffe39f36deca512012f5c9d7", "sha256": "09716d6de6865f35c88122ced5640bce4453a4659a3a9aebd527be18445ebd17" }, "downloads": -1, "filename": "awkward1-0.1.92-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "78a5ca75ffe39f36deca512012f5c9d7", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 3039450, "upload_time": "2020-01-28T22:07:25", "upload_time_iso_8601": "2020-01-28T22:07:25.562693Z", "url": "https://files.pythonhosted.org/packages/a5/19/e60d7a7f204aee73cae4961d9876076165df47634f512010a129ea940391/awkward1-0.1.92-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "02e93e610a476eb903ec2e1d1ca7e5f1", "sha256": "a99258b7db5635e8d0c97535088086f7259b33ef0b842782e148296c7c3479bb" }, "downloads": -1, "filename": "awkward1-0.1.92-cp37-cp37m-macosx_10_14_x86_64.whl", "has_sig": false, "md5_digest": "02e93e610a476eb903ec2e1d1ca7e5f1", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 2176228, "upload_time": "2020-01-28T22:03:18", "upload_time_iso_8601": "2020-01-28T22:03:18.126779Z", "url": "https://files.pythonhosted.org/packages/5e/0c/519c7094b8b5dffa4caeae9d1154aa78b9381104c02137172583f2dda1fd/awkward1-0.1.92-cp37-cp37m-macosx_10_14_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "87ff38e0e945b32fc7dc0b99ba686ad2", "sha256": "20c70b2c0db2f572893ff50a742a3e8f78a9235c98d108f3889378ab2011d998" }, "downloads": -1, "filename": "awkward1-0.1.92-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "87ff38e0e945b32fc7dc0b99ba686ad2", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 2400242, "upload_time": "2020-01-28T22:11:22", "upload_time_iso_8601": "2020-01-28T22:11:22.351611Z", "url": "https://files.pythonhosted.org/packages/49/58/ccbd631430117ff75844969e52d0112b7d2c4b9905aa916748091946fb53/awkward1-0.1.92-cp37-cp37m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "68d96a3663d523b6c0249a2238b0fb74", "sha256": "17988d59b57e82f00a45afa08861d3e36f4f2afc159fdfa36bb9e5bb656ff7ee" }, "downloads": -1, "filename": "awkward1-0.1.92-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "68d96a3663d523b6c0249a2238b0fb74", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 2370983, "upload_time": "2020-01-28T22:10:00", "upload_time_iso_8601": "2020-01-28T22:10:00.473071Z", "url": "https://files.pythonhosted.org/packages/a7/13/7643043ea669c84e5f5ec03e042bfc7732d8569d439ddc3499cadb877870/awkward1-0.1.92-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "25baf15ed25862638ec19d4819042470", "sha256": "8612a9fa7fc62be908e78327a2173495dfef1e17f8bf9b4853ad152429aa234c" }, "downloads": -1, "filename": "awkward1-0.1.92-cp37-cp37m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "25baf15ed25862638ec19d4819042470", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 2451404, "upload_time": "2020-01-28T22:13:17", "upload_time_iso_8601": "2020-01-28T22:13:17.445727Z", "url": "https://files.pythonhosted.org/packages/b3/4f/8ef79b34acb99b796eacc65645c6758520f614f58318b04d4885f1df28ad/awkward1-0.1.92-cp37-cp37m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2d3d8e75329f7633d3383a6ba609d738", "sha256": "4d9b018cba4fb04019dab9b98f78146477efad7c3632df6f91cf0f48542b6955" }, "downloads": -1, "filename": "awkward1-0.1.92-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "2d3d8e75329f7633d3383a6ba609d738", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 2201982, "upload_time": "2020-01-28T22:07:05", "upload_time_iso_8601": "2020-01-28T22:07:05.202860Z", "url": "https://files.pythonhosted.org/packages/b7/2c/d825d3b324987b2d22bb432104c4fa1d0bb1a63befaf8911524080b9edd1/awkward1-0.1.92-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2cf4339db428a55a0dbe57c64ef2bb9f", "sha256": "ef80cb42406b7fadd488261dc149afb8174b6f67449d4b7d16734186945d1000" }, "downloads": -1, "filename": "awkward1-0.1.92-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "2cf4339db428a55a0dbe57c64ef2bb9f", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 3039534, "upload_time": "2020-01-28T22:07:59", "upload_time_iso_8601": "2020-01-28T22:07:59.971339Z", "url": "https://files.pythonhosted.org/packages/48/f5/a2a573885269343bd64ba0083a417f20c5a466a16f8fa2fdd9e0240440e5/awkward1-0.1.92-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4ea8169ccd509cf1fdbb9c8cf5977d1e", "sha256": "65461a01f17fd0cf253748c97c1dfbe862149ed4d377c1d2feb47e48c91267ee" }, "downloads": -1, "filename": "awkward1-0.1.92-cp38-cp38-macosx_10_14_x86_64.whl", "has_sig": false, "md5_digest": "4ea8169ccd509cf1fdbb9c8cf5977d1e", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 2212525, "upload_time": "2020-01-28T22:03:17", "upload_time_iso_8601": "2020-01-28T22:03:17.463194Z", "url": "https://files.pythonhosted.org/packages/c4/4b/54de604cb305e9c55f1641ff36289dc4ea47e7d8a326c7b82101179ebe18/awkward1-0.1.92-cp38-cp38-macosx_10_14_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ad327f969be735382603d043b89d730d", "sha256": "899d957b1eeba862cb80e72bf1f726ceddddfc060ca1015b5da520c5148e455d" }, "downloads": -1, "filename": "awkward1-0.1.92-cp38-cp38-manylinux1_i686.whl", "has_sig": false, "md5_digest": "ad327f969be735382603d043b89d730d", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 2374915, "upload_time": "2020-01-28T22:11:24", "upload_time_iso_8601": "2020-01-28T22:11:24.437396Z", "url": "https://files.pythonhosted.org/packages/f3/9d/6256d2ae32eef6f01f3a5dfdd05565d04dc52a34d694a727f4bf024f1d3d/awkward1-0.1.92-cp38-cp38-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "61237f0f84564103874dda41c5b60a12", "sha256": "5330db1a192b87262921c870bb3819f31487215f59fbe85525f9fd6a4f47ebe8" }, "downloads": -1, "filename": "awkward1-0.1.92-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "61237f0f84564103874dda41c5b60a12", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 2344234, "upload_time": "2020-01-28T22:10:02", "upload_time_iso_8601": "2020-01-28T22:10:02.467572Z", "url": "https://files.pythonhosted.org/packages/6d/97/fb779b1edbac474b69e316c76b7a8de2f9dd521748bc8f32b97f0a502baf/awkward1-0.1.92-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5131cd5c8ae298db908659d1cd18c386", "sha256": "42e01dd11c4d1279b86652968d7cb89c4b0bcd785ee57a45d405188247f1db42" }, "downloads": -1, "filename": "awkward1-0.1.92-cp38-cp38-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "5131cd5c8ae298db908659d1cd18c386", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 2442751, "upload_time": "2020-01-28T22:13:19", "upload_time_iso_8601": "2020-01-28T22:13:19.437660Z", "url": "https://files.pythonhosted.org/packages/99/b8/a4b65fcf1698a40e54b5c4976dacff75cb656b3042d92ca12df3ac3796f8/awkward1-0.1.92-cp38-cp38-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f158cbe425123385ec2b9ce97c27e19f", "sha256": "b2e10bdb9fd6d232230aa8d94046ec07b689d87744ce2a8195a611f132eb69f0" }, "downloads": -1, "filename": "awkward1-0.1.92-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "f158cbe425123385ec2b9ce97c27e19f", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 2195760, "upload_time": "2020-01-28T22:07:59", "upload_time_iso_8601": "2020-01-28T22:07:59.343793Z", "url": "https://files.pythonhosted.org/packages/47/81/c174414e153ffb736e25159dd1d6b8ba15ef495f10713f04d097e366f056/awkward1-0.1.92-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8bf338247a58a6707edd0e72d063142a", "sha256": "8d0b5cfcee6179c064dc5e30e95099823da12a6be2863b5700d5ff1b82a1bb40" }, "downloads": -1, "filename": "awkward1-0.1.92-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "8bf338247a58a6707edd0e72d063142a", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 3035991, "upload_time": "2020-01-28T22:07:45", "upload_time_iso_8601": "2020-01-28T22:07:45.489009Z", "url": "https://files.pythonhosted.org/packages/5c/00/7ababe55f0e9365b3bf349ada2fb0da1cc0709f7c0072d2eae02d3a2528e/awkward1-0.1.92-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fafe8a57e764a28d8cadd64f78d6a096", "sha256": "0f575653406c04ac89eefe3dbc24e676d12f460702ce92adc75f683d42217c70" }, "downloads": -1, "filename": "awkward1-0.1.92.tar.gz", "has_sig": false, "md5_digest": "fafe8a57e764a28d8cadd64f78d6a096", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 357519, "upload_time": "2020-01-28T22:13:21", "upload_time_iso_8601": "2020-01-28T22:13:21.546331Z", "url": "https://files.pythonhosted.org/packages/c3/52/b2e1809bf4938f330808d18cf848789f337e414bdecf20de6ebbce7d4cd1/awkward1-0.1.92.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "d19a60d1ec2592bea8fe9ffb7be4bf5a", "sha256": "8442ca9e6c5c137720b10a46cead370cf5cb6b7e050a6397ed76bcfdd11c0084" }, "downloads": -1, "filename": "awkward1-0.2.0-cp27-cp27m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "d19a60d1ec2592bea8fe9ffb7be4bf5a", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 6420157, "upload_time": "2020-03-06T03:02:34", "upload_time_iso_8601": "2020-03-06T03:02:34.068141Z", "url": "https://files.pythonhosted.org/packages/b4/e1/0e9b99673f4714889e061a7e781dedba7b41fddd06e0a430fea4a1579010/awkward1-0.2.0-cp27-cp27m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d4f4ca8284112953d363439858138d67", "sha256": "59748d560f7d145fb5ffc71e70a37c5c62f1ab6d08711c5d2055825b5714bcfd" }, "downloads": -1, "filename": "awkward1-0.2.0-cp27-cp27m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "d4f4ca8284112953d363439858138d67", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 6724509, "upload_time": "2020-03-06T03:16:11", "upload_time_iso_8601": "2020-03-06T03:16:11.749366Z", "url": "https://files.pythonhosted.org/packages/6c/fc/f3a70cc4a9acfdfe6f0a760cf2b50706fa618d8bf4750806adc00ec28a9e/awkward1-0.2.0-cp27-cp27m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d6033a1c62d02881d40921e7e9de8907", "sha256": "4640e585ba0847a1acda3f070b6419a087c7dbf8a25ba4fd338593e8ebc0b52c" }, "downloads": -1, "filename": "awkward1-0.2.0-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "d6033a1c62d02881d40921e7e9de8907", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 6656855, "upload_time": "2020-03-06T03:17:13", "upload_time_iso_8601": "2020-03-06T03:17:13.275247Z", "url": "https://files.pythonhosted.org/packages/cc/58/2a5731d9ca318d06f99c6ee859f8f80ae597cafd3d7fa6c6d5e3b1fc8a79/awkward1-0.2.0-cp27-cp27m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "473d311df9ca483819f77125ae67bf86", "sha256": "676651d4b8395962135a1ef77e0787146971704c2dbea2ee9d565afcd44afac0" }, "downloads": -1, "filename": "awkward1-0.2.0-cp27-cp27m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "473d311df9ca483819f77125ae67bf86", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 6738067, "upload_time": "2020-03-06T03:13:54", "upload_time_iso_8601": "2020-03-06T03:13:54.656712Z", "url": "https://files.pythonhosted.org/packages/7a/f0/79f2a6906c33a40ad2d793c4d3d7ced6ccbf9a9293baf9430b5574c65288/awkward1-0.2.0-cp27-cp27m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "68e9c8b987795245f25153b2b6987340", "sha256": "3cdf49cf628feeaf9845f46f5aa5c9a59a3019cdf6941975260fe546683b5b5b" }, "downloads": -1, "filename": "awkward1-0.2.0-cp27-cp27mu-manylinux1_i686.whl", "has_sig": false, "md5_digest": "68e9c8b987795245f25153b2b6987340", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 6724527, "upload_time": "2020-03-06T03:16:13", "upload_time_iso_8601": "2020-03-06T03:16:13.594785Z", "url": "https://files.pythonhosted.org/packages/9a/05/37d15974b863618ee785e38ae778837ac519ca7cd516749953bd17b519ee/awkward1-0.2.0-cp27-cp27mu-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "29af4c5f78653475db82c10f1359420a", "sha256": "17bd060babc87b8bf3e120c23173c63f01f0063aef88ea105bd30965bfef88b0" }, "downloads": -1, "filename": "awkward1-0.2.0-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "29af4c5f78653475db82c10f1359420a", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 6656880, "upload_time": "2020-03-06T03:17:15", "upload_time_iso_8601": "2020-03-06T03:17:15.435030Z", "url": "https://files.pythonhosted.org/packages/6f/b1/1f72faad2e821846d2abcc10e4221a79cc479af4a67575a89e0c2412c3da/awkward1-0.2.0-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ee30a588b2e7e85fcd4b9b0a959064b1", "sha256": "f67984fb1c47829912db265d1b46dcd3d51115657b6b24a0f8210417bacdd527" }, "downloads": -1, "filename": "awkward1-0.2.0-cp27-cp27mu-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "ee30a588b2e7e85fcd4b9b0a959064b1", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 6737980, "upload_time": "2020-03-06T03:13:57", "upload_time_iso_8601": "2020-03-06T03:13:57.421313Z", "url": "https://files.pythonhosted.org/packages/c6/13/059f03947b7472cd340a7d10f499a5784bd45d8063f7319e86737090f4d6/awkward1-0.2.0-cp27-cp27mu-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c3d24b5660bcec78002fed6d3e037f75", "sha256": "b281d210221c60f88c1ab9290177589866901888bfa021a3903e23d5c5e26d34" }, "downloads": -1, "filename": "awkward1-0.2.0-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "c3d24b5660bcec78002fed6d3e037f75", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 7429486, "upload_time": "2020-03-06T03:06:58", "upload_time_iso_8601": "2020-03-06T03:06:58.100712Z", "url": "https://files.pythonhosted.org/packages/4a/2a/166235a81752a8045cb0f0d2fd5291c0a44989da7f4be6a8dc983d229322/awkward1-0.2.0-cp27-cp27m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c509b45214db57054990044a3a23be4c", "sha256": "97fc67fa5637aa9e535e1e915b91a57b54794b642549cddf76688fdf3b7e1c6e" }, "downloads": -1, "filename": "awkward1-0.2.0-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "c509b45214db57054990044a3a23be4c", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 9318703, "upload_time": "2020-03-06T03:06:15", "upload_time_iso_8601": "2020-03-06T03:06:15.645090Z", "url": "https://files.pythonhosted.org/packages/ce/6f/8967199a630e0c1d607d39f2bbed8fe0ca104ec55a9b4ea225afe6cbf610/awkward1-0.2.0-cp27-cp27m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d1f6a17ff9044d9a81aba83c2c229ef6", "sha256": "5f4e57e85626a9380f2456b8d92aeccce328aca9ea7fc5c740af9615b0bc8822" }, "downloads": -1, "filename": "awkward1-0.2.0-cp34-cp34m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "d1f6a17ff9044d9a81aba83c2c229ef6", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 6725987, "upload_time": "2020-03-06T03:16:15", "upload_time_iso_8601": "2020-03-06T03:16:15.573619Z", "url": "https://files.pythonhosted.org/packages/2e/63/f051be2cd59e3fb2f2bddda858c5df92c7de9f0cbd5553b71a2a23e3c513/awkward1-0.2.0-cp34-cp34m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5651a7b17a3f9446543af0d1c6f19f51", "sha256": "4f866e17b983656bde32bc9dc20c1a31269fde6040859be5b4ee427dab9d7e97" }, "downloads": -1, "filename": "awkward1-0.2.0-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "5651a7b17a3f9446543af0d1c6f19f51", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 6658605, "upload_time": "2020-03-06T03:17:17", "upload_time_iso_8601": "2020-03-06T03:17:17.836796Z", "url": "https://files.pythonhosted.org/packages/a7/87/c29c8d3a1d3306325072a19102777ab1dfa94983d5b39c87126d994e785f/awkward1-0.2.0-cp34-cp34m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f5740752b9aeb1fd82453e567a7edd29", "sha256": "cf8a2de1aac65857e9cf5f1cfc8e84aaad7e1c79e0e85655bee11e2799e9588e" }, "downloads": -1, "filename": "awkward1-0.2.0-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "f5740752b9aeb1fd82453e567a7edd29", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 6726879, "upload_time": "2020-03-06T03:16:17", "upload_time_iso_8601": "2020-03-06T03:16:17.451512Z", "url": "https://files.pythonhosted.org/packages/9f/51/0b82d62875b7def380b9fe5dc916f8c10cfeb0696de77bd149f8be18d3cf/awkward1-0.2.0-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "08bdbb999f46517cc54abdbff0c8ac60", "sha256": "6e758b762c88b2d3e2ecb1b245f72c0daf2d4e8cb6df1cedf68b2834a58c5858" }, "downloads": -1, "filename": "awkward1-0.2.0-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "08bdbb999f46517cc54abdbff0c8ac60", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 6657148, "upload_time": "2020-03-06T03:17:20", "upload_time_iso_8601": "2020-03-06T03:17:20.115487Z", "url": "https://files.pythonhosted.org/packages/ed/89/f6b712ee457c0da0df2081bd96529b3a00ca1b393daac95aa78723a9421f/awkward1-0.2.0-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8d83973c4de6389839389577364ed0fa", "sha256": "083ba26ec3176ffe2f13516df1ab2852b178b3a0f0d1358df80f65c28882d46c" }, "downloads": -1, "filename": "awkward1-0.2.0-cp35-cp35m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "8d83973c4de6389839389577364ed0fa", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 6738969, "upload_time": "2020-03-06T03:13:59", "upload_time_iso_8601": "2020-03-06T03:13:59.854420Z", "url": "https://files.pythonhosted.org/packages/4b/d5/757efbfafa05cb93af76e95cf1bdc64bd8f470116dc21ce2c83f3542a127/awkward1-0.2.0-cp35-cp35m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "75953e3af301736e805d53046ac10220", "sha256": "74cff08415b10e9f2a14f4c26054a745f666cb8d66362f406f3189b24517f526" }, "downloads": -1, "filename": "awkward1-0.2.0-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "75953e3af301736e805d53046ac10220", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 7428691, "upload_time": "2020-03-06T03:09:20", "upload_time_iso_8601": "2020-03-06T03:09:20.910552Z", "url": "https://files.pythonhosted.org/packages/d4/58/cffa0298de5fd57eac8d974ed326e3988e45b4d3639cc1e78c42fa3562eb/awkward1-0.2.0-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c20803bf4054230ae2097921fa4cf26f", "sha256": "0d12b68b698489dd64aa5ea16918d18f407aba8f02226eeb3b232ad10793fcea" }, "downloads": -1, "filename": "awkward1-0.2.0-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "c20803bf4054230ae2097921fa4cf26f", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 9315366, "upload_time": "2020-03-06T03:06:14", "upload_time_iso_8601": "2020-03-06T03:06:14.022078Z", "url": "https://files.pythonhosted.org/packages/2d/d8/821a68b18fb8548bcc22cb24b64aea4b62d1a9288fdf5104a7db3968b068/awkward1-0.2.0-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bd75695bca1ceef8ada57ad1e30fcef1", "sha256": "d46990e80fa4a2973c0e4b5b576d69bf99cd11e80b6e1e17f5ea6c3e1d4988cf" }, "downloads": -1, "filename": "awkward1-0.2.0-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "bd75695bca1ceef8ada57ad1e30fcef1", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 6419256, "upload_time": "2020-03-06T03:02:40", "upload_time_iso_8601": "2020-03-06T03:02:40.662877Z", "url": "https://files.pythonhosted.org/packages/6e/d7/f49013d05c36f34d138c7961af853e1349c465d6a404e5e66e1267cbba92/awkward1-0.2.0-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b621224dc37f1834fb9799038f9e4c1d", "sha256": "4d527cdff1319357090cb3e80402fd7a765c571f710682980a67b725823ac3e3" }, "downloads": -1, "filename": "awkward1-0.2.0-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "b621224dc37f1834fb9799038f9e4c1d", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 6726860, "upload_time": "2020-03-06T03:16:19", "upload_time_iso_8601": "2020-03-06T03:16:19.430966Z", "url": "https://files.pythonhosted.org/packages/6d/52/5b35cae70bc0ef2ffe6e78fff68a9b3a4480812b9e8d385673ca4205c62d/awkward1-0.2.0-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d231756e7e0a418c6e08fd2bb36c8562", "sha256": "30db6b8d89a6ef0780c6f18295082238d65c4b96dc647b108493c8ab2aedebac" }, "downloads": -1, "filename": "awkward1-0.2.0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "d231756e7e0a418c6e08fd2bb36c8562", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 6657190, "upload_time": "2020-03-06T03:17:22", "upload_time_iso_8601": "2020-03-06T03:17:22.203426Z", "url": "https://files.pythonhosted.org/packages/ab/e0/14b78e22a1d3352dd2f45ec302deb1596297e7d071a3ce3647563bf3ef5f/awkward1-0.2.0-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b4987edc7119775c0aa03a458c31be09", "sha256": "d943cb4f3582212a9821ce847ef947d8eea84471aab762eac1e564aa872781b9" }, "downloads": -1, "filename": "awkward1-0.2.0-cp36-cp36m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "b4987edc7119775c0aa03a458c31be09", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 6738983, "upload_time": "2020-03-06T03:14:02", "upload_time_iso_8601": "2020-03-06T03:14:02.163431Z", "url": "https://files.pythonhosted.org/packages/34/33/ad6ba59b0b3e8b16803b56d781405ba7421c24988f5ff61878b0f7720326/awkward1-0.2.0-cp36-cp36m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b77bd3ff815efe7a8e1508123e195ea2", "sha256": "298d6eeb8f47eae7cf8c0f65510f6a82578b158fc7f663ce4e9f50a5f9fbbd51" }, "downloads": -1, "filename": "awkward1-0.2.0-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "b77bd3ff815efe7a8e1508123e195ea2", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 7428671, "upload_time": "2020-03-06T03:10:12", "upload_time_iso_8601": "2020-03-06T03:10:12.785100Z", "url": "https://files.pythonhosted.org/packages/03/f5/9daca6444ead7b23d06ae07ef1e657ff68e48375fbd872370337b60337ef/awkward1-0.2.0-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "38adf4b1f9bf8c44f1a15a5bb4582d0d", "sha256": "effff06d4e4458f7627124ab060a13e44bf52b52da195231a79d3c6db10d6f56" }, "downloads": -1, "filename": "awkward1-0.2.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "38adf4b1f9bf8c44f1a15a5bb4582d0d", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 9315329, "upload_time": "2020-03-06T03:09:48", "upload_time_iso_8601": "2020-03-06T03:09:48.602601Z", "url": "https://files.pythonhosted.org/packages/7e/3e/78d37908f3c3af14d7235bda0bc236fcbf925b84c72777608edb2c3e1e49/awkward1-0.2.0-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d6119da40b17c5f4eec7bdb50f00d76d", "sha256": "fb90eb3cfb84c5bef318577f4b7dbea4892afe7d436667987d2b0b51f2a245cc" }, "downloads": -1, "filename": "awkward1-0.2.0-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "d6119da40b17c5f4eec7bdb50f00d76d", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 6419369, "upload_time": "2020-03-06T03:02:41", "upload_time_iso_8601": "2020-03-06T03:02:41.219728Z", "url": "https://files.pythonhosted.org/packages/2b/61/df1ffab8e06bc5070abd2205bb85e4f788c2e54c269b81fd23195987ce37/awkward1-0.2.0-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3bf168f31b8570377bf18471a50c0ba8", "sha256": "05d7ff3051c68ed99c134b30f9aecc96e72a32610069e15b7cd349767ef03bf3" }, "downloads": -1, "filename": "awkward1-0.2.0-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "3bf168f31b8570377bf18471a50c0ba8", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 6727187, "upload_time": "2020-03-06T03:16:21", "upload_time_iso_8601": "2020-03-06T03:16:21.344291Z", "url": "https://files.pythonhosted.org/packages/65/10/cd6737ada84e3ab91010a0efdf9710028730a01ee156f01586434d590a65/awkward1-0.2.0-cp37-cp37m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "debb099b55a8f51fd0bb279b90431c72", "sha256": "5b41b68bbe6bab95fa0a3c0ef2424a41473c994705bb75c2740207e5bdab307d" }, "downloads": -1, "filename": "awkward1-0.2.0-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "debb099b55a8f51fd0bb279b90431c72", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 6658984, "upload_time": "2020-03-06T03:17:24", "upload_time_iso_8601": "2020-03-06T03:17:24.838824Z", "url": "https://files.pythonhosted.org/packages/5c/0e/57f2645bc416c1445b508df472c2c28778130620f8158a9b399c2b9b06a1/awkward1-0.2.0-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "084f1870cffc2c0b772c4606dbd2b125", "sha256": "32454225b6d4c9e4d0ee2c04f4c609e525d1a1532edcb172b73bef469026cd4f" }, "downloads": -1, "filename": "awkward1-0.2.0-cp37-cp37m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "084f1870cffc2c0b772c4606dbd2b125", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 6736935, "upload_time": "2020-03-06T03:14:04", "upload_time_iso_8601": "2020-03-06T03:14:04.298195Z", "url": "https://files.pythonhosted.org/packages/fc/74/40b4c54f4bd7d8ea6c5d2dd208ca26147c9efe4fbbb90018a404738ac447/awkward1-0.2.0-cp37-cp37m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "83c07185b23b5847b4efa6e52636cdd6", "sha256": "787f75324fce1078470ec4352add4621afb013ec0e4c5b131ad00f7d9ce7d108" }, "downloads": -1, "filename": "awkward1-0.2.0-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "83c07185b23b5847b4efa6e52636cdd6", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 7428267, "upload_time": "2020-03-06T03:10:07", "upload_time_iso_8601": "2020-03-06T03:10:07.196533Z", "url": "https://files.pythonhosted.org/packages/22/e2/ce48692c6085457145cbf5b2df9ae968b821c110ec435d48bdf39b6fde75/awkward1-0.2.0-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "47251cf623e85492a1ae9cd44c11489e", "sha256": "6420b2de83c679f31ca2328b1e9924c3e6f7e09469956f5bbf70d2364733622c" }, "downloads": -1, "filename": "awkward1-0.2.0-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "47251cf623e85492a1ae9cd44c11489e", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 9315552, "upload_time": "2020-03-06T03:13:01", "upload_time_iso_8601": "2020-03-06T03:13:01.637148Z", "url": "https://files.pythonhosted.org/packages/ad/12/70d0c383d06f052448144cb39ceb6473926ff9f8f59ada9d69717fd60e47/awkward1-0.2.0-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2e65d95a09771da9fe027aa0ac9435d4", "sha256": "41149965f07cd1539ff4ecbe3282019680859d25a4f9e9c1d5662fb5319cdc3a" }, "downloads": -1, "filename": "awkward1-0.2.0-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "2e65d95a09771da9fe027aa0ac9435d4", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 6466173, "upload_time": "2020-03-06T03:02:29", "upload_time_iso_8601": "2020-03-06T03:02:29.256313Z", "url": "https://files.pythonhosted.org/packages/c1/13/b506ded769a0a843e6f9652e6791162d06925c745b7cc9c3556e25a2e307/awkward1-0.2.0-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d98fd933588a8125da2defb85ec1e726", "sha256": "8a5f5ebaa23a19366cfbd710310b8e929c85f09ee02151f410db95c30eef6bc7" }, "downloads": -1, "filename": "awkward1-0.2.0-cp38-cp38-manylinux1_i686.whl", "has_sig": false, "md5_digest": "d98fd933588a8125da2defb85ec1e726", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 6698740, "upload_time": "2020-03-06T03:16:23", "upload_time_iso_8601": "2020-03-06T03:16:23.130612Z", "url": "https://files.pythonhosted.org/packages/75/22/7de7b81ba10478ed0bdc12ad9772e41057c128ecf41a0f0a091aff8e86a5/awkward1-0.2.0-cp38-cp38-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "acb4e99801e2c9cbdf196a650f5cf203", "sha256": "fd73553d12b57340739690aab69837bf7663d2176ace92fbe69fbdaa509a506d" }, "downloads": -1, "filename": "awkward1-0.2.0-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "acb4e99801e2c9cbdf196a650f5cf203", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 6619605, "upload_time": "2020-03-06T03:17:26", "upload_time_iso_8601": "2020-03-06T03:17:26.777889Z", "url": "https://files.pythonhosted.org/packages/91/b3/39f06d7e4d220ede02bbfbf6b11f13ee1323e927d05cde9964c094366ce3/awkward1-0.2.0-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b1a7f700dee2313aac8dc1f3398129eb", "sha256": "6e3a6e8772daf49e3e0e71970328ad175b5fa78fafae45abc9f5a63101217512" }, "downloads": -1, "filename": "awkward1-0.2.0-cp38-cp38-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "b1a7f700dee2313aac8dc1f3398129eb", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 6724137, "upload_time": "2020-03-06T03:14:06", "upload_time_iso_8601": "2020-03-06T03:14:06.375669Z", "url": "https://files.pythonhosted.org/packages/25/95/7b19f097cef44d9c826493f0847d7b8a8cc84e43d43e8d97a9d96b71b4f1/awkward1-0.2.0-cp38-cp38-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "73ddab23902d8bc85751d57ca7a15950", "sha256": "e4e58fe41b83f7ed32990fd5fe75c37c6d3d2290a393a7b36316abd1efdd408c" }, "downloads": -1, "filename": "awkward1-0.2.0-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "73ddab23902d8bc85751d57ca7a15950", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 7429777, "upload_time": "2020-03-06T03:13:54", "upload_time_iso_8601": "2020-03-06T03:13:54.270786Z", "url": "https://files.pythonhosted.org/packages/80/72/bd7ef50673b0906a95de42ad358918c7033a554d1855c2abd113ad4176b2/awkward1-0.2.0-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3787d91128b1480d06db1b74ccc766e4", "sha256": "538d013414e707457529bfe13687586726ac9bb1e3c710cc7e6ff6e1d012ff38" }, "downloads": -1, "filename": "awkward1-0.2.0-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "3787d91128b1480d06db1b74ccc766e4", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 9320296, "upload_time": "2020-03-06T03:14:10", "upload_time_iso_8601": "2020-03-06T03:14:10.596673Z", "url": "https://files.pythonhosted.org/packages/68/78/90e9144b51cc1663f13c6216340c3ec6e5ed545ea491852ff02285d303fb/awkward1-0.2.0-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9a38882e512951e02180e3b0eca9a9a4", "sha256": "8930d606dbf83910eb9f38f2fa28cc4c28db3345d83b977bf2883533d5c20ac3" }, "downloads": -1, "filename": "awkward1-0.2.0.tar.gz", "has_sig": false, "md5_digest": "9a38882e512951e02180e3b0eca9a9a4", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 391270, "upload_time": "2020-03-06T03:14:08", "upload_time_iso_8601": "2020-03-06T03:14:08.467157Z", "url": "https://files.pythonhosted.org/packages/c2/eb/7a35df2cd6da49dd395cbe94639f54c4893423da8b875cc3cef8ccd95e02/awkward1-0.2.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.10": [ { "comment_text": "", "digests": { "md5": "5093b093f2db4acee7b1c9229dbc114e", "sha256": "6bf3b64bf351c1ae22d7a08ca6e45db8b1df8b6ebb51b1507eb7e9ba355c2eef" }, "downloads": -1, "filename": "awkward1-0.2.10-cp27-cp27m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "5093b093f2db4acee7b1c9229dbc114e", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 7920061, "upload_time": "2020-04-07T06:53:28", "upload_time_iso_8601": "2020-04-07T06:53:28.878917Z", "url": "https://files.pythonhosted.org/packages/88/e2/2f010e6b1f206b4825c04ebdd6f76172a001373a1f198aa79ec7ffaa62b9/awkward1-0.2.10-cp27-cp27m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "52d4f88b47742ce03fc92fe5cfaf94e7", "sha256": "a75de2010f06f92675bbcef338f12ff2592708ffe46155ade77526390ac902e4" }, "downloads": -1, "filename": "awkward1-0.2.10-cp27-cp27m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "52d4f88b47742ce03fc92fe5cfaf94e7", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 8180849, "upload_time": "2020-04-07T07:05:38", "upload_time_iso_8601": "2020-04-07T07:05:38.263773Z", "url": "https://files.pythonhosted.org/packages/5d/15/4d8f55f07e31a086cec919e646c1f39ccf272123ae0159677d7967e2e8d6/awkward1-0.2.10-cp27-cp27m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4fd2709e1a0322055ea89155957120d1", "sha256": "26af11506964df695ee4a9f0d8c7ed4c837a583e571274a6c0294e207b699278" }, "downloads": -1, "filename": "awkward1-0.2.10-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "4fd2709e1a0322055ea89155957120d1", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 8009374, "upload_time": "2020-04-07T07:05:10", "upload_time_iso_8601": "2020-04-07T07:05:10.571091Z", "url": "https://files.pythonhosted.org/packages/ac/70/bc496086c5e8fccc7811141fddd38d7bb766f4766122d9229276675b711e/awkward1-0.2.10-cp27-cp27m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ea85fced2ae20a2ee0b7b8e4ae486799", "sha256": "91ef81f656df7a82876e8992a5ee4e5850253f588867a736d39f3cb428ec3765" }, "downloads": -1, "filename": "awkward1-0.2.10-cp27-cp27m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "ea85fced2ae20a2ee0b7b8e4ae486799", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 8177930, "upload_time": "2020-04-07T07:06:47", "upload_time_iso_8601": "2020-04-07T07:06:47.728046Z", "url": "https://files.pythonhosted.org/packages/f5/62/5dfd7acc1e94a92a74330300e2caff5fe71cbded7ae16534ad745c60014f/awkward1-0.2.10-cp27-cp27m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "598afc47e4333c8bcb2a91d4ba9c4cf7", "sha256": "e7744fb77995099db7196b792f64b7bc1195a6a60a95c033613d1c52afd5b388" }, "downloads": -1, "filename": "awkward1-0.2.10-cp27-cp27mu-manylinux1_i686.whl", "has_sig": false, "md5_digest": "598afc47e4333c8bcb2a91d4ba9c4cf7", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 8180742, "upload_time": "2020-04-07T07:05:39", "upload_time_iso_8601": "2020-04-07T07:05:39.757043Z", "url": "https://files.pythonhosted.org/packages/64/67/e733fda3c4f74c252977f2386606df6196023d218aaf49e4ebe3f5396300/awkward1-0.2.10-cp27-cp27mu-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bb59ad6f45b7a304a86bfc595571a7f1", "sha256": "72e2ed658eaf0e0c1cef7d43b8bbcbecb22a63f8c2a8cd5811a0ec1bc042b55a" }, "downloads": -1, "filename": "awkward1-0.2.10-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "bb59ad6f45b7a304a86bfc595571a7f1", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 8009423, "upload_time": "2020-04-07T07:05:12", "upload_time_iso_8601": "2020-04-07T07:05:12.049035Z", "url": "https://files.pythonhosted.org/packages/22/87/177947323affaf9d9fc48348c9c0a11c29353faf618aed9a7514da4bcf5b/awkward1-0.2.10-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c63d7272d62673feb90086a233775924", "sha256": "75a93fcda450dc21eda4f0a785c35d2907a939b448a8244dc181256c512b0beb" }, "downloads": -1, "filename": "awkward1-0.2.10-cp27-cp27mu-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "c63d7272d62673feb90086a233775924", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 8177835, "upload_time": "2020-04-07T07:06:49", "upload_time_iso_8601": "2020-04-07T07:06:49.604334Z", "url": "https://files.pythonhosted.org/packages/a8/55/f0438de435dc17293ba055bfce6d12aa45252905272ffea1970bdb1be9f2/awkward1-0.2.10-cp27-cp27mu-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c7e08c7524daac7397f3fe6df64f6c8d", "sha256": "d812180bb48876d0d1d6d085e40af5a25e029e44ef8cf41a646900ae63f59bcd" }, "downloads": -1, "filename": "awkward1-0.2.10-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "c7e08c7524daac7397f3fe6df64f6c8d", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 8938449, "upload_time": "2020-04-07T06:59:22", "upload_time_iso_8601": "2020-04-07T06:59:22.653923Z", "url": "https://files.pythonhosted.org/packages/25/9a/40acd5f03b120cae2c3f730dd424a589aa2d9203a91aeb10ec0cfcbf2fd5/awkward1-0.2.10-cp27-cp27m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c1d11e47936452af8bd54cfe271ffa62", "sha256": "31ad360f860c309f3a171ec93637372f22b73dfc7b25d448c9fee586b4015e0a" }, "downloads": -1, "filename": "awkward1-0.2.10-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "c1d11e47936452af8bd54cfe271ffa62", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 11224102, "upload_time": "2020-04-07T07:01:25", "upload_time_iso_8601": "2020-04-07T07:01:25.442057Z", "url": "https://files.pythonhosted.org/packages/a3/b7/0b7a380534df0b4850984f3fed5d3a87902cd8d4ba4d0d40f80631712840/awkward1-0.2.10-cp27-cp27m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "55f866fc1a5c37f22167fe32e425257d", "sha256": "b92222198c935aa53edbec684a1e0d4f7462481f4c97145e4a79f1c1aab3609f" }, "downloads": -1, "filename": "awkward1-0.2.10-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "55f866fc1a5c37f22167fe32e425257d", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 8175282, "upload_time": "2020-04-07T07:05:42", "upload_time_iso_8601": "2020-04-07T07:05:42.021913Z", "url": "https://files.pythonhosted.org/packages/60/64/d66c883c7971b59dfb32f46dbf9795150024c574f048ea97e96f57d46771/awkward1-0.2.10-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "24efda52fae6a6373d87b871711f9420", "sha256": "97707f65a8165bf089de959287e45f82670532533a28434fcc842e3d5cfedf2a" }, "downloads": -1, "filename": "awkward1-0.2.10-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "24efda52fae6a6373d87b871711f9420", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 8011287, "upload_time": "2020-04-07T07:05:13", "upload_time_iso_8601": "2020-04-07T07:05:13.654190Z", "url": "https://files.pythonhosted.org/packages/02/41/0d5992affbdf96e8e8198fe2cea8c0df40760bdd1ce1f521f1332a36e159/awkward1-0.2.10-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fb489e7d8b6d913bac79b881f339e3fc", "sha256": "b1b24bc311c4f98e207a6a9c2850cac0e9a72cb0a83aaf2366de6e26b07e41bf" }, "downloads": -1, "filename": "awkward1-0.2.10-cp35-cp35m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "fb489e7d8b6d913bac79b881f339e3fc", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 8178586, "upload_time": "2020-04-07T07:06:51", "upload_time_iso_8601": "2020-04-07T07:06:51.082712Z", "url": "https://files.pythonhosted.org/packages/46/60/d54be4ed39cbd134acd8abf30d58225121fd9063aea0a49e4f8931ec53d6/awkward1-0.2.10-cp35-cp35m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "60403ef3ec23af06fbf13cb47268ddc2", "sha256": "48717c5af22d4a057f8c63cc3707ef8b46728071f874f3be45560edd13b8e601" }, "downloads": -1, "filename": "awkward1-0.2.10-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "60403ef3ec23af06fbf13cb47268ddc2", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 8935735, "upload_time": "2020-04-07T07:02:53", "upload_time_iso_8601": "2020-04-07T07:02:53.472950Z", "url": "https://files.pythonhosted.org/packages/22/81/230173b602e03041ef1d6f7828e21673770ba54a444751a604de7dc703ea/awkward1-0.2.10-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2dbf51d4fdcbec31bed889b94a21df33", "sha256": "b30ab910a497a838742575b8f9899e277c4d64dda3075f9869494f683103f011" }, "downloads": -1, "filename": "awkward1-0.2.10-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "2dbf51d4fdcbec31bed889b94a21df33", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 11221732, "upload_time": "2020-04-07T07:00:47", "upload_time_iso_8601": "2020-04-07T07:00:47.215692Z", "url": "https://files.pythonhosted.org/packages/4d/17/da61a670b72137011c12423874ecc41f6de306ee3073d1f112ca0f88dac0/awkward1-0.2.10-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f300c5ff0aea6c540ddf2b853fc8fb90", "sha256": "6c20bdd7d92f9b14613be41a7df02bc04def310398e7c41645ed914d1a952962" }, "downloads": -1, "filename": "awkward1-0.2.10-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "f300c5ff0aea6c540ddf2b853fc8fb90", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 7918934, "upload_time": "2020-04-07T06:54:04", "upload_time_iso_8601": "2020-04-07T06:54:04.374194Z", "url": "https://files.pythonhosted.org/packages/3c/33/f9666e6e34e177ae1bb0cfae6d802e7d53e40638ec161d579f47ca99d759/awkward1-0.2.10-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d723bafb220209d2216e05412cb84f5c", "sha256": "8f9024490868e1b78aed5ed933247cd6417a7bbd9151c5b3ffa133bdfa416d2e" }, "downloads": -1, "filename": "awkward1-0.2.10-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "d723bafb220209d2216e05412cb84f5c", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 8175315, "upload_time": "2020-04-07T07:05:44", "upload_time_iso_8601": "2020-04-07T07:05:44.253204Z", "url": "https://files.pythonhosted.org/packages/27/fc/e54281b058ba9c4d63c595bad2cc0e9f3a1ab44ff439923a2d642d94654b/awkward1-0.2.10-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5e3c4c2454064f602d71442f30caeacd", "sha256": "a2a9b77d917635c9105169df9eb354d37ddcf06618fd60866898bf26589fe2f1" }, "downloads": -1, "filename": "awkward1-0.2.10-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "5e3c4c2454064f602d71442f30caeacd", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 8011296, "upload_time": "2020-04-07T07:05:15", "upload_time_iso_8601": "2020-04-07T07:05:15.486943Z", "url": "https://files.pythonhosted.org/packages/af/15/34d78d1a6ccf59b677c03da1456d19b570daa136a8f203534166da9f38c4/awkward1-0.2.10-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e5b9f49ae0ccf082a950a18d8e955028", "sha256": "53910e5a8fc415666129bfe072cfdcc98e06eaab62a2d908ef912b4505b88770" }, "downloads": -1, "filename": "awkward1-0.2.10-cp36-cp36m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "e5b9f49ae0ccf082a950a18d8e955028", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 8178576, "upload_time": "2020-04-07T07:06:52", "upload_time_iso_8601": "2020-04-07T07:06:52.720004Z", "url": "https://files.pythonhosted.org/packages/5a/f7/376ef99d23b43cd4cf570e75faa1d843103d68a8c0ed17411d143efa0770/awkward1-0.2.10-cp36-cp36m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4c08871201a3f081a4dfafc6addcc8f2", "sha256": "d7db3b2b96afc2b6faf962b14d571aa2ba07f4a8e2c6c59758a9aef6f46c539a" }, "downloads": -1, "filename": "awkward1-0.2.10-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "4c08871201a3f081a4dfafc6addcc8f2", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 8935693, "upload_time": "2020-04-07T07:02:16", "upload_time_iso_8601": "2020-04-07T07:02:16.060832Z", "url": "https://files.pythonhosted.org/packages/25/a0/3b088b80e7aae7ab6275e623f919cb6f062751a091cf27ad040f36bb4e35/awkward1-0.2.10-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "638716a25f8f9b3ae2d070d7841693b4", "sha256": "ec0995ab9c2bc75802f16fc8e4de2d43d28b2cc958ee3bdeaca933fdeb722dd8" }, "downloads": -1, "filename": "awkward1-0.2.10-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "638716a25f8f9b3ae2d070d7841693b4", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 11221536, "upload_time": "2020-04-07T07:02:44", "upload_time_iso_8601": "2020-04-07T07:02:44.119988Z", "url": "https://files.pythonhosted.org/packages/ab/f6/270b8b1b9a99b855e1db1946a8db7e71bea3830fd746bd603b8687e0c1fd/awkward1-0.2.10-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0d7841957b6f1ab9e1348b06e6e46e31", "sha256": "bfffc563b9e99d2504dd35ebeebc09634fffba8ffd53d52f936629070786b5c2" }, "downloads": -1, "filename": "awkward1-0.2.10-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "0d7841957b6f1ab9e1348b06e6e46e31", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 7919135, "upload_time": "2020-04-07T06:54:10", "upload_time_iso_8601": "2020-04-07T06:54:10.771539Z", "url": "https://files.pythonhosted.org/packages/9a/00/0f4a4e9d70db9b9412f7fd8a7e8abc6179995b8b147ea1783e76f949018b/awkward1-0.2.10-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3d051101d7622a0b4a7f045fe25699da", "sha256": "c5836c139114604e6fde60c6bdb61e7becdc0fc679da3f9658bfbd1052539a66" }, "downloads": -1, "filename": "awkward1-0.2.10-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "3d051101d7622a0b4a7f045fe25699da", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 8181619, "upload_time": "2020-04-07T07:05:46", "upload_time_iso_8601": "2020-04-07T07:05:46.175439Z", "url": "https://files.pythonhosted.org/packages/a8/70/d7be9afc594ab30164c49d7d1f879b3f1b3cc5adff76e1039a0a884800df/awkward1-0.2.10-cp37-cp37m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7eb743f5baa26d639c9cd032c79f0419", "sha256": "0b3a560df6495f6b8d9506e9659a06d2d6460bc3d83b85d197891bade3588505" }, "downloads": -1, "filename": "awkward1-0.2.10-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "7eb743f5baa26d639c9cd032c79f0419", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 8009409, "upload_time": "2020-04-07T07:05:17", "upload_time_iso_8601": "2020-04-07T07:05:17.082796Z", "url": "https://files.pythonhosted.org/packages/d0/e2/013f76df133ecd5c81ec564fae1cdb5f95b74b068434d452257dc863facb/awkward1-0.2.10-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "beead54f56b3b6b3de5db66872b70cf2", "sha256": "91e9e730a6d652dbd4b138b9a962e1eb097bbd35fbbfb8d2c6cad626822506cd" }, "downloads": -1, "filename": "awkward1-0.2.10-cp37-cp37m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "beead54f56b3b6b3de5db66872b70cf2", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 8181605, "upload_time": "2020-04-07T07:06:54", "upload_time_iso_8601": "2020-04-07T07:06:54.213841Z", "url": "https://files.pythonhosted.org/packages/ae/f7/440a629d846494e0f45943e490b5cdc66e98a19f81a2c992cb4e1d34085d/awkward1-0.2.10-cp37-cp37m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "326bffe990abbade9c8ae52e74e5bdef", "sha256": "d7e5bacf5a3947621430623427f9a715dff1a2b1eeb3f01fc1f87fa6dec08aa3" }, "downloads": -1, "filename": "awkward1-0.2.10-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "326bffe990abbade9c8ae52e74e5bdef", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 8936049, "upload_time": "2020-04-07T07:51:19", "upload_time_iso_8601": "2020-04-07T07:51:19.552095Z", "url": "https://files.pythonhosted.org/packages/10/11/28b46387f31504f596b4d11ed2300dc1836afddd7e2c341b975594cd6abb/awkward1-0.2.10-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "54c617fd6ebb2542a48fdffdf6804dab", "sha256": "31385a379bfdc94bd8d846563d0ec3f869d5b7e361f32d52cf629fc2660697a6" }, "downloads": -1, "filename": "awkward1-0.2.10-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "54c617fd6ebb2542a48fdffdf6804dab", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 11221454, "upload_time": "2020-04-07T07:08:12", "upload_time_iso_8601": "2020-04-07T07:08:12.977596Z", "url": "https://files.pythonhosted.org/packages/9d/93/92bb3ccce3e07fb293b534770b0504716a7ac955c1c8a9be70ca2192c032/awkward1-0.2.10-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0cf99a3e9e24652f5a21e710f227383f", "sha256": "176807eace05823ffabb1fdc57865c7ce08fdbbb645dc0964a483acaeb5060c4" }, "downloads": -1, "filename": "awkward1-0.2.10-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "0cf99a3e9e24652f5a21e710f227383f", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 7987447, "upload_time": "2020-04-07T06:54:05", "upload_time_iso_8601": "2020-04-07T06:54:05.294373Z", "url": "https://files.pythonhosted.org/packages/c3/9a/36805ec25b8173da396c6123a75817308cf7caca75dc726121da4f8c6f5f/awkward1-0.2.10-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d7b9f964b000ad932b55ebbb29205710", "sha256": "2f6ba3a82163fc28b12104b25825cc2b9f101cd2a69babf84400f292b77fddd6" }, "downloads": -1, "filename": "awkward1-0.2.10-cp38-cp38-manylinux1_i686.whl", "has_sig": false, "md5_digest": "d7b9f964b000ad932b55ebbb29205710", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 8142714, "upload_time": "2020-04-07T07:05:47", "upload_time_iso_8601": "2020-04-07T07:05:47.875081Z", "url": "https://files.pythonhosted.org/packages/c8/d9/6e19d8d7b3bc2ed765efeaf01f00a5b4598be50f19407029c63df5cf0eea/awkward1-0.2.10-cp38-cp38-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "22fa2508af11b48893bf1069d0d9f085", "sha256": "24fd4f42d96f70fee9c40bb02f4f931c2c2b5955cc05f67a2eb40e19adbe52f7" }, "downloads": -1, "filename": "awkward1-0.2.10-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "22fa2508af11b48893bf1069d0d9f085", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 7973972, "upload_time": "2020-04-07T07:05:19", "upload_time_iso_8601": "2020-04-07T07:05:19.025019Z", "url": "https://files.pythonhosted.org/packages/16/5b/ff10af864b976d988e42b8d03e04f1103de4d77af977070fbf80f1a52fa5/awkward1-0.2.10-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "649b1014baa9a5b40ad7b75aec180141", "sha256": "632b1501cd518b4a3a63e8f40cc89da74bfcdb24214abcf9b2e4d6920b7dce98" }, "downloads": -1, "filename": "awkward1-0.2.10-cp38-cp38-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "649b1014baa9a5b40ad7b75aec180141", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 8171785, "upload_time": "2020-04-07T07:06:56", "upload_time_iso_8601": "2020-04-07T07:06:56.200753Z", "url": "https://files.pythonhosted.org/packages/2e/fa/abba05faf3aad3f697cf341413ab01fc0b7a3553434339a62c959b9e6942/awkward1-0.2.10-cp38-cp38-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b9295c59094618235e02c9dc26d9325c", "sha256": "4ea4b20cbb8fb5a29b943f10db0c2a1156f5d50c8bcfd9ec6183768403b5dab1" }, "downloads": -1, "filename": "awkward1-0.2.10-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "b9295c59094618235e02c9dc26d9325c", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 8938828, "upload_time": "2020-04-07T07:08:33", "upload_time_iso_8601": "2020-04-07T07:08:33.330073Z", "url": "https://files.pythonhosted.org/packages/99/90/519b4f9b0045829a3b97ffb073ec64564666f3d87aa27e495abd0f7b98c7/awkward1-0.2.10-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3aafbb8811482fd02a1fae07c012c1fc", "sha256": "3be3631ffa2cfc9f5ff6ad87e71906a4807f88ca2214969959e3bbb4dae3e70d" }, "downloads": -1, "filename": "awkward1-0.2.10-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "3aafbb8811482fd02a1fae07c012c1fc", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 11226761, "upload_time": "2020-04-07T07:10:55", "upload_time_iso_8601": "2020-04-07T07:10:55.550767Z", "url": "https://files.pythonhosted.org/packages/fd/43/cf11ab61dbebbdb46f5fdaa98574c55f3a5685887a56c29d0c3ff4df63b4/awkward1-0.2.10-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ea07dc77a30882236b24b0be8141dabb", "sha256": "d9c92e9232575441a6ad3b8b8420feb8e4e4e86258b28eeea60a68c4907e4b40" }, "downloads": -1, "filename": "awkward1-0.2.10.tar.gz", "has_sig": false, "md5_digest": "ea07dc77a30882236b24b0be8141dabb", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 516498, "upload_time": "2020-04-07T07:06:57", "upload_time_iso_8601": "2020-04-07T07:06:57.533638Z", "url": "https://files.pythonhosted.org/packages/6c/80/f9b4a7449ec8a889962ff28301cc8b845483de7916a40dd3f82178fe86e3/awkward1-0.2.10.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.19": [ { "comment_text": "", "digests": { "md5": "0a373da5ffb07df7c71ae164ff7aa91a", "sha256": "d1e0a5affd8842cb44b36c05ad882a0f4f440c3c1fe756960a67cfa48c76dea3" }, "downloads": -1, "filename": "awkward1-0.2.19-cp27-cp27m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "0a373da5ffb07df7c71ae164ff7aa91a", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 7003454, "upload_time": "2020-05-08T01:28:13", "upload_time_iso_8601": "2020-05-08T01:28:13.494483Z", "url": "https://files.pythonhosted.org/packages/c6/25/38e1a3028ebbf8a952ee98cd242604ff961a31966a74f48823ae2c0f1071/awkward1-0.2.19-cp27-cp27m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "98eee176c687869c53ea0c77cc0a70c6", "sha256": "57f0e97ab09129d8d4e609def7d1cefef10f07c0d1ad151fc42de99018cdd90e" }, "downloads": -1, "filename": "awkward1-0.2.19-cp27-cp27m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "98eee176c687869c53ea0c77cc0a70c6", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 7047799, "upload_time": "2020-05-08T01:39:52", "upload_time_iso_8601": "2020-05-08T01:39:52.864581Z", "url": "https://files.pythonhosted.org/packages/14/e8/d4ddb0d459b28f5f871be92d5a16004f7b9f953819b4524030e9dae06a22/awkward1-0.2.19-cp27-cp27m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "04eebb15fb513177c320eac2ddc8fe0a", "sha256": "f516779cbbb996f1c2d644969fbd767b04ea8c2e1413761f5bba2e21392dc34f" }, "downloads": -1, "filename": "awkward1-0.2.19-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "04eebb15fb513177c320eac2ddc8fe0a", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 6980873, "upload_time": "2020-05-08T01:39:42", "upload_time_iso_8601": "2020-05-08T01:39:42.048511Z", "url": "https://files.pythonhosted.org/packages/55/bd/26e754c2e1f0de9a719c25afe40504139b2f68f83096f0a37c0ec0e47d46/awkward1-0.2.19-cp27-cp27m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d6a79af3dc7e545d72ddc7bad632bb50", "sha256": "a50bee7fc78d369730d54a064984618d6e23e4668cd554888fdf34e892a52c5e" }, "downloads": -1, "filename": "awkward1-0.2.19-cp27-cp27m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "d6a79af3dc7e545d72ddc7bad632bb50", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 7121250, "upload_time": "2020-05-08T01:42:21", "upload_time_iso_8601": "2020-05-08T01:42:21.786858Z", "url": "https://files.pythonhosted.org/packages/6e/16/9b60054aa7329c01b146a043ed096933cca89370855e31da679803ea432f/awkward1-0.2.19-cp27-cp27m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "49eec0f2ccf54256c20ad26802b6eed7", "sha256": "f39b07aa78f8424bdb5826013ec237bb228cf0bc865daa0602195a38ddfbd8ee" }, "downloads": -1, "filename": "awkward1-0.2.19-cp27-cp27mu-manylinux1_i686.whl", "has_sig": false, "md5_digest": "49eec0f2ccf54256c20ad26802b6eed7", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 7047819, "upload_time": "2020-05-08T01:39:54", "upload_time_iso_8601": "2020-05-08T01:39:54.530364Z", "url": "https://files.pythonhosted.org/packages/52/9d/f29a1259cc481f49f20efacdfca369452b6ffafd5dc476caf896e30fd961/awkward1-0.2.19-cp27-cp27mu-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7cde6a6eb8f12d16449a93008dc35655", "sha256": "9787a286e46a75054d41b37488b4360a26fc81f70a00772f4163e7f5815adfb7" }, "downloads": -1, "filename": "awkward1-0.2.19-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "7cde6a6eb8f12d16449a93008dc35655", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 6980771, "upload_time": "2020-05-08T01:39:43", "upload_time_iso_8601": "2020-05-08T01:39:43.837913Z", "url": "https://files.pythonhosted.org/packages/6a/0c/c45854edb1bfd7049a22de734c9049f71eeb129e6fa7e76d8b5b41d68c4d/awkward1-0.2.19-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d195dd6272f6e4423e0e6f851fea2cb5", "sha256": "471aa3d6bfb498410f1c7a2b62941d61c0e4a956e6b6a40ea92c6d40818f6311" }, "downloads": -1, "filename": "awkward1-0.2.19-cp27-cp27mu-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "d195dd6272f6e4423e0e6f851fea2cb5", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 7121235, "upload_time": "2020-05-08T01:42:23", "upload_time_iso_8601": "2020-05-08T01:42:23.652481Z", "url": "https://files.pythonhosted.org/packages/30/e8/a5ce997c2c5682b8eb6e05100e72c1bb49e302bbc71a35531f7274f32e95/awkward1-0.2.19-cp27-cp27mu-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cd7f31f8c2a3244c8ce5a0b0b57666a0", "sha256": "e610b73a65b0594c215c60c6d33e87cbd347389bd359e799913d8b0450d3a756" }, "downloads": -1, "filename": "awkward1-0.2.19-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "cd7f31f8c2a3244c8ce5a0b0b57666a0", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 7881288, "upload_time": "2020-05-08T01:33:15", "upload_time_iso_8601": "2020-05-08T01:33:15.235479Z", "url": "https://files.pythonhosted.org/packages/7e/b8/8f2fd10ac3af207e2f048d078f519a37be32bbed024071ff52738eb43c0b/awkward1-0.2.19-cp27-cp27m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c00e22708deed5700ebe447fb9979baf", "sha256": "2ed523da0125d351d58b51e22ae5f17304e3123807ed0079da534c36102c43e3" }, "downloads": -1, "filename": "awkward1-0.2.19-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "c00e22708deed5700ebe447fb9979baf", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 10267502, "upload_time": "2020-05-08T01:33:15", "upload_time_iso_8601": "2020-05-08T01:33:15.431945Z", "url": "https://files.pythonhosted.org/packages/9d/45/8e29d1e9e1bb3867d5bc17b71ba02aea9ba15c4479ba1d0b4ef8387d7066/awkward1-0.2.19-cp27-cp27m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "25da9ed8030173c114559e9bdb7cd2ea", "sha256": "c83a2a33fe31cd2c4ba05af81528e256173da55a6bdfdfd69ae881c1336166ad" }, "downloads": -1, "filename": "awkward1-0.2.19-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "25da9ed8030173c114559e9bdb7cd2ea", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 7052825, "upload_time": "2020-05-08T01:39:56", "upload_time_iso_8601": "2020-05-08T01:39:56.241059Z", "url": "https://files.pythonhosted.org/packages/bd/74/debfcf1968bb7ae82d989ce81292536e59e7fb495909b25dbfcb9f5bd97e/awkward1-0.2.19-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ac001528dc7cd8463141d161a8d3cdcd", "sha256": "a16530de25bd22c635a5dc358d36d0c6053f34007ce4a48db59f345cb8e4525c" }, "downloads": -1, "filename": "awkward1-0.2.19-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "ac001528dc7cd8463141d161a8d3cdcd", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 6985548, "upload_time": "2020-05-08T01:39:45", "upload_time_iso_8601": "2020-05-08T01:39:45.425188Z", "url": "https://files.pythonhosted.org/packages/ac/e7/d67845c9484f4ebe2a9ef1441c2905f82705ce6935f1e57514bcf6fc1fda/awkward1-0.2.19-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e63c6898bfc0f9e84cb83d5925b558a3", "sha256": "f2b1aec62ecfc2ca94f0cd6c1bf1a5f7f9e49178cfdaed8d1bf9bba3e29fdeb6" }, "downloads": -1, "filename": "awkward1-0.2.19-cp35-cp35m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "e63c6898bfc0f9e84cb83d5925b558a3", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 7122856, "upload_time": "2020-05-08T01:42:25", "upload_time_iso_8601": "2020-05-08T01:42:25.423708Z", "url": "https://files.pythonhosted.org/packages/ea/0f/3a4b818040a1fec1c95b2da7eca9273b676c162a832e4579c9fe3290f8f4/awkward1-0.2.19-cp35-cp35m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fedd46f1d0252f7940287dacd678b286", "sha256": "b5a02172b41eeab248839b6ff603e429c5c69993287b85f592b6c8719104fdfd" }, "downloads": -1, "filename": "awkward1-0.2.19-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "fedd46f1d0252f7940287dacd678b286", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 7878061, "upload_time": "2020-05-08T01:33:11", "upload_time_iso_8601": "2020-05-08T01:33:11.140429Z", "url": "https://files.pythonhosted.org/packages/72/6e/acc3eda02aceea4eaf3353abb781e37c8a49bbcb8d924b6ea712d6277d44/awkward1-0.2.19-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9133bc37e7f290b9e8164d8302e810e5", "sha256": "1bb5f5180cb0d4d42548656e86eeb053803bc41a1b66c66356779f5e9d5ccf42" }, "downloads": -1, "filename": "awkward1-0.2.19-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "9133bc37e7f290b9e8164d8302e810e5", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 10265550, "upload_time": "2020-05-08T01:41:24", "upload_time_iso_8601": "2020-05-08T01:41:24.302418Z", "url": "https://files.pythonhosted.org/packages/70/5c/e21d3687bc50362313d089d4ab1fe9e35c268acb9f64cfddb1e54031eed1/awkward1-0.2.19-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0782746ef2c88f6705af87c0cd8b199f", "sha256": "3c97722a5c73a355f54c9b3c82b071c381221b8e513c9d08d95cf24e592806b5" }, "downloads": -1, "filename": "awkward1-0.2.19-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "0782746ef2c88f6705af87c0cd8b199f", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 7003596, "upload_time": "2020-05-08T01:28:24", "upload_time_iso_8601": "2020-05-08T01:28:24.721502Z", "url": "https://files.pythonhosted.org/packages/da/36/a6b44991c715d274f81fe3ba7e676cb1953ed724388e4b4c89fb12bca689/awkward1-0.2.19-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bf1a8a359d4d3e7be9795144b82fa95e", "sha256": "f71ad1edac44b772bd20f24f4ad7cfbc382455c0fac38bfe883cb82eb0ba05c3" }, "downloads": -1, "filename": "awkward1-0.2.19-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "bf1a8a359d4d3e7be9795144b82fa95e", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 7052837, "upload_time": "2020-05-08T01:39:57", "upload_time_iso_8601": "2020-05-08T01:39:57.688753Z", "url": "https://files.pythonhosted.org/packages/72/c5/84309c0616f617f066419edb904ff0a4f2baffa9db464a1ab0a73a68f0fb/awkward1-0.2.19-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2007c7bc76878b7f61bd6ffe1210a66a", "sha256": "bc24767796c0c63aa5a184517b605bda5b346aff82b467e9739ef4d2df7058fe" }, "downloads": -1, "filename": "awkward1-0.2.19-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "2007c7bc76878b7f61bd6ffe1210a66a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 6985536, "upload_time": "2020-05-08T01:39:46", "upload_time_iso_8601": "2020-05-08T01:39:46.809082Z", "url": "https://files.pythonhosted.org/packages/32/48/8cd1d8e9b6b8cdaa0e4fcb7034ab846c6e11f0b9bf74f16ff88e2b21d8ed/awkward1-0.2.19-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4d26c6517fbad0c3cbe349777f5c63f3", "sha256": "a28e74b319420f9e96de45a2a4a388080769a0c1b3141323a57f6dbb6d540548" }, "downloads": -1, "filename": "awkward1-0.2.19-cp36-cp36m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "4d26c6517fbad0c3cbe349777f5c63f3", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 7122844, "upload_time": "2020-05-08T01:42:27", "upload_time_iso_8601": "2020-05-08T01:42:27.089616Z", "url": "https://files.pythonhosted.org/packages/06/dc/22cc196f210848b4f5d22e1ae9f35937ee65dc013c9c8d458d66b0503c75/awkward1-0.2.19-cp36-cp36m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3ae16248e80228086e7deaa12f633d6a", "sha256": "d75fd183946fe459fb98bb2ef9f7b5d04f896a2085529506938b258a2bb783d9" }, "downloads": -1, "filename": "awkward1-0.2.19-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "3ae16248e80228086e7deaa12f633d6a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 7878104, "upload_time": "2020-05-08T01:44:09", "upload_time_iso_8601": "2020-05-08T01:44:09.099522Z", "url": "https://files.pythonhosted.org/packages/5e/72/acc9f682b1acc0f8557f72da613abce7543967bc66851218106d9b273d1e/awkward1-0.2.19-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8a04e2a9b8a5470152be42ad8747a97c", "sha256": "46317ffe99c9882eaf4e5a52a12a2d6d7626a9f4bab4d857fa5fa3c9199d1bef" }, "downloads": -1, "filename": "awkward1-0.2.19-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "8a04e2a9b8a5470152be42ad8747a97c", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 10265576, "upload_time": "2020-05-08T01:37:41", "upload_time_iso_8601": "2020-05-08T01:37:41.471136Z", "url": "https://files.pythonhosted.org/packages/93/7d/339364d2baf15d19f0510ef3a60d7f0947e4361a2d4c01e413d39209fb6c/awkward1-0.2.19-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cd89ec4069a6952566e056a295c9f105", "sha256": "e8c0512bde3ee23181abd6c672a22e4c147d72f66279ff1b880814cdd432149d" }, "downloads": -1, "filename": "awkward1-0.2.19-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "cd89ec4069a6952566e056a295c9f105", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 7003621, "upload_time": "2020-05-08T01:28:32", "upload_time_iso_8601": "2020-05-08T01:28:32.367255Z", "url": "https://files.pythonhosted.org/packages/3d/0e/190a9d2ef30aeed9be81fab9371b4400da2e012d6bad7bb1ab950c2c7ac5/awkward1-0.2.19-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2e2ebab86337bdbb721361d7e64d9f5c", "sha256": "4cedf5e2310453b043e0d41d4f0a535c009a09ab4433c507fda537938be181f0" }, "downloads": -1, "filename": "awkward1-0.2.19-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "2e2ebab86337bdbb721361d7e64d9f5c", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 7052972, "upload_time": "2020-05-08T01:39:59", "upload_time_iso_8601": "2020-05-08T01:39:59.171982Z", "url": "https://files.pythonhosted.org/packages/f8/d7/8b0b267f258fe3b79cf7d6e2322493d31ab2ad9c360891b2a0fdd6c37c64/awkward1-0.2.19-cp37-cp37m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8672c4ba2e4dbb0db734b0a5b542c9b5", "sha256": "c88014c2700a17c572a536fb113f362701f62de61f9513f450c4ab0c55c0085e" }, "downloads": -1, "filename": "awkward1-0.2.19-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "8672c4ba2e4dbb0db734b0a5b542c9b5", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 6983804, "upload_time": "2020-05-08T01:39:48", "upload_time_iso_8601": "2020-05-08T01:39:48.274154Z", "url": "https://files.pythonhosted.org/packages/29/b6/fb126e52f3eb193c402c4cee8e10d0c71e3f10e0a021dfaf0d5246e42d26/awkward1-0.2.19-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4c20a94799afd75614b6d8e29d59a953", "sha256": "c4166b68c0d8c3d027cf5c67992af29a59c7f48a616be5a1396e903e79862326" }, "downloads": -1, "filename": "awkward1-0.2.19-cp37-cp37m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "4c20a94799afd75614b6d8e29d59a953", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 7118413, "upload_time": "2020-05-08T01:42:28", "upload_time_iso_8601": "2020-05-08T01:42:28.581438Z", "url": "https://files.pythonhosted.org/packages/a3/75/3c92ff6278b7c391eb585444c38fccf30e2a0378fb951c8decb46c78a5cc/awkward1-0.2.19-cp37-cp37m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e9120dd68df3fa70163a6fff11080fab", "sha256": "f8c1939e105184882c2800bb053a184fc806d5e1ec41e944a1fe7142f55598f2" }, "downloads": -1, "filename": "awkward1-0.2.19-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "e9120dd68df3fa70163a6fff11080fab", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 7878399, "upload_time": "2020-05-08T01:38:23", "upload_time_iso_8601": "2020-05-08T01:38:23.351402Z", "url": "https://files.pythonhosted.org/packages/2d/52/ef7278618a86436005ccd8cd6fb1f8f679c6ec4f55ad483a370f9cc0496f/awkward1-0.2.19-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "71f811b5d7a7f4c8e6317e1896485812", "sha256": "903a8d19aa0b98b31c2e5d56ad47340178f7f7f81c415b9f831f19f41863b49d" }, "downloads": -1, "filename": "awkward1-0.2.19-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "71f811b5d7a7f4c8e6317e1896485812", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 10265668, "upload_time": "2020-05-08T01:42:31", "upload_time_iso_8601": "2020-05-08T01:42:31.140446Z", "url": "https://files.pythonhosted.org/packages/0b/96/c4c28aacd83dae571e66696d1aa7549fdda0c4f53284b50ac8105cfc9953/awkward1-0.2.19-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f30f3a2c994f3fcbefdee6269bd991f0", "sha256": "535cc239e8661e859447ef6570cf692d4261cccf9b90c3a3c74f7396e5921a36" }, "downloads": -1, "filename": "awkward1-0.2.19-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "f30f3a2c994f3fcbefdee6269bd991f0", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 7084889, "upload_time": "2020-05-08T01:28:12", "upload_time_iso_8601": "2020-05-08T01:28:12.579165Z", "url": "https://files.pythonhosted.org/packages/42/dc/8669e541a6068272ea7e8a59d4bcd81c98f5fe74ab8f08918719340c32b2/awkward1-0.2.19-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1ee98775624b7c5d0acb1eaba7fd08b0", "sha256": "ccd99979d29e033e73d66b191f42e17dc60ddbeaece19e4a5152147784d4c6fc" }, "downloads": -1, "filename": "awkward1-0.2.19-cp38-cp38-manylinux1_i686.whl", "has_sig": false, "md5_digest": "1ee98775624b7c5d0acb1eaba7fd08b0", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 7012943, "upload_time": "2020-05-08T01:40:00", "upload_time_iso_8601": "2020-05-08T01:40:00.695798Z", "url": "https://files.pythonhosted.org/packages/11/84/e3ddfe26737d2608b3f6e64522385b5ababb95e02f70387e3048a01053db/awkward1-0.2.19-cp38-cp38-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3ece9f1fccca144559df92431cdc01ad", "sha256": "0ff5582ed6c478ab5ac61fe3d6884e76b9b977e75c8acf893424e7ee5ad22581" }, "downloads": -1, "filename": "awkward1-0.2.19-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "3ece9f1fccca144559df92431cdc01ad", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 6923038, "upload_time": "2020-05-08T01:39:49", "upload_time_iso_8601": "2020-05-08T01:39:49.808286Z", "url": "https://files.pythonhosted.org/packages/24/32/28430f89ed32e2188e0fbd3b11d3e481542ae8b04b7e4ecd5a5b8d903ebc/awkward1-0.2.19-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5c0555729292bda821945e694abf2fb0", "sha256": "b3f6f79aafbb47d2a3261b3efa24c7c4d275518eece8f9915049a30f306b5af6" }, "downloads": -1, "filename": "awkward1-0.2.19-cp38-cp38-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "5c0555729292bda821945e694abf2fb0", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 7119525, "upload_time": "2020-05-08T01:42:30", "upload_time_iso_8601": "2020-05-08T01:42:30.326047Z", "url": "https://files.pythonhosted.org/packages/94/ab/430887080c6f30a75953cf2501544c7a8dd12c23a498c8930f761e44fc02/awkward1-0.2.19-cp38-cp38-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5e973e57caaf28b3ecc708569af405f0", "sha256": "cfcfc8d6c1426fecd1217cf01becc77d3b5869da02fe501fe389a1032b5e34fa" }, "downloads": -1, "filename": "awkward1-0.2.19-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "5e973e57caaf28b3ecc708569af405f0", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 7883559, "upload_time": "2020-05-08T01:48:00", "upload_time_iso_8601": "2020-05-08T01:48:00.311946Z", "url": "https://files.pythonhosted.org/packages/ed/eb/6447102f926de8f7d3a0c4d3f0cfcded71f18e678d0020b880761e8d304a/awkward1-0.2.19-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4569216e8708e8853fcb17c687be135e", "sha256": "722ea5753e59c72c8bc455e5143a36f178db51caeee84d8695dd659fceb66155" }, "downloads": -1, "filename": "awkward1-0.2.19-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "4569216e8708e8853fcb17c687be135e", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 10270328, "upload_time": "2020-05-08T01:47:06", "upload_time_iso_8601": "2020-05-08T01:47:06.300141Z", "url": "https://files.pythonhosted.org/packages/67/15/904d53d5641aa1dc900c4d4b06660441ccd7ef5510912432f11170d2200d/awkward1-0.2.19-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8d4259192846fd097913b7b8368343f8", "sha256": "23446eacdf52cad1fb0b5bb0f2ed16c1ae8bb5a282d667ad37ab69494e1ef27f" }, "downloads": -1, "filename": "awkward1-0.2.19.tar.gz", "has_sig": false, "md5_digest": "8d4259192846fd097913b7b8368343f8", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 569988, "upload_time": "2020-05-08T01:42:31", "upload_time_iso_8601": "2020-05-08T01:42:31.594343Z", "url": "https://files.pythonhosted.org/packages/af/2e/58d5b2cf934d81b04555da410ccc55ef33289f9ea7ebdb399dc531e31d8f/awkward1-0.2.19.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.20": [ { "comment_text": "", "digests": { "md5": "c808be4834c47ba8e2379e03f7bb9937", "sha256": "6939cd41072fb5f1a19a8ba0f5a6a3b3abd9c5cbced7530ac60d23ae991f43d7" }, "downloads": -1, "filename": "awkward1-0.2.20-cp27-cp27m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "c808be4834c47ba8e2379e03f7bb9937", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7011327, "upload_time": "2020-05-14T02:59:37", "upload_time_iso_8601": "2020-05-14T02:59:37.566083Z", "url": "https://files.pythonhosted.org/packages/0c/eb/9704c57a1cee5f32c5107a114230810d45a5032896540b4d19428aa87973/awkward1-0.2.20-cp27-cp27m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ad091a17bd0b274be46ed74b203a5097", "sha256": "3b5231dfde4e04b4e3d53d630a065f7e91817e4e66855223d997b44f5e79a4fa" }, "downloads": -1, "filename": "awkward1-0.2.20-cp27-cp27m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "ad091a17bd0b274be46ed74b203a5097", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7051356, "upload_time": "2020-05-14T03:10:31", "upload_time_iso_8601": "2020-05-14T03:10:31.179253Z", "url": "https://files.pythonhosted.org/packages/c2/83/0758029beb8f3ec3db8198bd7807f3c7bdd24a8a7092f9b1095e836b5f48/awkward1-0.2.20-cp27-cp27m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "272f55c4655d5afd3f5f07225fa044a2", "sha256": "f58a0ab6f342285db07b32b4137ecd10cb57ba82b465b4e3c06abb7b69070a61" }, "downloads": -1, "filename": "awkward1-0.2.20-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "272f55c4655d5afd3f5f07225fa044a2", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6976710, "upload_time": "2020-05-14T03:11:33", "upload_time_iso_8601": "2020-05-14T03:11:33.145358Z", "url": "https://files.pythonhosted.org/packages/f5/08/b7164faaefedb4c289f20b2de81e7173f87d1f5232906b0e7bddf6945dee/awkward1-0.2.20-cp27-cp27m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "05f131d1f5a9906a88e8f6a3b172395d", "sha256": "97a4c36cee15c7ca8185d2bd410b082f2090ed25c69eeca6ff980e164578ca46" }, "downloads": -1, "filename": "awkward1-0.2.20-cp27-cp27m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "05f131d1f5a9906a88e8f6a3b172395d", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7129319, "upload_time": "2020-05-14T03:13:37", "upload_time_iso_8601": "2020-05-14T03:13:37.544323Z", "url": "https://files.pythonhosted.org/packages/8b/f3/55b57bde189d5b748aa9d135083dcbf6e454fe6e3e228dc610eee340c414/awkward1-0.2.20-cp27-cp27m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "729bf0efac79f950fa14b8eb0e3904df", "sha256": "3f9fbbfcac571a373510741efd3cb9836152247706ab8ae0b7a59eb2255f4bfc" }, "downloads": -1, "filename": "awkward1-0.2.20-cp27-cp27mu-manylinux1_i686.whl", "has_sig": false, "md5_digest": "729bf0efac79f950fa14b8eb0e3904df", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7051275, "upload_time": "2020-05-14T03:10:32", "upload_time_iso_8601": "2020-05-14T03:10:32.930776Z", "url": "https://files.pythonhosted.org/packages/43/c9/1d442249cb4d7c9420ce495dbf3ce3c66de6ee981dc57ed7029560737ae7/awkward1-0.2.20-cp27-cp27mu-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "297fe711d9f57bb6b84e4d7e0d2430ce", "sha256": "641fcd234b64a8b83e65aa195531656e79a91c9b75732d271866fe4e5658c31b" }, "downloads": -1, "filename": "awkward1-0.2.20-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "297fe711d9f57bb6b84e4d7e0d2430ce", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6976667, "upload_time": "2020-05-14T03:11:36", "upload_time_iso_8601": "2020-05-14T03:11:36.600309Z", "url": "https://files.pythonhosted.org/packages/92/08/9008984f863dc31c59db50643440a88930caf342602d9c6e9a0c0aa87eab/awkward1-0.2.20-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "59500654adb65699f201350ea5ae3a13", "sha256": "109e9b066a34ccd5cbacaa854f1a6c4a879001e6994c6c891f0a8eac11c66b5c" }, "downloads": -1, "filename": "awkward1-0.2.20-cp27-cp27mu-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "59500654adb65699f201350ea5ae3a13", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7129278, "upload_time": "2020-05-14T03:13:40", "upload_time_iso_8601": "2020-05-14T03:13:40.886768Z", "url": "https://files.pythonhosted.org/packages/6a/b6/1b4b092ec35fb7dfbb39d4b3df1e85b285c6cf3afcc5f708a7f03028389a/awkward1-0.2.20-cp27-cp27mu-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cb91e4cc3aa9c3a206d120a10263935b", "sha256": "9b2890377abe48cefacc2e551ae7bdea5e95420dfcdd12b460cb3a74c4aea8e8" }, "downloads": -1, "filename": "awkward1-0.2.20-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "cb91e4cc3aa9c3a206d120a10263935b", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7888340, "upload_time": "2020-05-14T03:03:56", "upload_time_iso_8601": "2020-05-14T03:03:56.388758Z", "url": "https://files.pythonhosted.org/packages/2b/2c/20ada9548b6d7502b7d3b903de13193164693732b3fad323b5ec53f45a40/awkward1-0.2.20-cp27-cp27m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "aac693e39eb8f5bae40c036a16179d38", "sha256": "e96e7a70ed40140c72165544e8c9683acc50e9071be6ae4f909e9283e8583ffd" }, "downloads": -1, "filename": "awkward1-0.2.20-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "aac693e39eb8f5bae40c036a16179d38", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 10265615, "upload_time": "2020-05-14T03:03:58", "upload_time_iso_8601": "2020-05-14T03:03:58.363639Z", "url": "https://files.pythonhosted.org/packages/fc/92/b786c053cca683fd22a37f19f2932831c4498e83ec28953bd5739b37148a/awkward1-0.2.20-cp27-cp27m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3aa819446648dd29c0fd11a7c5b07013", "sha256": "b01b29d042dcc569360072b5cb3bcb75140ebcc5281b219d6a890ffd778332c3" }, "downloads": -1, "filename": "awkward1-0.2.20-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "3aa819446648dd29c0fd11a7c5b07013", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7056403, "upload_time": "2020-05-14T03:10:34", "upload_time_iso_8601": "2020-05-14T03:10:34.595585Z", "url": "https://files.pythonhosted.org/packages/f9/3d/5da33fd68aad4b53f30913177bd63ad70f3b825c97b1f515adae056f6025/awkward1-0.2.20-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1d6d845aa3bbb4a1ed89ddf0fe648372", "sha256": "5936f2c0d04caf93661d4cf3cdcc622c66cc5c766a8b9dd9296438e91260cc3f" }, "downloads": -1, "filename": "awkward1-0.2.20-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "1d6d845aa3bbb4a1ed89ddf0fe648372", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6981693, "upload_time": "2020-05-14T03:11:40", "upload_time_iso_8601": "2020-05-14T03:11:40.055663Z", "url": "https://files.pythonhosted.org/packages/da/0f/a758f3a0968bafaecbab0bb579433e8b67f27f48073280a9a614cb796890/awkward1-0.2.20-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3498ba8686d6938b617fecda6ed6cee6", "sha256": "fedba51f20c7806dfeef756b5069764827312111179fbca46dd0b7d0ac8171a2" }, "downloads": -1, "filename": "awkward1-0.2.20-cp35-cp35m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "3498ba8686d6938b617fecda6ed6cee6", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7131050, "upload_time": "2020-05-14T03:13:42", "upload_time_iso_8601": "2020-05-14T03:13:42.902579Z", "url": "https://files.pythonhosted.org/packages/bc/e9/abc8dae28940e6eaa89ce51b61cb4b96c6be8d1fa952c315b15fe72a79ab/awkward1-0.2.20-cp35-cp35m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "313923b51f98d9387cb25db68593724a", "sha256": "f1b689064f61505b8eb4dd2940da7e4a312f36629d4b2d7ffb188261a331417b" }, "downloads": -1, "filename": "awkward1-0.2.20-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "313923b51f98d9387cb25db68593724a", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7885050, "upload_time": "2020-05-14T03:03:49", "upload_time_iso_8601": "2020-05-14T03:03:49.243261Z", "url": "https://files.pythonhosted.org/packages/2b/88/0efec74b66f0db2c83534f9bb7aa8a03c83f684bd043200920f5875654e3/awkward1-0.2.20-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "24bea29ff9b30d4454e315b95b00ee52", "sha256": "1bc8c3b420ff94a1c095b422781bb5a42d50cb6a460048352ad502dbcf2f9fd6" }, "downloads": -1, "filename": "awkward1-0.2.20-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "24bea29ff9b30d4454e315b95b00ee52", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 10264295, "upload_time": "2020-05-14T03:07:51", "upload_time_iso_8601": "2020-05-14T03:07:51.460242Z", "url": "https://files.pythonhosted.org/packages/b3/7b/d2a97b0a6b141fd7ca33e5c864a4cf1878305f7d68a6b09eda1ebe062908/awkward1-0.2.20-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d1179fb09a7a13cd6b5ba5750968f36d", "sha256": "b03ea13cbedba13538bd3e6760464cff752ea8268a7558022c24ca0e4b9971af" }, "downloads": -1, "filename": "awkward1-0.2.20-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "d1179fb09a7a13cd6b5ba5750968f36d", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7011340, "upload_time": "2020-05-14T03:00:11", "upload_time_iso_8601": "2020-05-14T03:00:11.922295Z", "url": "https://files.pythonhosted.org/packages/68/9b/ebea2472791645146de47806bd61080a5345040fdecbfdbf5dbbb48fa954/awkward1-0.2.20-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f8cdc5eeec307cd2d31a24d5017e3622", "sha256": "ff5d258c097baffc084b600155bd91120f5371a35a32f911a80b4c8a88dc79bb" }, "downloads": -1, "filename": "awkward1-0.2.20-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "f8cdc5eeec307cd2d31a24d5017e3622", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7056400, "upload_time": "2020-05-14T03:10:36", "upload_time_iso_8601": "2020-05-14T03:10:36.684572Z", "url": "https://files.pythonhosted.org/packages/0c/3f/c5773592374e993d47f667aa8aa21079b4e22adc1c97e1c87acffe44ff31/awkward1-0.2.20-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "be302d5734c77ece834ab1f98ac13391", "sha256": "658d6f9bbd24dc06ddc39d35c9c0f16993f6fb5583ebf62605ce995f7f0d5886" }, "downloads": -1, "filename": "awkward1-0.2.20-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "be302d5734c77ece834ab1f98ac13391", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6981682, "upload_time": "2020-05-14T03:11:43", "upload_time_iso_8601": "2020-05-14T03:11:43.308341Z", "url": "https://files.pythonhosted.org/packages/3e/8e/86d8b387310f713f8d6312fca5a971158ace18d87ce1aa867510df4fafd3/awkward1-0.2.20-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0cfc33ec8445c48c140a4e821ef4ccda", "sha256": "19209994a7b6a48938f2cd5ae040ca72dc6acfe55f2a11e1fec5561584ecd2e1" }, "downloads": -1, "filename": "awkward1-0.2.20-cp36-cp36m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "0cfc33ec8445c48c140a4e821ef4ccda", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7131046, "upload_time": "2020-05-14T03:13:44", "upload_time_iso_8601": "2020-05-14T03:13:44.620123Z", "url": "https://files.pythonhosted.org/packages/7f/ab/c9688013fe3660c7a2835367c269e010057adeb256a3b95ea453f8de0440/awkward1-0.2.20-cp36-cp36m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "64d9dd3bc950fc737a9d6fb6372e2582", "sha256": "22ff4d1a698c5c40f00fc39b7dcf50bd3de3273d5bcba3e45574fe69101534fa" }, "downloads": -1, "filename": "awkward1-0.2.20-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "64d9dd3bc950fc737a9d6fb6372e2582", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7885056, "upload_time": "2020-05-14T03:07:35", "upload_time_iso_8601": "2020-05-14T03:07:35.610656Z", "url": "https://files.pythonhosted.org/packages/72/d1/668a4570e9c72dd3aee1ee7118b1d6d2ac5a98d49449e4a3430dd5d280a7/awkward1-0.2.20-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "edc0430d393f9673b679a518e0b4bd52", "sha256": "ffbd00bcc42c421891469341363e5159bc1a220cbc0b8ecf98d320007172699d" }, "downloads": -1, "filename": "awkward1-0.2.20-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "edc0430d393f9673b679a518e0b4bd52", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 10264280, "upload_time": "2020-05-14T03:09:03", "upload_time_iso_8601": "2020-05-14T03:09:03.856337Z", "url": "https://files.pythonhosted.org/packages/c3/c8/4d1ed53e6b7cb4643739db8955e3a5459b8c453f85bdc6357bfde325deea/awkward1-0.2.20-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ba7f411aa5ffa1480a425136e08be1e2", "sha256": "2a41be2f062d434a738425b1afb63f7ad665027c6877d297fccb256d252bb8fb" }, "downloads": -1, "filename": "awkward1-0.2.20-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "ba7f411aa5ffa1480a425136e08be1e2", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7011375, "upload_time": "2020-05-14T02:59:36", "upload_time_iso_8601": "2020-05-14T02:59:36.740170Z", "url": "https://files.pythonhosted.org/packages/4c/cc/f4503152e24b87215cb8a5c3f42d15b27f4c5f6a9fd82c142bd2bb54a749/awkward1-0.2.20-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "35e193a911000b3eaeeca1b8065790c8", "sha256": "26b370a14a474eab1d89e848a15efb34ae1c961805fb9c5b311278ee6bca2060" }, "downloads": -1, "filename": "awkward1-0.2.20-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "35e193a911000b3eaeeca1b8065790c8", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7056527, "upload_time": "2020-05-14T03:10:38", "upload_time_iso_8601": "2020-05-14T03:10:38.306395Z", "url": "https://files.pythonhosted.org/packages/9b/6f/5f1290055d317ccabf3b3e5e4cf61da1b0a44930317ea48fbcffa6d35cf7/awkward1-0.2.20-cp37-cp37m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6fae636829eb96813d36d27653461f7e", "sha256": "a0c689ec19251e777f129bb98a66064ff9aff1fafdc0ab8bb7581ac9fbec0f2a" }, "downloads": -1, "filename": "awkward1-0.2.20-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "6fae636829eb96813d36d27653461f7e", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6979871, "upload_time": "2020-05-14T03:11:46", "upload_time_iso_8601": "2020-05-14T03:11:46.156044Z", "url": "https://files.pythonhosted.org/packages/fa/9f/a62a7c73c85e8a78c58d706212bf88ac31b912405c02a5001af14b6e5f4f/awkward1-0.2.20-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5a8e38dd66a4a073b5b9823777ac8757", "sha256": "fb035de22b17e275c8f769634df1f6b68ef4bc2a5c5590c48d5d848f7496cfcc" }, "downloads": -1, "filename": "awkward1-0.2.20-cp37-cp37m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "5a8e38dd66a4a073b5b9823777ac8757", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7126539, "upload_time": "2020-05-14T03:13:46", "upload_time_iso_8601": "2020-05-14T03:13:46.133270Z", "url": "https://files.pythonhosted.org/packages/34/d9/b4718931382d489f9047a2124730fc29a8cd924d71947a6b8907eb57ced3/awkward1-0.2.20-cp37-cp37m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ed5c368b05185788ee38dcf1275b6eab", "sha256": "505d0823d77d74227d567a1a9a4a78b5e7130fe71e06cfd3031658ca356d467c" }, "downloads": -1, "filename": "awkward1-0.2.20-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "ed5c368b05185788ee38dcf1275b6eab", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7885918, "upload_time": "2020-05-14T03:09:58", "upload_time_iso_8601": "2020-05-14T03:09:58.740112Z", "url": "https://files.pythonhosted.org/packages/87/a1/061d9e6c2730dae9a2737abff23a91000410640512c063186f186f512f31/awkward1-0.2.20-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d5f38c1eb862e1651a8a9ffc23deea24", "sha256": "1f828016276090fba66b4f351169f61c9cd35a1f3204d1ffe464d3c5decfd1d9" }, "downloads": -1, "filename": "awkward1-0.2.20-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "d5f38c1eb862e1651a8a9ffc23deea24", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 10264930, "upload_time": "2020-05-14T11:26:03", "upload_time_iso_8601": "2020-05-14T11:26:03.441988Z", "url": "https://files.pythonhosted.org/packages/0e/ee/d87d12919705a6e742dc501376e844a3f9a92b74f05768909d3ed280de2e/awkward1-0.2.20-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bc3db1a4e856b4a2280612864b9ac9a9", "sha256": "672b973ed90983d849d1500acb3696baa9f04a7aafe6ec7508e037255a01d35d" }, "downloads": -1, "filename": "awkward1-0.2.20-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "bc3db1a4e856b4a2280612864b9ac9a9", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7093311, "upload_time": "2020-05-14T02:59:03", "upload_time_iso_8601": "2020-05-14T02:59:03.968302Z", "url": "https://files.pythonhosted.org/packages/ac/53/b37e98fc733c84abe1e76933ceb414aa569b94391d7ff9521e4fc3e4e892/awkward1-0.2.20-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a03239f2f3e624329e3d524dc2806344", "sha256": "7d6ec6eb7cf54a2ff40af90a99306480141ea71f25ca4f1fd9b03c5442c0528f" }, "downloads": -1, "filename": "awkward1-0.2.20-cp38-cp38-manylinux1_i686.whl", "has_sig": false, "md5_digest": "a03239f2f3e624329e3d524dc2806344", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7016493, "upload_time": "2020-05-14T03:10:39", "upload_time_iso_8601": "2020-05-14T03:10:39.736098Z", "url": "https://files.pythonhosted.org/packages/c5/cd/e55e93c44009480fb02c6e0a563788bd5bc5dafebfdc4875195642d7adcb/awkward1-0.2.20-cp38-cp38-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4de77acafba1315cce43bbd1c2e3dd6f", "sha256": "626447f80e8262acce672023ac309b7fdf9929aa592f59a0a478349fce21f36c" }, "downloads": -1, "filename": "awkward1-0.2.20-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "4de77acafba1315cce43bbd1c2e3dd6f", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6919262, "upload_time": "2020-05-14T03:11:48", "upload_time_iso_8601": "2020-05-14T03:11:48.958599Z", "url": "https://files.pythonhosted.org/packages/70/83/589b0ef2ee930d152a34c67d977ea0c9343a5ad280805e84dc67f3690eaf/awkward1-0.2.20-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "913e31d1763f9c9b2944b88d059e9d6e", "sha256": "848c427ffbfc570614ebbcc79287b2a76bbe2525164e03be757b1aa53559e6d2" }, "downloads": -1, "filename": "awkward1-0.2.20-cp38-cp38-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "913e31d1763f9c9b2944b88d059e9d6e", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7127509, "upload_time": "2020-05-14T03:13:48", "upload_time_iso_8601": "2020-05-14T03:13:48.091715Z", "url": "https://files.pythonhosted.org/packages/4b/74/2bc3f63ea4450b639a6a86d8b082c519a30279e1099de1de0be6742d4ad8/awkward1-0.2.20-cp38-cp38-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cbf230617827201f20fc6eae00b4f354", "sha256": "d28c69c3ad3942368e141ecfe97b785d02622e45a90182c2efc5f369b97f2ed3" }, "downloads": -1, "filename": "awkward1-0.2.20-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "cbf230617827201f20fc6eae00b4f354", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7889735, "upload_time": "2020-05-14T03:12:13", "upload_time_iso_8601": "2020-05-14T03:12:13.910086Z", "url": "https://files.pythonhosted.org/packages/79/6e/32a5cf7b7f2471f8b9cabfcd9c4bd4d5ecea089d0e94eccd65444462a4da/awkward1-0.2.20-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "61e096c2942b39f5b0a53c6b781bcab5", "sha256": "317cdafe970e5810ef81aee90ef785d6d759ed307d59f61aa7001427874720e2" }, "downloads": -1, "filename": "awkward1-0.2.20-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "61e096c2942b39f5b0a53c6b781bcab5", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 10268648, "upload_time": "2020-05-14T03:16:20", "upload_time_iso_8601": "2020-05-14T03:16:20.175932Z", "url": "https://files.pythonhosted.org/packages/9a/d2/b515545a9472054b52ccd12cdd0a461908aa3a533bf1d06f869e65a4334d/awkward1-0.2.20-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f5cd56d2c438af53830d104c22c5142d", "sha256": "49ef3c4ab69435d2961bf01ca1207e18f6a12965b24a021c8b7d5f8a7d88b760" }, "downloads": -1, "filename": "awkward1-0.2.20.tar.gz", "has_sig": false, "md5_digest": "f5cd56d2c438af53830d104c22c5142d", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 578742, "upload_time": "2020-05-14T03:13:49", "upload_time_iso_8601": "2020-05-14T03:13:49.344009Z", "url": "https://files.pythonhosted.org/packages/36/2a/ab3b6f046fe6b03bd84d608f1460a6401d4fb0ce7cb15b05938f8646ad8f/awkward1-0.2.20.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.21": [ { "comment_text": "", "digests": { "md5": "43baac93a1713dabbeceaaaa2f693598", "sha256": "412b4a39242c4d26e9d14197b3744414bb45008b459b65bca2bf81adefe4b8e6" }, "downloads": -1, "filename": "awkward1-0.2.21-cp27-cp27m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "43baac93a1713dabbeceaaaa2f693598", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6137066, "upload_time": "2020-05-28T23:57:39", "upload_time_iso_8601": "2020-05-28T23:57:39.661140Z", "url": "https://files.pythonhosted.org/packages/32/21/eb481c7211d8e3453505557a1d668de5c69e229be690042cb474675d2fda/awkward1-0.2.21-cp27-cp27m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7cc2857050d1f7a92cf923bbb7ab1002", "sha256": "8b3e3a03e25102ff260c70a2ebab9e6e25da343d4f44642098ea40c55f0ac434" }, "downloads": -1, "filename": "awkward1-0.2.21-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "7cc2857050d1f7a92cf923bbb7ab1002", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7909138, "upload_time": "2020-05-29T00:02:48", "upload_time_iso_8601": "2020-05-29T00:02:48.497202Z", "url": "https://files.pythonhosted.org/packages/2a/db/8bec0fb2cedf2e0cdd43ec9a8312deb790940f48e7f06959782bb1f21651/awkward1-0.2.21-cp27-cp27m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7476cff37acf22ee96a85dbb17b70d5d", "sha256": "0f1cd6f2588a51854ed30ece4a5c3fd0b54c42a475e25e42b3e22f6281709cdd" }, "downloads": -1, "filename": "awkward1-0.2.21-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "7476cff37acf22ee96a85dbb17b70d5d", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 10298802, "upload_time": "2020-05-29T00:02:58", "upload_time_iso_8601": "2020-05-29T00:02:58.364975Z", "url": "https://files.pythonhosted.org/packages/4f/83/f49df4cddf88819748a8b92e60ab6d34862a1470351d08926201afc7b1f3/awkward1-0.2.21-cp27-cp27m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1553021b5b9c9c300dbbed5e2287c8ca", "sha256": "30697f54fc196483fdea55fcca3c15680ad152980c7d8b26d669d38070e7524f" }, "downloads": -1, "filename": "awkward1-0.2.21-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "1553021b5b9c9c300dbbed5e2287c8ca", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 10296363, "upload_time": "2020-05-29T00:04:08", "upload_time_iso_8601": "2020-05-29T00:04:08.847563Z", "url": "https://files.pythonhosted.org/packages/ca/62/6685d5e9f2d4261c022a16f3f45162bd9aa64f33e3265fd6fea902c43084/awkward1-0.2.21-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4dc48d480d9e769e8ad2d42b4eb612d8", "sha256": "2d6639bdd4c058caec95829a63464cfecda03a7f656726aa2ace28a60e955423" }, "downloads": -1, "filename": "awkward1-0.2.21-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "4dc48d480d9e769e8ad2d42b4eb612d8", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6137346, "upload_time": "2020-05-28T23:57:44", "upload_time_iso_8601": "2020-05-28T23:57:44.046991Z", "url": "https://files.pythonhosted.org/packages/22/b5/58eca71b3800dbd2809ef0932c4d0e1b468889ede8cd3928e17affea46b5/awkward1-0.2.21-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "43718ffe4b45e7783fd90183049f719c", "sha256": "6db618113fdaa780894c6850f4d58e0e787ebccf1c53a545ef17c7059080180f" }, "downloads": -1, "filename": "awkward1-0.2.21-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "43718ffe4b45e7783fd90183049f719c", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7905575, "upload_time": "2020-05-29T00:07:40", "upload_time_iso_8601": "2020-05-29T00:07:40.537000Z", "url": "https://files.pythonhosted.org/packages/b1/26/8002f79247bc72579a683a230477e7d993e212500d19c9f453122ac406fd/awkward1-0.2.21-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c19740ea843f12ed0974459c120b49bf", "sha256": "688540f231e9e1e870f7971288d7cdf6bea68ae4d49f3be3c5620c75e9e0c445" }, "downloads": -1, "filename": "awkward1-0.2.21-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "c19740ea843f12ed0974459c120b49bf", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 10296356, "upload_time": "2020-05-29T00:07:36", "upload_time_iso_8601": "2020-05-29T00:07:36.703754Z", "url": "https://files.pythonhosted.org/packages/b1/00/9be1952c9fa515b3f7474863c621e40fa1d4a4ed2ee1d9f77c0603182be9/awkward1-0.2.21-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "32343a0893f381fb3a004d5d0ce1e031", "sha256": "e2e8d4e4a27f8efea8e6cec404cc6b404449d40d4d81fa5342adc8b81537062c" }, "downloads": -1, "filename": "awkward1-0.2.21-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "32343a0893f381fb3a004d5d0ce1e031", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6137281, "upload_time": "2020-05-28T23:57:32", "upload_time_iso_8601": "2020-05-28T23:57:32.849322Z", "url": "https://files.pythonhosted.org/packages/83/b5/dc4bcaf9aece7b37754b1f53f7d4198dd9454d627f34f0d8c40e07ef5b0b/awkward1-0.2.21-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9e45842a2eea2acc006a7a6c09679a51", "sha256": "7b2d512872c906f0452d8ee277242311d5f7d0c206a29c30dc0868afc222d156" }, "downloads": -1, "filename": "awkward1-0.2.21-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "9e45842a2eea2acc006a7a6c09679a51", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7905095, "upload_time": "2020-05-29T00:07:42", "upload_time_iso_8601": "2020-05-29T00:07:42.742874Z", "url": "https://files.pythonhosted.org/packages/49/40/10ea0748203daf0dba77ea6cc95b470ae145fa1e9197a56d15f7a398cc5e/awkward1-0.2.21-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bb3d82ccbd84669be72a99048d665c9e", "sha256": "ee20690174d88433b15e673f5cc47e4b98f6a8395daacf90050c187023dfd1bc" }, "downloads": -1, "filename": "awkward1-0.2.21-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "bb3d82ccbd84669be72a99048d665c9e", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 10297086, "upload_time": "2020-05-29T00:07:55", "upload_time_iso_8601": "2020-05-29T00:07:55.380636Z", "url": "https://files.pythonhosted.org/packages/c3/8f/ce173bbcb724a720bf34df3ef2d8879b2287a2a36678be8de16eeefefd21/awkward1-0.2.21-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "47d30cda9b608b1afa97a83434e276fb", "sha256": "df021db60ddd69ae87c6f73ab3695bbc1c70f035d82f35a3333450042c6f8dda" }, "downloads": -1, "filename": "awkward1-0.2.21-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "47d30cda9b608b1afa97a83434e276fb", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6219166, "upload_time": "2020-05-28T23:57:33", "upload_time_iso_8601": "2020-05-28T23:57:33.665557Z", "url": "https://files.pythonhosted.org/packages/c2/54/97019cf7b307a9526be71d16c5621b6fb04c7766d2ef448c48a102a75f22/awkward1-0.2.21-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "467f7625a9e05b5242802f97e481df1e", "sha256": "ae59276b4af489a5bb8076323caac41a1319d0a01ccbe3e116e0c583056fd75a" }, "downloads": -1, "filename": "awkward1-0.2.21-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "467f7625a9e05b5242802f97e481df1e", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7911350, "upload_time": "2020-05-29T00:12:36", "upload_time_iso_8601": "2020-05-29T00:12:36.122258Z", "url": "https://files.pythonhosted.org/packages/ad/b4/e1ae9616f8aeda0cfc6ec1e0a16544bb274537e7103b536d9971bb432239/awkward1-0.2.21-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ffb8646c3144dacd8fecd0c850e3ff0b", "sha256": "7c9169bfddfd06c36a37e4e0269eb0b5a0d3700072c3df24daede783f3fa57ea" }, "downloads": -1, "filename": "awkward1-0.2.21-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "ffb8646c3144dacd8fecd0c850e3ff0b", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 10302600, "upload_time": "2020-05-29T00:13:24", "upload_time_iso_8601": "2020-05-29T00:13:24.567564Z", "url": "https://files.pythonhosted.org/packages/08/4f/767765545e177cf5d65cdf7c59bd3e1c5a168ef134134fcc574907432020/awkward1-0.2.21-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6c1c6d2eacced096beb901a26e628721", "sha256": "e72f9633c3a2e3d33b5622568efdc8edc09913fd2d04510b93fdce22e5fc388e" }, "downloads": -1, "filename": "awkward1-0.2.21.tar.gz", "has_sig": false, "md5_digest": "6c1c6d2eacced096beb901a26e628721", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 581121, "upload_time": "2020-05-29T00:12:38", "upload_time_iso_8601": "2020-05-29T00:12:38.991240Z", "url": "https://files.pythonhosted.org/packages/c7/47/2e44d05a581bce85285a89006b2a5fe95284b83193c909f74184a76e6ece/awkward1-0.2.21.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.22": [ { "comment_text": "", "digests": { "md5": "c06b689c7f046464270d28a3bf1559ed", "sha256": "142b70c3836c2851f4864c2fc1c202fcdc17943ee6b1cc1f00ec28815201ff83" }, "downloads": -1, "filename": "awkward1-0.2.22-cp27-cp27m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "c06b689c7f046464270d28a3bf1559ed", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7033010, "upload_time": "2020-05-29T00:38:57", "upload_time_iso_8601": "2020-05-29T00:38:57.371130Z", "url": "https://files.pythonhosted.org/packages/45/bb/fcc7eb48ed0bc8b3ddf68dead94db28a909d8d6f4e02d7d69bb03584c476/awkward1-0.2.22-cp27-cp27m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e8082bc70f679c066c2683b55989a763", "sha256": "e22f245bf54819bacaa65bd4b120cdd466183601e871693d9d7a8e197da77017" }, "downloads": -1, "filename": "awkward1-0.2.22-cp27-cp27m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "e8082bc70f679c066c2683b55989a763", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7056910, "upload_time": "2020-05-29T00:53:26", "upload_time_iso_8601": "2020-05-29T00:53:26.835638Z", "url": "https://files.pythonhosted.org/packages/38/64/ea289161f78cc9428a979cc43ced7906eb6199b65824b152ddaf972dd5aa/awkward1-0.2.22-cp27-cp27m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e1fe2ac97db285ba8f62e62b8d1107ca", "sha256": "1a68eababb9868e7e434f8a11cf7a4a4d57e3fe0fb9264058bf250d57bb7178c" }, "downloads": -1, "filename": "awkward1-0.2.22-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "e1fe2ac97db285ba8f62e62b8d1107ca", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6979527, "upload_time": "2020-05-29T00:51:16", "upload_time_iso_8601": "2020-05-29T00:51:16.487710Z", "url": "https://files.pythonhosted.org/packages/fc/31/5edb22e96e0287e274003cd5d24dbb4791178b99446e16512d9b12121b6c/awkward1-0.2.22-cp27-cp27m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "61e463898ba8660053ee6304b54d92d5", "sha256": "c032111d586dc08d1f15a3f82f2b43d436097f1fa4fe14459c104b837d7a38d1" }, "downloads": -1, "filename": "awkward1-0.2.22-cp27-cp27m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "61e463898ba8660053ee6304b54d92d5", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7156897, "upload_time": "2020-05-29T00:54:44", "upload_time_iso_8601": "2020-05-29T00:54:44.510500Z", "url": "https://files.pythonhosted.org/packages/6c/e7/c09025ce126100f8b52c57ec5b2e577b4a88c2f79d515152eb3af7aa351a/awkward1-0.2.22-cp27-cp27m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ac4644699b677ebd9646aab53178bb83", "sha256": "71741b95257778a2982603c6c27399f896edbf92ec9fe5cd8d9249251c8598b9" }, "downloads": -1, "filename": "awkward1-0.2.22-cp27-cp27mu-manylinux1_i686.whl", "has_sig": false, "md5_digest": "ac4644699b677ebd9646aab53178bb83", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7056929, "upload_time": "2020-05-29T00:53:28", "upload_time_iso_8601": "2020-05-29T00:53:28.789084Z", "url": "https://files.pythonhosted.org/packages/a4/3c/d2225300d098991d99273a2ddf5db3f844d4ae95a84d1caf5ad88d67143a/awkward1-0.2.22-cp27-cp27mu-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ade6f3e4cc24b49158dc2b1adbfab174", "sha256": "4d411cb8c0e1114933b83342eccf57fcf9d0caf9fc74558302f83a9cd4eaf64f" }, "downloads": -1, "filename": "awkward1-0.2.22-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "ade6f3e4cc24b49158dc2b1adbfab174", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6979517, "upload_time": "2020-05-29T00:51:18", "upload_time_iso_8601": "2020-05-29T00:51:18.649166Z", "url": "https://files.pythonhosted.org/packages/d8/d2/f64e865bc9f5c572fd2251d713342eb315fc53b524416df0e20f45639549/awkward1-0.2.22-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a6b814f8cd59e3cbb7575c0bf236d160", "sha256": "852def389a3678c710c076fe839f8763ef559c6582e6f95f084f9d5545ec1b90" }, "downloads": -1, "filename": "awkward1-0.2.22-cp27-cp27mu-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "a6b814f8cd59e3cbb7575c0bf236d160", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7156888, "upload_time": "2020-05-29T00:54:46", "upload_time_iso_8601": "2020-05-29T00:54:46.644141Z", "url": "https://files.pythonhosted.org/packages/97/43/034608775dffcca73adc04ceecc962394af143527bc1daa96f2acbcfd23f/awkward1-0.2.22-cp27-cp27mu-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9b0e079bba773d965cd8fccd707e97ea", "sha256": "0544ffc96cb9d662d8328b8959a43c499058fdd3c251ceedf1b9fcb3b894ca1b" }, "downloads": -1, "filename": "awkward1-0.2.22-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "9b0e079bba773d965cd8fccd707e97ea", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7909182, "upload_time": "2020-05-29T00:44:13", "upload_time_iso_8601": "2020-05-29T00:44:13.741790Z", "url": "https://files.pythonhosted.org/packages/54/c7/9579677955ef52eb52589a23ab93e827fff4b5aaf6afeed76cd023c2c685/awkward1-0.2.22-cp27-cp27m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e3daf0d5df06b02ae523c7e178dfd468", "sha256": "bf5b43fd9d637dec60282842adcce020f84a31f39459f836d322f2764ce3b9a8" }, "downloads": -1, "filename": "awkward1-0.2.22-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "e3daf0d5df06b02ae523c7e178dfd468", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 10298778, "upload_time": "2020-05-29T00:44:28", "upload_time_iso_8601": "2020-05-29T00:44:28.599195Z", "url": "https://files.pythonhosted.org/packages/df/ef/c5ff571a48c8da280f096b9845b837fbed50183e3dd2edb1760a4f2d8387/awkward1-0.2.22-cp27-cp27m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2cea46e3e4a422bb4fa83388dc4f4fc6", "sha256": "d9c2cb0a21fec78a0dfbfc5db3792655f48744f562017c7883f824f65d4bfcfe" }, "downloads": -1, "filename": "awkward1-0.2.22-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "2cea46e3e4a422bb4fa83388dc4f4fc6", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7058790, "upload_time": "2020-05-29T00:53:30", "upload_time_iso_8601": "2020-05-29T00:53:30.286785Z", "url": "https://files.pythonhosted.org/packages/30/c9/96ac41ca6c6c49f6b6b6d8cdc8549c01edc8002254b84f9891948ad41c1c/awkward1-0.2.22-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bc004ce0dcd461e82a47e027b66cc1ea", "sha256": "c6eab3b9fe15145364c841ba078d989746c3ced57e05d06c9b86b80ead988c06" }, "downloads": -1, "filename": "awkward1-0.2.22-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "bc004ce0dcd461e82a47e027b66cc1ea", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6986420, "upload_time": "2020-05-29T00:51:20", "upload_time_iso_8601": "2020-05-29T00:51:20.665426Z", "url": "https://files.pythonhosted.org/packages/5e/8d/26088d315ffd90d9c84644f07dfc8affbe8526b59225435cfaeab617f257/awkward1-0.2.22-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1e55ceee75051ad2141b6e161f166d1c", "sha256": "428d9f74a3806ba217aa2943b8c1c421238d40ee59057ce820fb2fa4588d2f21" }, "downloads": -1, "filename": "awkward1-0.2.22-cp35-cp35m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "1e55ceee75051ad2141b6e161f166d1c", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7159804, "upload_time": "2020-05-29T00:54:48", "upload_time_iso_8601": "2020-05-29T00:54:48.654572Z", "url": "https://files.pythonhosted.org/packages/25/4b/8725e95d0466574d475b9d8f7b15361ab63342f8f5d3526f9da3653b59c3/awkward1-0.2.22-cp35-cp35m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f53508d82a33f975f16a44ca709873e3", "sha256": "d32d7e119e9f72f0f8714a6848a85806b4b1a6e75da1b976fe8952ce7f745467" }, "downloads": -1, "filename": "awkward1-0.2.22-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "f53508d82a33f975f16a44ca709873e3", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7905627, "upload_time": "2020-05-29T00:43:55", "upload_time_iso_8601": "2020-05-29T00:43:55.695077Z", "url": "https://files.pythonhosted.org/packages/ae/ce/4c39807cc5c0234ba4810bd5f9b4ea427fc34866d7f3303d5b81a3b6d1b2/awkward1-0.2.22-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "961c4cf2823e6cd1586a3ceb84680f21", "sha256": "f4e2c903d81aeb91d386532fbdb4991b6c2e03dcf96d414433a2625d3f6fff03" }, "downloads": -1, "filename": "awkward1-0.2.22-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "961c4cf2823e6cd1586a3ceb84680f21", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 10296388, "upload_time": "2020-05-29T00:49:12", "upload_time_iso_8601": "2020-05-29T00:49:12.710139Z", "url": "https://files.pythonhosted.org/packages/9e/27/37e8d48da9fc23fa20a2b8367afc9bce0af962730634dabbc831d63dfaa8/awkward1-0.2.22-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "600b87bd4f12334414ab4ce65a5eb45c", "sha256": "25225882fb3385723ea252801df1379ed61b185327b4c3561e0a88f4643e0971" }, "downloads": -1, "filename": "awkward1-0.2.22-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "600b87bd4f12334414ab4ce65a5eb45c", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7033269, "upload_time": "2020-05-29T00:38:55", "upload_time_iso_8601": "2020-05-29T00:38:55.625150Z", "url": "https://files.pythonhosted.org/packages/9b/ba/d54727716fba9a2aa3b2034ff4f94c920065ff73436c2616ce29d541dfa8/awkward1-0.2.22-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0e6679f5b2792ab2af4f2d53846bb668", "sha256": "3162bfe7234b70b01fb22127135b821af0ef3723093a8d6fe64829677917f4f9" }, "downloads": -1, "filename": "awkward1-0.2.22-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "0e6679f5b2792ab2af4f2d53846bb668", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7058802, "upload_time": "2020-05-29T00:53:31", "upload_time_iso_8601": "2020-05-29T00:53:31.749706Z", "url": "https://files.pythonhosted.org/packages/0d/3d/fef232f0b7fb19a981358b3de6bdabe660894ceef5ae378165261788ed41/awkward1-0.2.22-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fbc5a14e5ba178c29a2ae54c0f17b5e1", "sha256": "67379434ed20694a8dfd7ef2a352fd3c9785828f8e57611f8283d822756c98e5" }, "downloads": -1, "filename": "awkward1-0.2.22-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "fbc5a14e5ba178c29a2ae54c0f17b5e1", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6986421, "upload_time": "2020-05-29T00:51:22", "upload_time_iso_8601": "2020-05-29T00:51:22.532889Z", "url": "https://files.pythonhosted.org/packages/d2/bc/36cb573ed93b0144389230c116b2056e22c92ae0348a8c55e734d1d07c50/awkward1-0.2.22-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cd8c7610c51cb988b6dcdcaaecfcddfc", "sha256": "34b19166604d1ae1965b7954c8b07bc88c66893fd83201d56f63a0c43e0e53de" }, "downloads": -1, "filename": "awkward1-0.2.22-cp36-cp36m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "cd8c7610c51cb988b6dcdcaaecfcddfc", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7159848, "upload_time": "2020-05-29T00:54:50", "upload_time_iso_8601": "2020-05-29T00:54:50.346780Z", "url": "https://files.pythonhosted.org/packages/39/67/09a2a90e092c1b9c4798f5383d23bba2a6e3e84dc3de50032549d71ff679/awkward1-0.2.22-cp36-cp36m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9c4b294bb4779f9e9a26332c04086409", "sha256": "1b77cb2cfb61844794bab972c990601df84bafbae44ffa6bce0a8df17ac11809" }, "downloads": -1, "filename": "awkward1-0.2.22-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "9c4b294bb4779f9e9a26332c04086409", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7905570, "upload_time": "2020-05-29T00:48:47", "upload_time_iso_8601": "2020-05-29T00:48:47.142343Z", "url": "https://files.pythonhosted.org/packages/1a/64/62f0d5ba040ebbeac743306dcc313364aeb46a2a555819c1ce1cc1df463c/awkward1-0.2.22-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "859663925bfbea4569f825b4d8e17638", "sha256": "d34a46c119ddb3df94f9e4e4836aa3d380bcb80f78b136e9bfe174a96492c576" }, "downloads": -1, "filename": "awkward1-0.2.22-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "859663925bfbea4569f825b4d8e17638", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 10296427, "upload_time": "2020-05-29T00:49:21", "upload_time_iso_8601": "2020-05-29T00:49:21.503401Z", "url": "https://files.pythonhosted.org/packages/5e/f7/3603c691b34c262bd6c9188426027fe81bdf73c8e78a1f6ec28746e5df68/awkward1-0.2.22-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9f46f52b1c6eb4d4339cd90a1d9a60a3", "sha256": "2a118d1fe6ca46c872a7f05b7566e9635d79c2c2ff89c39b084ff6335561e88a" }, "downloads": -1, "filename": "awkward1-0.2.22-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "9f46f52b1c6eb4d4339cd90a1d9a60a3", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7033297, "upload_time": "2020-05-29T00:38:41", "upload_time_iso_8601": "2020-05-29T00:38:41.414310Z", "url": "https://files.pythonhosted.org/packages/f0/c1/22a94574df8947b1df121655152859dfb7cd8dddabeb3c95030879d05796/awkward1-0.2.22-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c12da48f62abb119c05b48b4947d4fdb", "sha256": "f48c8548b8d09a90a6c8499e2b9669208e6d2bd90770c3a1962054c7819faf1c" }, "downloads": -1, "filename": "awkward1-0.2.22-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "c12da48f62abb119c05b48b4947d4fdb", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7057453, "upload_time": "2020-05-29T00:53:33", "upload_time_iso_8601": "2020-05-29T00:53:33.699645Z", "url": "https://files.pythonhosted.org/packages/9f/66/735de8519d1fe91af1bf6bb29d6cc1bfc14e68aeecd472512b36e7e34d0e/awkward1-0.2.22-cp37-cp37m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e0d83827fba9c6f6e3d83f12ecc3fb4c", "sha256": "6cc1695ed5e531d35c473972a47078b0d4e0cbacf3c6f854f2f6d8ba38a515a1" }, "downloads": -1, "filename": "awkward1-0.2.22-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "e0d83827fba9c6f6e3d83f12ecc3fb4c", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6985421, "upload_time": "2020-05-29T00:51:24", "upload_time_iso_8601": "2020-05-29T00:51:24.443170Z", "url": "https://files.pythonhosted.org/packages/5b/52/4d0096c625a3b042fc2036454b9cba83f03ce380d7bf883bf3b766e58d34/awkward1-0.2.22-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c0ad73367a10be2e8752875e3abba5e0", "sha256": "b7c7605e2e2a36ef56af6a3766844bb5fb1bc1cddf2fae6d3a9c726c6ff3db48" }, "downloads": -1, "filename": "awkward1-0.2.22-cp37-cp37m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "c0ad73367a10be2e8752875e3abba5e0", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7154288, "upload_time": "2020-05-29T00:54:51", "upload_time_iso_8601": "2020-05-29T00:54:51.952574Z", "url": "https://files.pythonhosted.org/packages/46/d1/300fae55c56fc2b80a22e92d05bedfa5b2182893ea376c837186c93923cf/awkward1-0.2.22-cp37-cp37m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fbd38c44bcca99bc4339430d6b4a5ea8", "sha256": "5c7d5b05ff78615ad9503e70cbba44d6ec87014017166d4a1585b27a871c3ffb" }, "downloads": -1, "filename": "awkward1-0.2.22-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "fbd38c44bcca99bc4339430d6b4a5ea8", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7905111, "upload_time": "2020-05-29T00:49:12", "upload_time_iso_8601": "2020-05-29T00:49:12.492972Z", "url": "https://files.pythonhosted.org/packages/74/a0/7953f058eac537a47e8560a2b0f3250e88944a5aafd09c44961d17f7e29a/awkward1-0.2.22-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "568556600aecc70420d8c603eaadc8c5", "sha256": "264eeed5c6c6fa274174a22cc4db87fae5cf18c8c8074d53b0faf479658efe65" }, "downloads": -1, "filename": "awkward1-0.2.22-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "568556600aecc70420d8c603eaadc8c5", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 10297036, "upload_time": "2020-05-29T00:54:17", "upload_time_iso_8601": "2020-05-29T00:54:17.699138Z", "url": "https://files.pythonhosted.org/packages/0d/61/681c9a17cd1366cfcd0119759d144d58886b541906b0b50e30c0a947bf40/awkward1-0.2.22-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "48e52ee3268d939b5bebafe083a005f0", "sha256": "53543c8ecd3a6c7ee5ebecad9c36e9948c8b454451845936c0136d62f49fac57" }, "downloads": -1, "filename": "awkward1-0.2.22-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "48e52ee3268d939b5bebafe083a005f0", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7113068, "upload_time": "2020-05-29T00:38:54", "upload_time_iso_8601": "2020-05-29T00:38:54.684315Z", "url": "https://files.pythonhosted.org/packages/64/1a/a294dad93c438a4ceab677ad199e6547ddc626e80a3f378b0bfd1b21aa2c/awkward1-0.2.22-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "833f2863d56f3957a0e70dfea4629760", "sha256": "fa6ee1c3fb4c8dbe2b07f1c6b9d75829bfd5c9491583e13f84553b27bab3574f" }, "downloads": -1, "filename": "awkward1-0.2.22-cp38-cp38-manylinux1_i686.whl", "has_sig": false, "md5_digest": "833f2863d56f3957a0e70dfea4629760", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7020482, "upload_time": "2020-05-29T00:53:35", "upload_time_iso_8601": "2020-05-29T00:53:35.573733Z", "url": "https://files.pythonhosted.org/packages/00/c9/02d0754071e705d7190b5ce32e8cc8fe803cbb36b96e4a06bb380e163b7b/awkward1-0.2.22-cp38-cp38-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e368d4726b2704cbe61bbafa56595301", "sha256": "9af1d021fee2aca54808337327844b177030f15ce83aaac355b128841af32bd9" }, "downloads": -1, "filename": "awkward1-0.2.22-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "e368d4726b2704cbe61bbafa56595301", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6927310, "upload_time": "2020-05-29T00:51:26", "upload_time_iso_8601": "2020-05-29T00:51:26.249894Z", "url": "https://files.pythonhosted.org/packages/08/bb/fbba533a2d2ac9c96c83c5fc2a9d97658beb3c4f163fb0a8937d353ae9d7/awkward1-0.2.22-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "871c46a43f40bbc445d2150a88d33db5", "sha256": "3fb70e9b766bb2da1c85177947564332acd904cd226585b20f238d70e464c00f" }, "downloads": -1, "filename": "awkward1-0.2.22-cp38-cp38-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "871c46a43f40bbc445d2150a88d33db5", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7142423, "upload_time": "2020-05-29T00:54:53", "upload_time_iso_8601": "2020-05-29T00:54:53.711321Z", "url": "https://files.pythonhosted.org/packages/c0/7d/056f706247611f09b23ab3b1fa96323f0679e9dffac82d48b490eec5230f/awkward1-0.2.22-cp38-cp38-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c52dcc0ab00354afbd84170a5bc56f46", "sha256": "dc2a754f7b0cb3aae9c195b683ae8cbf4f79a2a6c703e55e2bdd2d612c339b53" }, "downloads": -1, "filename": "awkward1-0.2.22-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "c52dcc0ab00354afbd84170a5bc56f46", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7911419, "upload_time": "2020-05-29T00:53:38", "upload_time_iso_8601": "2020-05-29T00:53:38.390619Z", "url": "https://files.pythonhosted.org/packages/57/fc/bc0f4d5942069b527809e2783cb520e41a35162e19f5e596cc9bf565307d/awkward1-0.2.22-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "82e7bcbae2e855d4eebd63e49a15da98", "sha256": "4a547edd02398ccb1a29cf59306e71fd6c1b0fd26855e9297448345a650a92ab" }, "downloads": -1, "filename": "awkward1-0.2.22-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "82e7bcbae2e855d4eebd63e49a15da98", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 10302640, "upload_time": "2020-05-29T00:54:58", "upload_time_iso_8601": "2020-05-29T00:54:58.104705Z", "url": "https://files.pythonhosted.org/packages/09/6d/68b633461dfd73ddef00ec1b7cff75361ad23923fe8a7395a17c32248b4e/awkward1-0.2.22-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ffe0411929c04a8a77786830ed5c46a1", "sha256": "c64a8ad0204743d49cf2f8775f92d9c23dd9d7eb6996a61f4a9de57a53d429f9" }, "downloads": -1, "filename": "awkward1-0.2.22.tar.gz", "has_sig": false, "md5_digest": "ffe0411929c04a8a77786830ed5c46a1", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 581188, "upload_time": "2020-05-29T00:54:55", "upload_time_iso_8601": "2020-05-29T00:54:55.122020Z", "url": "https://files.pythonhosted.org/packages/16/dc/7ffe9524a85461e070b97362e0347f36a7b4c950b20b4d9676120de8f39a/awkward1-0.2.22.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.23": [ { "comment_text": "", "digests": { "md5": "ee6cb496c0bca11c9780a3214f29d712", "sha256": "10e467d630c61e2461e6291e05a2e8cdcaebc054e62ed30761fc2699f5931e3e" }, "downloads": -1, "filename": "awkward1-0.2.23-cp27-cp27m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "ee6cb496c0bca11c9780a3214f29d712", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7032092, "upload_time": "2020-06-06T02:34:25", "upload_time_iso_8601": "2020-06-06T02:34:25.402998Z", "url": "https://files.pythonhosted.org/packages/65/8e/a06b00180d540c15e69e61bb5e7874a338d076ff0745e1fc40d3972befc2/awkward1-0.2.23-cp27-cp27m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c96a56e77177df9e1424fbd114598f5b", "sha256": "228b87968c904afeaf7d3f002c5701300efff17201a35ed7e1435fa009484959" }, "downloads": -1, "filename": "awkward1-0.2.23-cp27-cp27m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "c96a56e77177df9e1424fbd114598f5b", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7054434, "upload_time": "2020-06-06T02:46:31", "upload_time_iso_8601": "2020-06-06T02:46:31.923430Z", "url": "https://files.pythonhosted.org/packages/8f/5e/da813209764779e989d7a8704a6d1d1cd9d9b55516ec20d1b7428adf0baa/awkward1-0.2.23-cp27-cp27m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "eb547ba1746251775fe44654ecf1a864", "sha256": "45d4b8950a9b26e1ac2857a8be81865465ba12613846ea612a909ca9bcadcb30" }, "downloads": -1, "filename": "awkward1-0.2.23-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "eb547ba1746251775fe44654ecf1a864", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6975665, "upload_time": "2020-06-06T02:44:52", "upload_time_iso_8601": "2020-06-06T02:44:52.413651Z", "url": "https://files.pythonhosted.org/packages/d1/06/b730457dbf87305254f631ba22a82e27023a3ec7eb3a4dd8a0a12bcd3549/awkward1-0.2.23-cp27-cp27m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fc41e412eeebe930359700125d4139e7", "sha256": "5fd14de075e7d65c45d83ad0647566ccc6aa7c5feb267c58b378eb052b710182" }, "downloads": -1, "filename": "awkward1-0.2.23-cp27-cp27m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "fc41e412eeebe930359700125d4139e7", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7151730, "upload_time": "2020-06-06T02:50:33", "upload_time_iso_8601": "2020-06-06T02:50:33.005236Z", "url": "https://files.pythonhosted.org/packages/07/42/03a393917f39f6097b6ca9790112cb8adf26db364069efa8c2fd5035f4b5/awkward1-0.2.23-cp27-cp27m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "248a75929ec3dba892e31512e44f4c96", "sha256": "905ab07560cccf34c908e82df9b86c2c211d9b4405905d52f9458a197b0cb8ca" }, "downloads": -1, "filename": "awkward1-0.2.23-cp27-cp27mu-manylinux1_i686.whl", "has_sig": false, "md5_digest": "248a75929ec3dba892e31512e44f4c96", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7054509, "upload_time": "2020-06-06T02:46:33", "upload_time_iso_8601": "2020-06-06T02:46:33.703557Z", "url": "https://files.pythonhosted.org/packages/e5/a8/e8eee7cc09206ed9bada6f2f99880ea3c2aec033d7bff32acdd8be8c46d1/awkward1-0.2.23-cp27-cp27mu-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3f758ed71a70f2828e514a44624fe669", "sha256": "3e81305f20909f4bae9c2dc8025e84cdb014a95c122c597fa392c97621e13262" }, "downloads": -1, "filename": "awkward1-0.2.23-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "3f758ed71a70f2828e514a44624fe669", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6975638, "upload_time": "2020-06-06T02:44:54", "upload_time_iso_8601": "2020-06-06T02:44:54.239321Z", "url": "https://files.pythonhosted.org/packages/86/36/82ddcba128ce20e971a48ba4f50e5d73039c625eef477624e51920cf71de/awkward1-0.2.23-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ef9ccb4294451bc6bd3068e4b1ba394e", "sha256": "1af196e31ce5fcc281cf7738f00437a6ecefe0c9831fc550e7973cff67490c09" }, "downloads": -1, "filename": "awkward1-0.2.23-cp27-cp27mu-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "ef9ccb4294451bc6bd3068e4b1ba394e", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7151717, "upload_time": "2020-06-06T02:50:34", "upload_time_iso_8601": "2020-06-06T02:50:34.771731Z", "url": "https://files.pythonhosted.org/packages/07/63/66827a4716d1bb86eeb43cd403ae495d98ae90dbd9d334b49069a59070b7/awkward1-0.2.23-cp27-cp27mu-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ae2ba6913a2bf64b3476360fbf798df1", "sha256": "74cd8794a9ede33de5280de9ff819f3782f621c1857566f46461f056833db76a" }, "downloads": -1, "filename": "awkward1-0.2.23-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "ae2ba6913a2bf64b3476360fbf798df1", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7903728, "upload_time": "2020-06-06T02:40:11", "upload_time_iso_8601": "2020-06-06T02:40:11.701765Z", "url": "https://files.pythonhosted.org/packages/cb/89/7666890e166217c68d0f9443f90db9bc9565e6e08febddc27d426b4ed278/awkward1-0.2.23-cp27-cp27m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "71c896ed17499d3833e57530f227d0aa", "sha256": "df1688d92bfa3dbe8eca5cd4428b99bd1ad7ee74e8b6251baf252437eba00962" }, "downloads": -1, "filename": "awkward1-0.2.23-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "71c896ed17499d3833e57530f227d0aa", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 10291086, "upload_time": "2020-06-06T02:40:39", "upload_time_iso_8601": "2020-06-06T02:40:39.745278Z", "url": "https://files.pythonhosted.org/packages/7b/1f/16f500632febc5006f67cc9c506f5e1f040f146e1f8b8e02f63a2aeb033d/awkward1-0.2.23-cp27-cp27m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4b7cec5f04e24dcd0c22374622f8408b", "sha256": "b19915a8225105cdf7ad79aa83f4e0096fd0fbfcbbc3750a8ee6c1a4e0a056f0" }, "downloads": -1, "filename": "awkward1-0.2.23-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "4b7cec5f04e24dcd0c22374622f8408b", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7056228, "upload_time": "2020-06-06T02:46:35", "upload_time_iso_8601": "2020-06-06T02:46:35.630779Z", "url": "https://files.pythonhosted.org/packages/b5/65/1afe4525ebd7ca6ad51d16badabd4e45de422e68b3315de684e5ab7f369e/awkward1-0.2.23-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8baca96d40b12d3787523e305d66c3e6", "sha256": "7880ab81f402e943bd37b9d97c18b92281bd23d118c3569547d243ed01912d23" }, "downloads": -1, "filename": "awkward1-0.2.23-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "8baca96d40b12d3787523e305d66c3e6", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6982650, "upload_time": "2020-06-06T02:44:56", "upload_time_iso_8601": "2020-06-06T02:44:56.936765Z", "url": "https://files.pythonhosted.org/packages/4e/64/07f55544bd9fba29a261c3b341a49341c7607f88792ae774f3afc4549a1c/awkward1-0.2.23-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fa858a18cd85bb4c80344003fcd3f2b6", "sha256": "0fb611536ec184b96810861a0b7a94c5af59e474d7969064d1c3b96630f4aeae" }, "downloads": -1, "filename": "awkward1-0.2.23-cp35-cp35m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "fa858a18cd85bb4c80344003fcd3f2b6", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7154694, "upload_time": "2020-06-06T02:50:37", "upload_time_iso_8601": "2020-06-06T02:50:37.774462Z", "url": "https://files.pythonhosted.org/packages/e3/5b/8bb0c7f40eb8d5f3609ffe7de7927e52486bba250997940d9710eb980163/awkward1-0.2.23-cp35-cp35m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3583e16d164a2d4fdad3717f2a886ed1", "sha256": "0edd2fe1fbbe7a6680568eabef186a77a69cb84fe3c2a5113266b29a66e6ca80" }, "downloads": -1, "filename": "awkward1-0.2.23-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "3583e16d164a2d4fdad3717f2a886ed1", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7900582, "upload_time": "2020-06-06T02:44:38", "upload_time_iso_8601": "2020-06-06T02:44:38.583953Z", "url": "https://files.pythonhosted.org/packages/cd/c6/6b6bdf6ce6e5bfe0758fd170027812a69b0175f5b3d36629c8cced3ffced/awkward1-0.2.23-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "013820c2badf25b8f7936fc4dccbd790", "sha256": "2dac62a2172d3efb23de3cc228d9cbcc4ce7b48bfcfac7192295df926d77cfae" }, "downloads": -1, "filename": "awkward1-0.2.23-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "013820c2badf25b8f7936fc4dccbd790", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 10289132, "upload_time": "2020-06-06T02:39:09", "upload_time_iso_8601": "2020-06-06T02:39:09.135548Z", "url": "https://files.pythonhosted.org/packages/d1/34/7ba970d149d95d6a1808724fd6dfd34bed52c5e49420a60d1072b3293cb3/awkward1-0.2.23-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7126bf227aba0f555fc673bfc3045405", "sha256": "57b88771ae487fc41abaf28d9415268b5a8eabfa773e81dae1107f33c0510b68" }, "downloads": -1, "filename": "awkward1-0.2.23-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "7126bf227aba0f555fc673bfc3045405", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7032071, "upload_time": "2020-06-06T02:34:33", "upload_time_iso_8601": "2020-06-06T02:34:33.297636Z", "url": "https://files.pythonhosted.org/packages/9b/9b/fda437d3fc990a3358ab1e499b49da48d9a741a568ffa69c11c825349783/awkward1-0.2.23-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d1340e5073d66fb5434a104e25db6b23", "sha256": "7aa0d33606f3a76648c90911022c9b63f6ca7c2f15aa5e6b552df42970a6f271" }, "downloads": -1, "filename": "awkward1-0.2.23-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "d1340e5073d66fb5434a104e25db6b23", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7056261, "upload_time": "2020-06-06T02:46:37", "upload_time_iso_8601": "2020-06-06T02:46:37.440010Z", "url": "https://files.pythonhosted.org/packages/78/d4/b0ef5ad03946e7782281e8221177d49b6c74539f28154d65d41c675f57fe/awkward1-0.2.23-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "63ef5c4df2e6930f62ba9052cf97636e", "sha256": "a4bd168488fff730e1356cc44503dc1f3c27efab4a40f385e4527d901e431eb0" }, "downloads": -1, "filename": "awkward1-0.2.23-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "63ef5c4df2e6930f62ba9052cf97636e", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6982611, "upload_time": "2020-06-06T02:44:58", "upload_time_iso_8601": "2020-06-06T02:44:58.759538Z", "url": "https://files.pythonhosted.org/packages/2d/8c/84db3baae6083f4a6fe21d1dbb37ece53e25bc17354d685182c1e143a4a2/awkward1-0.2.23-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a6cfac12a8a6e73b356df1e258f15f9a", "sha256": "03a442c58c1651659d3c54b5b4f2d8b4ff8e35f0a14f034fca2f106722e1c6ef" }, "downloads": -1, "filename": "awkward1-0.2.23-cp36-cp36m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "a6cfac12a8a6e73b356df1e258f15f9a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7154736, "upload_time": "2020-06-06T02:50:39", "upload_time_iso_8601": "2020-06-06T02:50:39.855910Z", "url": "https://files.pythonhosted.org/packages/63/93/140ccb50935c5679e9f4c2a8d91e4b155e721b710da2d8571a249aa57379/awkward1-0.2.23-cp36-cp36m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9d5601237bfa6df0f3c77c6c89299f91", "sha256": "627f51bc838e18c2bb2511076988ac4e33d37cfacb091a26208381297d90ba15" }, "downloads": -1, "filename": "awkward1-0.2.23-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "9d5601237bfa6df0f3c77c6c89299f91", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7900666, "upload_time": "2020-06-06T02:44:20", "upload_time_iso_8601": "2020-06-06T02:44:20.470776Z", "url": "https://files.pythonhosted.org/packages/f9/3d/c3245636a0ff48e19cda7700a98bed14ffaa47a65d4e727c6ff9d16b0b37/awkward1-0.2.23-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "45efd8b0c664b13f5408421714b2a377", "sha256": "4b797ea9f73dbeafd468549e2d299b594cabaf3bc777380ba67c57d629653ef2" }, "downloads": -1, "filename": "awkward1-0.2.23-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "45efd8b0c664b13f5408421714b2a377", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 10289106, "upload_time": "2020-06-06T02:43:59", "upload_time_iso_8601": "2020-06-06T02:43:59.091531Z", "url": "https://files.pythonhosted.org/packages/c6/eb/3ca5969a51cc81941833d92ac0c4e635d78c144b6ac2e0247d98cf6cabc1/awkward1-0.2.23-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dad43756a7c1856e3a9addad8e28eebd", "sha256": "85f1d02b3c0339320ef3f203733cd73fcc17729e0d06b315bdfac223b31ffaa1" }, "downloads": -1, "filename": "awkward1-0.2.23-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "dad43756a7c1856e3a9addad8e28eebd", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7032152, "upload_time": "2020-06-06T02:34:26", "upload_time_iso_8601": "2020-06-06T02:34:26.952787Z", "url": "https://files.pythonhosted.org/packages/33/ea/8253fdde6b6727b992c76122b599b8fa0eb8b0fa50b28c22a01d1561a80d/awkward1-0.2.23-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "236eedd33fd30967688eeddd29ea12ee", "sha256": "97f990fb2446d7970fc73bb697038ad5334368b62f435d5d683f6f523fe4b5e0" }, "downloads": -1, "filename": "awkward1-0.2.23-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "236eedd33fd30967688eeddd29ea12ee", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7055075, "upload_time": "2020-06-06T02:46:39", "upload_time_iso_8601": "2020-06-06T02:46:39.270003Z", "url": "https://files.pythonhosted.org/packages/37/b4/348102910ccde1351eb7bed23dcf3434ab35efe6c7d97b69e53e0c24cd93/awkward1-0.2.23-cp37-cp37m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4bd0a1bd90c5529e4ba73a2911c266a9", "sha256": "a74a63ffd7161ffec0bd9c719b8825914d3e6e772fdb5ac5372f248ca97aeadf" }, "downloads": -1, "filename": "awkward1-0.2.23-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "4bd0a1bd90c5529e4ba73a2911c266a9", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6981146, "upload_time": "2020-06-06T02:45:00", "upload_time_iso_8601": "2020-06-06T02:45:00.315796Z", "url": "https://files.pythonhosted.org/packages/71/38/e25a92914efaef8517d1994dc6b9f31b60d1359a45dec34278b9341b7986/awkward1-0.2.23-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "245fa41cfb208db8957b0e5a02edfd25", "sha256": "559480ce41077b1ca1ee7aef6edd759a34c225c1a2e7d3bb2b17c6c2cc66d244" }, "downloads": -1, "filename": "awkward1-0.2.23-cp37-cp37m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "245fa41cfb208db8957b0e5a02edfd25", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7148894, "upload_time": "2020-06-06T02:50:41", "upload_time_iso_8601": "2020-06-06T02:50:41.474381Z", "url": "https://files.pythonhosted.org/packages/4e/20/2c56d6219f812194a482510307a8e14cb75cfb2dd79ce32ff4eec4378887/awkward1-0.2.23-cp37-cp37m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f4609a43a26513e48345187f8bad72b1", "sha256": "57ecc52758c9c872ede04cde734079a6878224966847131788f0ad3d5f34c768" }, "downloads": -1, "filename": "awkward1-0.2.23-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "f4609a43a26513e48345187f8bad72b1", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7900855, "upload_time": "2020-06-06T02:49:24", "upload_time_iso_8601": "2020-06-06T02:49:24.804418Z", "url": "https://files.pythonhosted.org/packages/f9/17/72d1dfa2e66af73481562fc437954db8dc99e60e91d8854db13ead0f1109/awkward1-0.2.23-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "096e4708261c805f1ff86a36b0edf716", "sha256": "30d48ac34e98320e043038430dc8aedc2167d57eb8c20f122c1ec0f8c8d08084" }, "downloads": -1, "filename": "awkward1-0.2.23-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "096e4708261c805f1ff86a36b0edf716", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 10288915, "upload_time": "2020-06-06T02:45:55", "upload_time_iso_8601": "2020-06-06T02:45:55.858811Z", "url": "https://files.pythonhosted.org/packages/d8/9f/8ec5c113e5cfcc2476100f470001bb811560af45c4ce9afa105610c1a47a/awkward1-0.2.23-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "214de0664b699093f4f7cca7301fb87c", "sha256": "18b0e58f3f649ef3022d8481a981a5233384b89a47892b37a0d7c2b6b64d0542" }, "downloads": -1, "filename": "awkward1-0.2.23-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "214de0664b699093f4f7cca7301fb87c", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7111962, "upload_time": "2020-06-06T02:34:11", "upload_time_iso_8601": "2020-06-06T02:34:11.728357Z", "url": "https://files.pythonhosted.org/packages/0e/0d/deb31c19e8b3721e19ca8a8af6b919a1df33e22680c2f1ba0a3b37fbd797/awkward1-0.2.23-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "16761455efbbf1efdcc45c6305b06df4", "sha256": "2f38c696a1bbac2e5901a70fb25431645f827753719a5858e5090a103675b250" }, "downloads": -1, "filename": "awkward1-0.2.23-cp38-cp38-manylinux1_i686.whl", "has_sig": false, "md5_digest": "16761455efbbf1efdcc45c6305b06df4", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7017782, "upload_time": "2020-06-06T02:46:41", "upload_time_iso_8601": "2020-06-06T02:46:41.090003Z", "url": "https://files.pythonhosted.org/packages/fe/1a/26d6d389ba1f7bd876768637a750d0b0ce7fd07eee32ae5ecb5555d55865/awkward1-0.2.23-cp38-cp38-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "086479c0e094dbea13fb8f1b00f3031c", "sha256": "3ab2eda0bcffdf730b328c50c6c3dd468a83f2ea2a020f5d57f3897531c53514" }, "downloads": -1, "filename": "awkward1-0.2.23-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "086479c0e094dbea13fb8f1b00f3031c", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6923329, "upload_time": "2020-06-06T02:45:01", "upload_time_iso_8601": "2020-06-06T02:45:01.881156Z", "url": "https://files.pythonhosted.org/packages/7e/2a/96cfd0466b8677bde4be8b3d366f96218a013431ad1dd08049282a8692dd/awkward1-0.2.23-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "00ae1f167d2cb5178577c6bded79a699", "sha256": "625868d6c067a3842b72e6c6a6a44906f467adfd63f26b20d3d75c1b3890107a" }, "downloads": -1, "filename": "awkward1-0.2.23-cp38-cp38-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "00ae1f167d2cb5178577c6bded79a699", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7137192, "upload_time": "2020-06-06T02:50:43", "upload_time_iso_8601": "2020-06-06T02:50:43.173186Z", "url": "https://files.pythonhosted.org/packages/ab/1a/696d60860eb9f9977a384243ffc80f534d9baea9ead5a7b207c6a29a8800/awkward1-0.2.23-cp38-cp38-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3f23a81f285c1f3042aa401dbe8f427f", "sha256": "54316e344fc8c1539721a8d36f06d407153ef296fff79272286d00acff32f108" }, "downloads": -1, "filename": "awkward1-0.2.23-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "3f23a81f285c1f3042aa401dbe8f427f", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7906218, "upload_time": "2020-06-06T02:49:49", "upload_time_iso_8601": "2020-06-06T02:49:49.038268Z", "url": "https://files.pythonhosted.org/packages/ed/0f/05aaa9906393b2bcde31bebac243981c3a45ebeea90c89914ee0d5ffbe90/awkward1-0.2.23-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7180a81052541577f8c4b77dde9dcffe", "sha256": "eeb171c5bf0883a0fd0df0f63d3f5b3f8cbf6dd3a6d8b39802f9021b70a4f854" }, "downloads": -1, "filename": "awkward1-0.2.23-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "7180a81052541577f8c4b77dde9dcffe", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 10295513, "upload_time": "2020-06-06T02:50:33", "upload_time_iso_8601": "2020-06-06T02:50:33.078809Z", "url": "https://files.pythonhosted.org/packages/b1/71/bfa65850ad719fd69cf71a1983b5ac9f7d498e2703019642005712e6873e/awkward1-0.2.23-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "54882a3d47ac28249d9285b996725bf1", "sha256": "d7458b499959af66e0a640e29e6b676a39cc9614cd504e5a2e8f8d0c7f546597" }, "downloads": -1, "filename": "awkward1-0.2.23.tar.gz", "has_sig": false, "md5_digest": "54882a3d47ac28249d9285b996725bf1", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 582069, "upload_time": "2020-06-06T02:50:44", "upload_time_iso_8601": "2020-06-06T02:50:44.489344Z", "url": "https://files.pythonhosted.org/packages/21/3d/a71ddfc7fd8df48fadecf37925acf60f3cbe36c0c45dae70f8adb9d3d631/awkward1-0.2.23.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.24": [ { "comment_text": "", "digests": { "md5": "e42a3f7e486c7da5073352f41463d629", "sha256": "f4e5bf407e6c592658ca9f2e12ad96562cd8c171ec08416f85b6a55c1409a1de" }, "downloads": -1, "filename": "awkward1-0.2.24-cp27-cp27m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "e42a3f7e486c7da5073352f41463d629", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7038853, "upload_time": "2020-06-12T13:11:28", "upload_time_iso_8601": "2020-06-12T13:11:28.241275Z", "url": "https://files.pythonhosted.org/packages/1f/71/3c86169ad0537648842154b8f8470911fb330367e134aa170b031dc53cf7/awkward1-0.2.24-cp27-cp27m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d09e8566b767fc044ae498756444f8a9", "sha256": "59022cba460bdb9d045b21975f58ce846e9c0fe17817e8883643e02fc1dbd300" }, "downloads": -1, "filename": "awkward1-0.2.24-cp27-cp27m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "d09e8566b767fc044ae498756444f8a9", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7085239, "upload_time": "2020-06-12T13:25:02", "upload_time_iso_8601": "2020-06-12T13:25:02.147801Z", "url": "https://files.pythonhosted.org/packages/a1/96/26e38202a0312d2c354eab6dc127a37c70e4c9e50a2f1fbcba964f9c247d/awkward1-0.2.24-cp27-cp27m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f1f1bf39b2fb552cadea54e6096490e1", "sha256": "6c12f33c4f9ebfb9e5ad2666edf60e560b4288164ed3cd3439714223dc909274" }, "downloads": -1, "filename": "awkward1-0.2.24-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "f1f1bf39b2fb552cadea54e6096490e1", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6980836, "upload_time": "2020-06-12T13:25:58", "upload_time_iso_8601": "2020-06-12T13:25:58.792315Z", "url": "https://files.pythonhosted.org/packages/ba/2e/19dbace2274b7fb2c1f86ddf2e4bf89cfae42dc817377254058f71d28d1b/awkward1-0.2.24-cp27-cp27m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "297448efc3075c2ca9bb8df674bd9ca2", "sha256": "06ed2c6a76dc89148913ef4c3ac55917edaccf849b4ed9c7bb922f2a3743ff5f" }, "downloads": -1, "filename": "awkward1-0.2.24-cp27-cp27m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "297448efc3075c2ca9bb8df674bd9ca2", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7149811, "upload_time": "2020-06-12T13:34:48", "upload_time_iso_8601": "2020-06-12T13:34:48.549035Z", "url": "https://files.pythonhosted.org/packages/a5/fb/3f10bb0c1109a64d534ac2c3d3893bcf7a565437bb285b3140737a2155bc/awkward1-0.2.24-cp27-cp27m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7adfb172be855afdecd40db6557a89bd", "sha256": "efcf13f1df3383049dd1941c2f867b41bb9987bc9d44f7e8ea666559a454209d" }, "downloads": -1, "filename": "awkward1-0.2.24-cp27-cp27mu-manylinux1_i686.whl", "has_sig": false, "md5_digest": "7adfb172be855afdecd40db6557a89bd", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7085276, "upload_time": "2020-06-12T13:25:04", "upload_time_iso_8601": "2020-06-12T13:25:04.061601Z", "url": "https://files.pythonhosted.org/packages/ee/02/ec111f9fc3ac62c719daa0e8cc0c6a608914e770b1a0dadffde91d444f31/awkward1-0.2.24-cp27-cp27mu-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7085d41820e7fd1952f3625e575cf52a", "sha256": "cd6cf229f29cf75ecc851a61f1d8aad771b8576ca651f02b714e79f17d72d5bc" }, "downloads": -1, "filename": "awkward1-0.2.24-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "7085d41820e7fd1952f3625e575cf52a", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6980723, "upload_time": "2020-06-12T13:26:00", "upload_time_iso_8601": "2020-06-12T13:26:00.527260Z", "url": "https://files.pythonhosted.org/packages/ce/4d/779b69fa5276bcf59c2f9711184d2c8fbf2258f83d9621f240990f1b17e6/awkward1-0.2.24-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "800dbcdad8b012e490e4c0b8c7c3b346", "sha256": "518515e02135adb59d8f3a80a605ef3652dc49e37c744fe1590541b624522244" }, "downloads": -1, "filename": "awkward1-0.2.24-cp27-cp27mu-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "800dbcdad8b012e490e4c0b8c7c3b346", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7149760, "upload_time": "2020-06-12T13:34:50", "upload_time_iso_8601": "2020-06-12T13:34:50.333465Z", "url": "https://files.pythonhosted.org/packages/49/e2/b542bdf102f64ef24095fca19ec0c93976b1db0ec5d7426d91243c244ad3/awkward1-0.2.24-cp27-cp27mu-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "72e27cfa18285cefefceee55aa49a916", "sha256": "816544fd24a0a335468b2419ec4faec97e937cd26668fa9ffef479df079f8eb2" }, "downloads": -1, "filename": "awkward1-0.2.24-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "72e27cfa18285cefefceee55aa49a916", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7903717, "upload_time": "2020-06-12T13:18:27", "upload_time_iso_8601": "2020-06-12T13:18:27.503570Z", "url": "https://files.pythonhosted.org/packages/9c/c3/e5f5784cc92d242a6840f922c1d7fca20d97c215380e2aca8a68c95104dd/awkward1-0.2.24-cp27-cp27m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3e79a0fb63a3246d86283459ca29edda", "sha256": "7f106d17585b5c6fed38316143fb588b86c79d69675dec026175c87507243101" }, "downloads": -1, "filename": "awkward1-0.2.24-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "3e79a0fb63a3246d86283459ca29edda", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 10294891, "upload_time": "2020-06-12T13:18:30", "upload_time_iso_8601": "2020-06-12T13:18:30.325648Z", "url": "https://files.pythonhosted.org/packages/d9/7f/ab666b25eaa723eb7f2e4a58afa36de8ee67b73729bc6ef0b19786d82eb1/awkward1-0.2.24-cp27-cp27m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b67085cb3c970f6753068c6c9789aca6", "sha256": "81d4c57212c75fc240675d00ae727c26605b2a83c5544d75540371f2aca5d4a9" }, "downloads": -1, "filename": "awkward1-0.2.24-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "b67085cb3c970f6753068c6c9789aca6", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7086994, "upload_time": "2020-06-12T13:25:05", "upload_time_iso_8601": "2020-06-12T13:25:05.772313Z", "url": "https://files.pythonhosted.org/packages/e4/dd/8eb7001a5cf0c452d17fd4c5a4fbb65b01ea4e1e46be0fce36347e3cd7ef/awkward1-0.2.24-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dbdf6ae8f7fc4e192dcb987a5bf452cf", "sha256": "32d6521f50acad72d63d52554f8798b66294a767dc337c7aed393a5607a3348e" }, "downloads": -1, "filename": "awkward1-0.2.24-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "dbdf6ae8f7fc4e192dcb987a5bf452cf", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6988225, "upload_time": "2020-06-12T13:26:02", "upload_time_iso_8601": "2020-06-12T13:26:02.429552Z", "url": "https://files.pythonhosted.org/packages/a0/1d/de38f24033eaf8f7dc2e9db4fa72e6cc8fab2acf15faf805da6960d16a1d/awkward1-0.2.24-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e49a1efdd7a901444e2e73720e9750db", "sha256": "ddf1426fe1d5e54ac742715979e88e9fb6dca5f162d9a4228119f8c9a491d1c5" }, "downloads": -1, "filename": "awkward1-0.2.24-cp35-cp35m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "e49a1efdd7a901444e2e73720e9750db", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7152367, "upload_time": "2020-06-12T13:34:52", "upload_time_iso_8601": "2020-06-12T13:34:52.405634Z", "url": "https://files.pythonhosted.org/packages/31/e9/ab99267d39a28996e934a78fe32ec54f20455a038ad15dd8636288166a89/awkward1-0.2.24-cp35-cp35m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d43493953d9b8c901902c8ea916dbf2d", "sha256": "869bbb827ae5aeed50516fff169639af462e3f4362487e9e02b313ead0f4b6dc" }, "downloads": -1, "filename": "awkward1-0.2.24-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "d43493953d9b8c901902c8ea916dbf2d", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7900855, "upload_time": "2020-06-12T13:18:06", "upload_time_iso_8601": "2020-06-12T13:18:06.333502Z", "url": "https://files.pythonhosted.org/packages/6e/c1/8cef3be724a94af3c94e6c6eab2fd8a95481601511558b78ada7c6dad3e2/awkward1-0.2.24-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0676d96aaee2214e8fbd5acc1bb36410", "sha256": "870626bb01d008b1fab3a94e80221c4c49f0cd71b93480a9bfd67ba235c617b1" }, "downloads": -1, "filename": "awkward1-0.2.24-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "0676d96aaee2214e8fbd5acc1bb36410", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 10292940, "upload_time": "2020-06-12T13:23:19", "upload_time_iso_8601": "2020-06-12T13:23:19.298735Z", "url": "https://files.pythonhosted.org/packages/d4/21/bd9d81a792e51c61f1f7e9629b79fd8a9dc44a915408609fc22d14221027/awkward1-0.2.24-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f89d3d0dd8c785c4cbd4479434be4f11", "sha256": "0ed8a39b78d50e616413af0195f0c37648cc741caca94b622142ba69f18413f5" }, "downloads": -1, "filename": "awkward1-0.2.24-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "f89d3d0dd8c785c4cbd4479434be4f11", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7038797, "upload_time": "2020-06-12T13:11:18", "upload_time_iso_8601": "2020-06-12T13:11:18.650359Z", "url": "https://files.pythonhosted.org/packages/80/6a/041861c260f629d7dfa9728e4db8a406b951193eaf7b720f2160b81c0be7/awkward1-0.2.24-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "405f191f17392368f8919b9a819c2767", "sha256": "cc06c559834a3b704c43748913aa1923d96483b4d6ff0d5ddba26e9a7b21f2d9" }, "downloads": -1, "filename": "awkward1-0.2.24-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "405f191f17392368f8919b9a819c2767", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7086981, "upload_time": "2020-06-12T13:25:07", "upload_time_iso_8601": "2020-06-12T13:25:07.609888Z", "url": "https://files.pythonhosted.org/packages/11/75/de293cbb7fbee487f8fedceb713fbd8476f75e122bbd4a8fcf5cd9691246/awkward1-0.2.24-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c52a0ef1d0a5669ecdd0106483c4d78a", "sha256": "9464a00db48affc8a26310a87307f86774d6da81ffdf0b1d4fa9f23ffccbabe8" }, "downloads": -1, "filename": "awkward1-0.2.24-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "c52a0ef1d0a5669ecdd0106483c4d78a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6988192, "upload_time": "2020-06-12T13:26:04", "upload_time_iso_8601": "2020-06-12T13:26:04.314660Z", "url": "https://files.pythonhosted.org/packages/12/e9/e0e7e491d6d08f6bfb43d401158c9356952d7aabcbbfa109828d68648e4f/awkward1-0.2.24-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a904f8d5e1f0be546b5cacf51acd73e7", "sha256": "8fbf49a260430f15d64364cdf2a378a6804128867597db7ec16183211f742f1f" }, "downloads": -1, "filename": "awkward1-0.2.24-cp36-cp36m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "a904f8d5e1f0be546b5cacf51acd73e7", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7152369, "upload_time": "2020-06-12T13:34:54", "upload_time_iso_8601": "2020-06-12T13:34:54.357780Z", "url": "https://files.pythonhosted.org/packages/4a/da/259734ad50bc386626f2d357812105b3d8817d874f616567cad63be5cecc/awkward1-0.2.24-cp36-cp36m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4662d7378ba2a908c7802e3b9b1fffc6", "sha256": "2d1f2527c75e64f9259cfbc8262e62588d568a1653682b1492ef454b82645426" }, "downloads": -1, "filename": "awkward1-0.2.24-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "4662d7378ba2a908c7802e3b9b1fffc6", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7900825, "upload_time": "2020-06-12T13:22:07", "upload_time_iso_8601": "2020-06-12T13:22:07.991707Z", "url": "https://files.pythonhosted.org/packages/82/57/3ab7be4bcbcd16e1bbda0bf7e511c836f57893e9ed2d66a307b14d698bce/awkward1-0.2.24-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "315d24e6e588d990e2515f08c37cf4e4", "sha256": "bc61e1571248cf3aec26a22eac6bdcb3a70264f5211a941b598b7106d8aeb99c" }, "downloads": -1, "filename": "awkward1-0.2.24-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "315d24e6e588d990e2515f08c37cf4e4", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 10292962, "upload_time": "2020-06-12T13:23:44", "upload_time_iso_8601": "2020-06-12T13:23:44.838966Z", "url": "https://files.pythonhosted.org/packages/d4/91/02fb8869bc6631731bb082a59b1fba18a2b3fffdb7541f995aec9e1256d7/awkward1-0.2.24-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3bbe8c49b47beef3f2f95bf9e43c4118", "sha256": "443632060099969209fd80800849af17508dd538557bb92b3ddea571bbd98583" }, "downloads": -1, "filename": "awkward1-0.2.24-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "3bbe8c49b47beef3f2f95bf9e43c4118", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7038940, "upload_time": "2020-06-12T13:11:27", "upload_time_iso_8601": "2020-06-12T13:11:27.722512Z", "url": "https://files.pythonhosted.org/packages/37/71/b275dcea51ec1ea4bf7a1be386157637277feebefbe9e25b0eb7675dbe1d/awkward1-0.2.24-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "23fdbbc9ce8d3dd743072e0149473eb0", "sha256": "e06d95aba9d65f5303d04e600d3edac9ea0a46f6d6adbc5233048dbfea22938c" }, "downloads": -1, "filename": "awkward1-0.2.24-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "23fdbbc9ce8d3dd743072e0149473eb0", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7085812, "upload_time": "2020-06-12T13:25:09", "upload_time_iso_8601": "2020-06-12T13:25:09.476969Z", "url": "https://files.pythonhosted.org/packages/47/63/339f9c5573344e5cf6f30cf72f9002533b5cba36787907cb976c033bf21f/awkward1-0.2.24-cp37-cp37m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "24838c5013cf5b1ed98424feec74a499", "sha256": "d6edc60a403a2e64733c7eb2be641d3d54b34532e1cfb9001188dd09cc646d26" }, "downloads": -1, "filename": "awkward1-0.2.24-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "24838c5013cf5b1ed98424feec74a499", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6986869, "upload_time": "2020-06-12T13:26:06", "upload_time_iso_8601": "2020-06-12T13:26:06.292928Z", "url": "https://files.pythonhosted.org/packages/f7/b2/4d4390993e1f14fa183a37e1c28167fab2f926f3dfead5c1410040f16951/awkward1-0.2.24-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f010bd9bc80c69e1edd7d8a8e78d5d84", "sha256": "05564b2792d8f8587680b03bc0a90f295b3f26ce5b739f8d7d3e36109f5f0f25" }, "downloads": -1, "filename": "awkward1-0.2.24-cp37-cp37m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "f010bd9bc80c69e1edd7d8a8e78d5d84", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7147191, "upload_time": "2020-06-12T13:34:56", "upload_time_iso_8601": "2020-06-12T13:34:56.182333Z", "url": "https://files.pythonhosted.org/packages/a0/d9/f0a63c00d17ed597254a9ff58ece669440cdead529ec4be7f86bddfd67a9/awkward1-0.2.24-cp37-cp37m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8696d008be902a8de9d3d2ee27f0452a", "sha256": "4fc32d9ac468a15fd8d38aa9620209c1fadc08d196b9e3ff981d2aa035585596" }, "downloads": -1, "filename": "awkward1-0.2.24-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "8696d008be902a8de9d3d2ee27f0452a", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7901320, "upload_time": "2020-06-12T13:28:10", "upload_time_iso_8601": "2020-06-12T13:28:10.370484Z", "url": "https://files.pythonhosted.org/packages/09/f8/a26275b5f950093fe87b251878fb64eaad556cb7cb396b9881a6b745ce24/awkward1-0.2.24-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d66d377284bbd9920d75f81665169ca2", "sha256": "9aef14a8161798479839daf7d6a8779cdd3beba9d9f460949f84b2910f8643f0" }, "downloads": -1, "filename": "awkward1-0.2.24-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "d66d377284bbd9920d75f81665169ca2", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 10293690, "upload_time": "2020-06-12T13:23:56", "upload_time_iso_8601": "2020-06-12T13:23:56.623054Z", "url": "https://files.pythonhosted.org/packages/2f/77/18b59d95f8e25d8b0cb686a5ff35e79ac2ab34adf1e6f9b062b2b0d77b3e/awkward1-0.2.24-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c3a957e005616391f19d495e3449fa28", "sha256": "519832ed3b84c9f366216a7fd120b08f7a2aa19f5fb890c623d3226cbf420fcc" }, "downloads": -1, "filename": "awkward1-0.2.24-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "c3a957e005616391f19d495e3449fa28", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7118305, "upload_time": "2020-06-12T13:11:23", "upload_time_iso_8601": "2020-06-12T13:11:23.439901Z", "url": "https://files.pythonhosted.org/packages/c6/42/e55c0cfcaeccd8db1e6dbc958bb9c805f12f9dc3b67795b332cfb3a164ee/awkward1-0.2.24-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "65032e3a752dabebd78f8637aa115853", "sha256": "e2d4b88b91feca0a133569ccc6f898f2adaa641c2e47e81fc6b5d490b183811c" }, "downloads": -1, "filename": "awkward1-0.2.24-cp38-cp38-manylinux1_i686.whl", "has_sig": false, "md5_digest": "65032e3a752dabebd78f8637aa115853", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7047783, "upload_time": "2020-06-12T13:25:11", "upload_time_iso_8601": "2020-06-12T13:25:11.058501Z", "url": "https://files.pythonhosted.org/packages/47/74/b6f4a5a07f9d7388e92dee038bc44399324432f92327d098a3ef85e4a5d4/awkward1-0.2.24-cp38-cp38-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "624d985ce760b02a8010ac70b74388bf", "sha256": "ee9cd438bfc52725e9ecf8c4ce3d3a382dc307dede6e990b6853166c0b30779d" }, "downloads": -1, "filename": "awkward1-0.2.24-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "624d985ce760b02a8010ac70b74388bf", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6928277, "upload_time": "2020-06-12T13:26:08", "upload_time_iso_8601": "2020-06-12T13:26:08.296914Z", "url": "https://files.pythonhosted.org/packages/51/78/61a9a33d4d0346ab387677f4f232fe7c1e5580562610515b53bda8b0bdec/awkward1-0.2.24-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "65420bca53daa746e27b03ac48218908", "sha256": "ba835d0e7c77786e5747d4088421adf21519652784ce3e6fd42b88c673be1086" }, "downloads": -1, "filename": "awkward1-0.2.24-cp38-cp38-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "65420bca53daa746e27b03ac48218908", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7134934, "upload_time": "2020-06-12T13:34:57", "upload_time_iso_8601": "2020-06-12T13:34:57.878075Z", "url": "https://files.pythonhosted.org/packages/7d/be/9d9ef0592430c3b4f1bcb577fd98faf9fcbe29b47a4c52d091336a7b9035/awkward1-0.2.24-cp38-cp38-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "027e5f7d63a795210e2ba29400bd105b", "sha256": "53b8b3a61ed6e4be24ab6bd7766e6c7d0fce71a4bb6d1deb059c0da7b4c95329" }, "downloads": -1, "filename": "awkward1-0.2.24-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "027e5f7d63a795210e2ba29400bd105b", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7906405, "upload_time": "2020-06-12T13:30:36", "upload_time_iso_8601": "2020-06-12T13:30:36.064317Z", "url": "https://files.pythonhosted.org/packages/3f/08/a71fa80991f84b5b886008f83bdedbb12c637fd19f1b347cbc644f004a39/awkward1-0.2.24-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "72eecc6a9673d2b0a296c4c0d8079bbb", "sha256": "230ea3250dd165fdb82bbf0ed42e6e26c4e60ff7e177c24164e598b5b32c768d" }, "downloads": -1, "filename": "awkward1-0.2.24-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "72eecc6a9673d2b0a296c4c0d8079bbb", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 10299173, "upload_time": "2020-06-12T13:30:03", "upload_time_iso_8601": "2020-06-12T13:30:03.487764Z", "url": "https://files.pythonhosted.org/packages/94/97/690cbcdde580d5d7bb910323d86f6d8fba77fbe5671074b06049b5110404/awkward1-0.2.24-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9d77a5cff0e711c977979e55619b7bf9", "sha256": "7f77fe83e8a2cfe20ff0f960724d0180a2510199ee782fd6fa8be704777f4875" }, "downloads": -1, "filename": "awkward1-0.2.24-cp39-cp39-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "9d77a5cff0e711c977979e55619b7bf9", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7143155, "upload_time": "2020-06-12T13:34:59", "upload_time_iso_8601": "2020-06-12T13:34:59.624471Z", "url": "https://files.pythonhosted.org/packages/66/52/27a09b42001101caf183f4267b2dde39b710a5184b1f43e085ba6f4823fe/awkward1-0.2.24-cp39-cp39-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cfb2efd8326454c3f6cdc187ca29c4d4", "sha256": "d2f4c9e3153ba18e3ef867c4804e3f17aefd0cc32b5174b38718d06ada4503e9" }, "downloads": -1, "filename": "awkward1-0.2.24.tar.gz", "has_sig": false, "md5_digest": "cfb2efd8326454c3f6cdc187ca29c4d4", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 582106, "upload_time": "2020-06-12T13:35:01", "upload_time_iso_8601": "2020-06-12T13:35:01.137283Z", "url": "https://files.pythonhosted.org/packages/3a/9c/3b5009428b5d29e0afd1f6d0a5a77644f6ec98cfa35fb725a7603e0cf0bf/awkward1-0.2.24.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.25": [ { "comment_text": "", "digests": { "md5": "49a98df0276cb14ecf54b4b8dc6711df", "sha256": "077e0f2530ce91c0422d93f033aa09a6732571180b4d31b239f78b5fd5470d33" }, "downloads": -1, "filename": "awkward1-0.2.25-cp27-cp27m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "49a98df0276cb14ecf54b4b8dc6711df", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8113829, "upload_time": "2020-07-11T04:25:52", "upload_time_iso_8601": "2020-07-11T04:25:52.764706Z", "url": "https://files.pythonhosted.org/packages/62/75/1f2bdfcebf34a5cf37c276058b4078aae8aa87729d6ff1c400eaa52728a1/awkward1-0.2.25-cp27-cp27m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5b7bd739ec2139fc3e32c676571a98a4", "sha256": "31e1d743a362bd135109426f7ea453022344578df282d14055bc748ee29d5d4f" }, "downloads": -1, "filename": "awkward1-0.2.25-cp27-cp27m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "5b7bd739ec2139fc3e32c676571a98a4", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8136283, "upload_time": "2020-07-11T04:48:06", "upload_time_iso_8601": "2020-07-11T04:48:06.812617Z", "url": "https://files.pythonhosted.org/packages/58/ab/f8ecc9bbe7b3fd07273379610bac588f5eeaa30191b77b81cb6aebddace2/awkward1-0.2.25-cp27-cp27m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a657c2e8f15a76cbef2044d3197c1af8", "sha256": "b0322d57810018fe2e85f4e81b55fa1b3420f06862b5cc9686556725b83b790d" }, "downloads": -1, "filename": "awkward1-0.2.25-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "a657c2e8f15a76cbef2044d3197c1af8", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7937080, "upload_time": "2020-07-11T04:46:54", "upload_time_iso_8601": "2020-07-11T04:46:54.039479Z", "url": "https://files.pythonhosted.org/packages/dc/3c/4df5696271a8d59ea3f66a0f24aba9432a804652f9c812c82f96da31b082/awkward1-0.2.25-cp27-cp27m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d9d1b046038b22679dece63913d1cc1f", "sha256": "b208b12dc61c104587bbca7283cbcec47a63496d910c7017a3f0654f468806e3" }, "downloads": -1, "filename": "awkward1-0.2.25-cp27-cp27m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "d9d1b046038b22679dece63913d1cc1f", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8189698, "upload_time": "2020-07-11T04:51:29", "upload_time_iso_8601": "2020-07-11T04:51:29.559090Z", "url": "https://files.pythonhosted.org/packages/fa/af/d149f6776153081efc828b8cf0a81f3f7e492e7955a469887dcd615d1cae/awkward1-0.2.25-cp27-cp27m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c172809eb7ce47ab4d9013c4655bb29f", "sha256": "e99c8037a7567998510095b36d4b22832b9a1be2f51dd531c7552c3d3b2a1e48" }, "downloads": -1, "filename": "awkward1-0.2.25-cp27-cp27mu-manylinux1_i686.whl", "has_sig": false, "md5_digest": "c172809eb7ce47ab4d9013c4655bb29f", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8136246, "upload_time": "2020-07-11T04:48:08", "upload_time_iso_8601": "2020-07-11T04:48:08.400144Z", "url": "https://files.pythonhosted.org/packages/5d/f2/1c4e6ab0c2f14620d41f37bbec4798f15e155f7d2d8930e0fbf5b6368f39/awkward1-0.2.25-cp27-cp27mu-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "01ab2f64e7f8cd679be457d0211e14ab", "sha256": "07e75458c83e0bedc04ce6a8004e04ae84b839eda93135a2f6d44e7a7dca8188" }, "downloads": -1, "filename": "awkward1-0.2.25-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "01ab2f64e7f8cd679be457d0211e14ab", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7936930, "upload_time": "2020-07-11T04:46:55", "upload_time_iso_8601": "2020-07-11T04:46:55.989193Z", "url": "https://files.pythonhosted.org/packages/f8/73/f04f9e215a56670915d11a862357f3fab18cb7343e5478c99fbc57ecd7c7/awkward1-0.2.25-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8d7a138aa7480a783e317edaef1e9d32", "sha256": "56af6cf9a5c576c3accb98b1651f5a6dbecbc34b880fe8631adc2518d95f18b2" }, "downloads": -1, "filename": "awkward1-0.2.25-cp27-cp27mu-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "8d7a138aa7480a783e317edaef1e9d32", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8189643, "upload_time": "2020-07-11T04:51:31", "upload_time_iso_8601": "2020-07-11T04:51:31.670844Z", "url": "https://files.pythonhosted.org/packages/15/e7/451526e9eb6399ed79443647a8c50ca9f6ed897e35162e19e5f861a92e4d/awkward1-0.2.25-cp27-cp27mu-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d7e24bf7501ae0e42b656310fe928060", "sha256": "f3446581f5f81d8bc733a0a8cdf60ca309632acc5629434a8069a4de2d42d3bf" }, "downloads": -1, "filename": "awkward1-0.2.25-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "d7e24bf7501ae0e42b656310fe928060", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8579881, "upload_time": "2020-07-11T04:33:27", "upload_time_iso_8601": "2020-07-11T04:33:27.592410Z", "url": "https://files.pythonhosted.org/packages/eb/32/861747b2320096fc5c484f12946331645361b24a56a14d11978f4555599a/awkward1-0.2.25-cp27-cp27m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "22d027f208cf24e90bb49de98275dd5f", "sha256": "9fb66a86902c7df948fb573326ad97d7c9224e666c38d43bf1fcbbe64a94e2dd" }, "downloads": -1, "filename": "awkward1-0.2.25-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "22d027f208cf24e90bb49de98275dd5f", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 11240848, "upload_time": "2020-07-11T04:32:45", "upload_time_iso_8601": "2020-07-11T04:32:45.918944Z", "url": "https://files.pythonhosted.org/packages/16/7b/08c685415ab66caa839b9ed67cfcd72f7e64e6a4fcf7f53e5c2008b8e25e/awkward1-0.2.25-cp27-cp27m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f4d737e77ce4f94b0468d50b578a41f7", "sha256": "d6f9a5edc64a770d23688e86a5551a37aad11241c4fa4a7053aaffa3817a69b3" }, "downloads": -1, "filename": "awkward1-0.2.25-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "f4d737e77ce4f94b0468d50b578a41f7", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8136707, "upload_time": "2020-07-11T04:48:10", "upload_time_iso_8601": "2020-07-11T04:48:10.290203Z", "url": "https://files.pythonhosted.org/packages/d4/3c/452e0aba9e896119b148e2bed29a90d09d156f588dd2cf46fa450d55283d/awkward1-0.2.25-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4642c35acc51dd587b8fa84633dfad35", "sha256": "c4191c4e4203a1709e94d53494ccb187350211302597c4fadf8586d2bd049092" }, "downloads": -1, "filename": "awkward1-0.2.25-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "4642c35acc51dd587b8fa84633dfad35", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7941914, "upload_time": "2020-07-11T04:46:57", "upload_time_iso_8601": "2020-07-11T04:46:57.815131Z", "url": "https://files.pythonhosted.org/packages/99/f8/1e2f1ab5875611cb2d840683a16994ca5a66d9b31859c081cf3df767f930/awkward1-0.2.25-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bd1fd8cf9ee524537efece79a1eff8cf", "sha256": "b101f5beb798c9cd08a6bf5ec20894f35f08a5fdc41ff1005d7e9e22e19bb798" }, "downloads": -1, "filename": "awkward1-0.2.25-cp35-cp35m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "bd1fd8cf9ee524537efece79a1eff8cf", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8191977, "upload_time": "2020-07-11T04:51:33", "upload_time_iso_8601": "2020-07-11T04:51:33.463442Z", "url": "https://files.pythonhosted.org/packages/6c/41/b24f559fcc3e470e30dcfbbb2385a15ed7482c01e2a1d22245c39034a37a/awkward1-0.2.25-cp35-cp35m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6f32776e1ce4ff8cb56def0c0fd9b59d", "sha256": "e960a72c4501136f3e843b348829bc8b777784ce8c812fbb6ef2f9548fa02ff4" }, "downloads": -1, "filename": "awkward1-0.2.25-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "6f32776e1ce4ff8cb56def0c0fd9b59d", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8579088, "upload_time": "2020-07-11T04:31:54", "upload_time_iso_8601": "2020-07-11T04:31:54.701529Z", "url": "https://files.pythonhosted.org/packages/e7/dd/b14d0f16be734db24cdac1d6a87f3a954130ff6eb409b571a84d2a35818a/awkward1-0.2.25-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bcce7373a4d7c04b6a53f13b7d8a80cc", "sha256": "f79541c259622186116e0539fabfa8026d1069bc21751b4940951ebc38968c8e" }, "downloads": -1, "filename": "awkward1-0.2.25-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "bcce7373a4d7c04b6a53f13b7d8a80cc", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 11239879, "upload_time": "2020-07-11T04:36:22", "upload_time_iso_8601": "2020-07-11T04:36:22.223602Z", "url": "https://files.pythonhosted.org/packages/ac/4a/48d2f7b43a354217abe68ab4197bdea9a72c52e1939839c7de0001974f5d/awkward1-0.2.25-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "202ccfebaba7219c4c6024570cdfab51", "sha256": "8a438b2c5cb65b4843fc994af997ada74c73ba05f09eb8b8c2024e98f92acaa8" }, "downloads": -1, "filename": "awkward1-0.2.25-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "202ccfebaba7219c4c6024570cdfab51", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8113903, "upload_time": "2020-07-11T04:25:51", "upload_time_iso_8601": "2020-07-11T04:25:51.242892Z", "url": "https://files.pythonhosted.org/packages/6c/19/10fa8bf5ec0175d6471469a8552291f0a28156acc7e26959134546758bce/awkward1-0.2.25-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "592a1b765663e469aac458fcf7e0db50", "sha256": "b92532ae937c99b879209f5d1f11afb97ccf512714c43cd9a8329521fdb31ae6" }, "downloads": -1, "filename": "awkward1-0.2.25-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "592a1b765663e469aac458fcf7e0db50", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8136664, "upload_time": "2020-07-11T04:48:11", "upload_time_iso_8601": "2020-07-11T04:48:11.828164Z", "url": "https://files.pythonhosted.org/packages/46/b6/b5215312c5f4e9f0899d690d8f650d55b225190a0ef8c69f7d9b383810a2/awkward1-0.2.25-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "23b1c753c6097592ba9d188b8bda476d", "sha256": "198a0906618bc8f54d3b4e2b504f424b24dd764cd7d496106d416363ef348e71" }, "downloads": -1, "filename": "awkward1-0.2.25-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "23b1c753c6097592ba9d188b8bda476d", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7941890, "upload_time": "2020-07-11T04:46:59", "upload_time_iso_8601": "2020-07-11T04:46:59.319479Z", "url": "https://files.pythonhosted.org/packages/82/d1/e579d19bc383a4fb38d3d6394b37cd3c605f0df5991bef0502acfa5a1b19/awkward1-0.2.25-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "563522ee2403e322203c9e38318fed9d", "sha256": "31ab132b0bdf00de5427ce885ee18c29e9f38851eac4c88f1ca550e224dc2ab6" }, "downloads": -1, "filename": "awkward1-0.2.25-cp36-cp36m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "563522ee2403e322203c9e38318fed9d", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8192016, "upload_time": "2020-07-11T04:51:34", "upload_time_iso_8601": "2020-07-11T04:51:34.997356Z", "url": "https://files.pythonhosted.org/packages/88/9b/2c2e9f48a41a8fdfaadabbe170a3662b685ab460add2720909f4d66f2e9b/awkward1-0.2.25-cp36-cp36m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2a65aeba4ee73d009fcdb62a32216f3a", "sha256": "11adbf88a6e2eb11196fdb763667b4d3082a0ccfbc4f01fb57b23f319009ca46" }, "downloads": -1, "filename": "awkward1-0.2.25-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "2a65aeba4ee73d009fcdb62a32216f3a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8579143, "upload_time": "2020-07-11T04:36:36", "upload_time_iso_8601": "2020-07-11T04:36:36.268627Z", "url": "https://files.pythonhosted.org/packages/ae/d3/3070cc7537404dee9853adeef98f833f58344b17a86b286b846be63816fa/awkward1-0.2.25-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6a80f51256ace859da9a5e35688b3a52", "sha256": "58c98a184525aaab930a393d573550e6863ec89aeb1c63f5b0da125e8f30cc05" }, "downloads": -1, "filename": "awkward1-0.2.25-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "6a80f51256ace859da9a5e35688b3a52", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 11239909, "upload_time": "2020-07-11T04:38:05", "upload_time_iso_8601": "2020-07-11T04:38:05.970639Z", "url": "https://files.pythonhosted.org/packages/5c/10/4c285462d89408ce1feb1aebd26477179f843287c2c30e92e392090a7f2a/awkward1-0.2.25-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5891856946246ae3a5a1e9319d78c7af", "sha256": "9e7b50fd116741802198b7f4d679aa9a0567a39beb1efadff3d7db4b0489ff87" }, "downloads": -1, "filename": "awkward1-0.2.25-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "5891856946246ae3a5a1e9319d78c7af", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8113846, "upload_time": "2020-07-11T04:25:32", "upload_time_iso_8601": "2020-07-11T04:25:32.469397Z", "url": "https://files.pythonhosted.org/packages/77/1b/371c59cd0cc7f970af45c0fc1a063a21c7fca616a757bddf87a6d9345b90/awkward1-0.2.25-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "585ec5f59693890825050aca2213c975", "sha256": "eff42179a3ca47d032d8cf829220710fcdc21cf0489c4b1f546b6547df32d810" }, "downloads": -1, "filename": "awkward1-0.2.25-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "585ec5f59693890825050aca2213c975", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8137964, "upload_time": "2020-07-11T04:48:13", "upload_time_iso_8601": "2020-07-11T04:48:13.778355Z", "url": "https://files.pythonhosted.org/packages/e2/dc/e95cb803fd64d4e56cdddcb315285de54f07baa1092be599134f26718c3b/awkward1-0.2.25-cp37-cp37m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d16e2f8d804ef92497235ad79deeeff7", "sha256": "94b3edb2632b882abcbb220de3c88c1d7478284f9aacc5e29314c1cfc4c58204" }, "downloads": -1, "filename": "awkward1-0.2.25-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "d16e2f8d804ef92497235ad79deeeff7", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7940604, "upload_time": "2020-07-11T04:47:00", "upload_time_iso_8601": "2020-07-11T04:47:00.981210Z", "url": "https://files.pythonhosted.org/packages/e6/d9/26c8f03733d4ab3927989fca13bff7a38060a1222bc60ea83242628b8d39/awkward1-0.2.25-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "82bed544595cd5ef420c2a673b70a9a5", "sha256": "930e0ca7290cfb3d6d8fa18652a6c4bae165d3f0b886b26f45fcc2c31659b602" }, "downloads": -1, "filename": "awkward1-0.2.25-cp37-cp37m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "82bed544595cd5ef420c2a673b70a9a5", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8192658, "upload_time": "2020-07-11T04:51:36", "upload_time_iso_8601": "2020-07-11T04:51:36.763619Z", "url": "https://files.pythonhosted.org/packages/1b/9a/fbd826faab8e03cbf8db9c572858a7ccc54984dd6d525960900f999943f7/awkward1-0.2.25-cp37-cp37m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5289640c13b246d0142372e4d8417715", "sha256": "e3b2c0275369915215121b857546987d78f8a44a1633d0d85904125c4ca39835" }, "downloads": -1, "filename": "awkward1-0.2.25-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "5289640c13b246d0142372e4d8417715", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8579335, "upload_time": "2020-07-11T04:36:07", "upload_time_iso_8601": "2020-07-11T04:36:07.243168Z", "url": "https://files.pythonhosted.org/packages/48/65/8a4bb9bd0a3a2519acf007a2f60c90bd58ddb33edf488abafa12bbea4e95/awkward1-0.2.25-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7d8fc47b725be3ff72dc67a6ee3c127e", "sha256": "6c4fa9bf8641d7c0dbf7049ff1157881603923c6b602a146c48130c1728cb3d9" }, "downloads": -1, "filename": "awkward1-0.2.25-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "7d8fc47b725be3ff72dc67a6ee3c127e", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 11240503, "upload_time": "2020-07-11T04:44:17", "upload_time_iso_8601": "2020-07-11T04:44:17.942780Z", "url": "https://files.pythonhosted.org/packages/d6/31/ced6da5700a65584fa1c2abe2892105d65f5337fd9b27330aa5f48e581c0/awkward1-0.2.25-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fe77cf2d57fdba3272129d74ca7e51ad", "sha256": "4898ce83747c5c2357448c07fd3005c7cbbaed91172cc4e39db7a75684b7e8b1" }, "downloads": -1, "filename": "awkward1-0.2.25-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "fe77cf2d57fdba3272129d74ca7e51ad", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8197785, "upload_time": "2020-07-11T04:25:17", "upload_time_iso_8601": "2020-07-11T04:25:17.872157Z", "url": "https://files.pythonhosted.org/packages/db/60/3edf992cb90c66b7203107c6ae6f15fcc2e07dcb837560f000781d64e32c/awkward1-0.2.25-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "116c9d470e76c179e803508a5d4c7fe9", "sha256": "ceed9c63ab8092914d3f19e11a37212e89ab099f9ed96dd1e8b94daa74281120" }, "downloads": -1, "filename": "awkward1-0.2.25-cp38-cp38-manylinux1_i686.whl", "has_sig": false, "md5_digest": "116c9d470e76c179e803508a5d4c7fe9", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8094127, "upload_time": "2020-07-11T04:48:15", "upload_time_iso_8601": "2020-07-11T04:48:15.672162Z", "url": "https://files.pythonhosted.org/packages/0a/bd/1852ea709757813675a1c42a6677fb6a1a3e59b9e59c84e945538246924f/awkward1-0.2.25-cp38-cp38-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e59cafed4daedd2a2d69fd938ca20ed9", "sha256": "90b5c225f840afcb81d95de355503089989b05d06be85a65895e82016373e4e8" }, "downloads": -1, "filename": "awkward1-0.2.25-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "e59cafed4daedd2a2d69fd938ca20ed9", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7884350, "upload_time": "2020-07-11T04:47:02", "upload_time_iso_8601": "2020-07-11T04:47:02.382214Z", "url": "https://files.pythonhosted.org/packages/78/8a/80d8370eaeb2c0596f0f2bc84ecbaff1b31efabcade9f8fcefc52e9de7a0/awkward1-0.2.25-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a2d2e0fe1cf3d0a85cddd60c16fedc8f", "sha256": "064396a2f9a268146b19df5a12c9c27fcb32f04b2218f9cda8f29e372bbda595" }, "downloads": -1, "filename": "awkward1-0.2.25-cp38-cp38-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "a2d2e0fe1cf3d0a85cddd60c16fedc8f", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8188348, "upload_time": "2020-07-11T04:51:38", "upload_time_iso_8601": "2020-07-11T04:51:38.291716Z", "url": "https://files.pythonhosted.org/packages/db/02/84060e8eb2678808eee77ca66ed9c7ad6030b0d29aea9f4db58197e48319/awkward1-0.2.25-cp38-cp38-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6c8cf0cc1e5886c3222c5ca1c10ef039", "sha256": "217051ea3a225d028af6716770579aabc1a217bef4c75c1473e6bea6d34f02d5" }, "downloads": -1, "filename": "awkward1-0.2.25-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "6c8cf0cc1e5886c3222c5ca1c10ef039", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8582738, "upload_time": "2020-07-11T04:42:28", "upload_time_iso_8601": "2020-07-11T04:42:28.930056Z", "url": "https://files.pythonhosted.org/packages/e4/22/367178b406fceb378f16bb1c8df456247bd484df53ec00a8eefe69eacc24/awkward1-0.2.25-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2be7cba6393708f13d5ea16da61999a5", "sha256": "aecc2e86598d8b320093c815c7b9ceac999f93d105478420a4d47349c4bd35d7" }, "downloads": -1, "filename": "awkward1-0.2.25-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "2be7cba6393708f13d5ea16da61999a5", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 11247291, "upload_time": "2020-07-11T04:45:23", "upload_time_iso_8601": "2020-07-11T04:45:23.221298Z", "url": "https://files.pythonhosted.org/packages/94/4b/095eec3ee8ecd9a453e352dc3339f332c53a02ff0bd11f4fad4c73c2e638/awkward1-0.2.25-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "66118e456c744fa2adf2c95ee9a5daf4", "sha256": "8fe2c277e1a01b0162d584ac25082d203411b71e0e351d44fa3cb6786d6af4a7" }, "downloads": -1, "filename": "awkward1-0.2.25-cp39-cp39-manylinux1_i686.whl", "has_sig": false, "md5_digest": "66118e456c744fa2adf2c95ee9a5daf4", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8088450, "upload_time": "2020-07-11T04:48:17", "upload_time_iso_8601": "2020-07-11T04:48:17.617995Z", "url": "https://files.pythonhosted.org/packages/bc/61/32fa4a5858a047136b337d9bd17e28f4bf114ed9319afc4d0a9f7d239ec4/awkward1-0.2.25-cp39-cp39-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b5fc35d754645b10f3dac3716dd2126b", "sha256": "eb1c69557a0a7c4e5065b0a1d53ca66b252c79230a36b92ba49b4fe8c7a460c1" }, "downloads": -1, "filename": "awkward1-0.2.25-cp39-cp39-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "b5fc35d754645b10f3dac3716dd2126b", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7883011, "upload_time": "2020-07-11T04:47:04", "upload_time_iso_8601": "2020-07-11T04:47:04.149703Z", "url": "https://files.pythonhosted.org/packages/2e/ec/11e6c4af1f79fc77c5ef5423c0c9a8bf5b6729386f984654be7ff4378858/awkward1-0.2.25-cp39-cp39-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d3eb027a70f14977b662211eeff6be52", "sha256": "c109ae9b81236c8c595ef2e285874d56f7cae7a2d4854b8b9d0d8c8a1998715f" }, "downloads": -1, "filename": "awkward1-0.2.25-cp39-cp39-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "d3eb027a70f14977b662211eeff6be52", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8186106, "upload_time": "2020-07-11T04:51:39", "upload_time_iso_8601": "2020-07-11T04:51:39.978951Z", "url": "https://files.pythonhosted.org/packages/83/5f/275118b753ee8510f88a7792ea67c3e3262764398a8b369f47ad57fe1729/awkward1-0.2.25-cp39-cp39-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8beb2fcf472301214190f1839e20e607", "sha256": "a4b5a043b886a7926f3e8a98738ff367f66cfaad97f3df7185053c48dad29243" }, "downloads": -1, "filename": "awkward1-0.2.25.tar.gz", "has_sig": false, "md5_digest": "8beb2fcf472301214190f1839e20e607", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 613224, "upload_time": "2020-07-11T04:51:41", "upload_time_iso_8601": "2020-07-11T04:51:41.305612Z", "url": "https://files.pythonhosted.org/packages/70/ee/7a637d399a0506605fb60562da88dfd0142bfd08bae3fc95ce82e1dc3530/awkward1-0.2.25.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.26": [ { "comment_text": "", "digests": { "md5": "515bf400b26cb057526c124c760da294", "sha256": "8fce5c354f59592dec240ce9bf7c890f23624a8bc2bc4e0e4d8ebe53a612453d" }, "downloads": -1, "filename": "awkward1-0.2.26-cp27-cp27m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "515bf400b26cb057526c124c760da294", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8206682, "upload_time": "2020-07-23T00:15:17", "upload_time_iso_8601": "2020-07-23T00:15:17.081463Z", "url": "https://files.pythonhosted.org/packages/06/92/3fb2f3dfc346c6c5de87976cbb7c2aed0f658cf6fbd9986f77a8ed4fcb01/awkward1-0.2.26-cp27-cp27m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "017c2280027c696d3fb82d9c8b4a224f", "sha256": "aedf8ea3167eea036ac9624b0353d519def2ac7c2057dfaf76cc6a6c142e5916" }, "downloads": -1, "filename": "awkward1-0.2.26-cp27-cp27m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "017c2280027c696d3fb82d9c8b4a224f", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8214277, "upload_time": "2020-07-23T00:36:41", "upload_time_iso_8601": "2020-07-23T00:36:41.344872Z", "url": "https://files.pythonhosted.org/packages/47/9c/19a7bcf5080d3f91f6ca9140c4d3cbfaf0495d5abf4180ed198451a3e33e/awkward1-0.2.26-cp27-cp27m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6e5a6accfb10a06eb43c15369c986214", "sha256": "d27da06ada0a7b224fbc3053a3b40d0971b5979abb4482f12abf7b49caee1247" }, "downloads": -1, "filename": "awkward1-0.2.26-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "6e5a6accfb10a06eb43c15369c986214", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8019316, "upload_time": "2020-07-23T00:34:33", "upload_time_iso_8601": "2020-07-23T00:34:33.837154Z", "url": "https://files.pythonhosted.org/packages/81/91/737fe318679a197ac85b61644d6fe0ec5a04d915862c272dd5c8044ccac0/awkward1-0.2.26-cp27-cp27m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "656fce66c214dedb1a031bd0c8667192", "sha256": "00416c95dca828b9d5cd136be4c9e3cb048ac1ccc3474a64d46ad8faf83900b6" }, "downloads": -1, "filename": "awkward1-0.2.26-cp27-cp27m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "656fce66c214dedb1a031bd0c8667192", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8293464, "upload_time": "2020-07-23T00:34:06", "upload_time_iso_8601": "2020-07-23T00:34:06.927200Z", "url": "https://files.pythonhosted.org/packages/96/52/d21af3fdfe50888c75e8f4be01ddf9ec7d2f63444d8be8a4fe8e909baefb/awkward1-0.2.26-cp27-cp27m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cbd61e97655c6192ea01b5435f1b3ee1", "sha256": "a0ed7a97c8b3f7045307a9464130e9949ae60f153126cc298316177594e2d172" }, "downloads": -1, "filename": "awkward1-0.2.26-cp27-cp27mu-manylinux1_i686.whl", "has_sig": false, "md5_digest": "cbd61e97655c6192ea01b5435f1b3ee1", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8214272, "upload_time": "2020-07-23T00:36:42", "upload_time_iso_8601": "2020-07-23T00:36:42.969360Z", "url": "https://files.pythonhosted.org/packages/03/fa/47acf6c750191f04fa252e4383a1ee6edbd9d640a3f44d7acca5bc5ffb95/awkward1-0.2.26-cp27-cp27mu-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e5e94616fa58fd3c7a965e7116dd4f41", "sha256": "dd09629645dce733782e859326342e7ecf85e16dc9e402a78e94c09f5f66be9e" }, "downloads": -1, "filename": "awkward1-0.2.26-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "e5e94616fa58fd3c7a965e7116dd4f41", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8019324, "upload_time": "2020-07-23T00:34:35", "upload_time_iso_8601": "2020-07-23T00:34:35.936160Z", "url": "https://files.pythonhosted.org/packages/52/b0/767940782a7ce52b8ff83d425c7e79abc95755cf04397773441a475747ab/awkward1-0.2.26-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ff385623299b0d68444ca5b277a53358", "sha256": "6ea816d88b11f0f1909d8cabf7a12ccb5a9c081f3ba0bea0d207ce2666396aad" }, "downloads": -1, "filename": "awkward1-0.2.26-cp27-cp27mu-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "ff385623299b0d68444ca5b277a53358", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8293478, "upload_time": "2020-07-23T00:34:08", "upload_time_iso_8601": "2020-07-23T00:34:08.799720Z", "url": "https://files.pythonhosted.org/packages/db/5e/7e6ee00b3154cf55905e0262a57972248f252f306c3b0b42f716e485d2a4/awkward1-0.2.26-cp27-cp27mu-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8598a3fa8946ee8dff04bb9f3debe141", "sha256": "c9cc98bc166e8ee4a2e541ba44889e97236b1f21c64da9cabf96d36f6f0a2f63" }, "downloads": -1, "filename": "awkward1-0.2.26-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "8598a3fa8946ee8dff04bb9f3debe141", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8610677, "upload_time": "2020-07-23T00:20:51", "upload_time_iso_8601": "2020-07-23T00:20:51.959934Z", "url": "https://files.pythonhosted.org/packages/b2/58/e870e80376cb2eca2d4036c3e8a9b9118616f74ab27e07f972f50b37795f/awkward1-0.2.26-cp27-cp27m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ce2cbfd3cf024a657ad519c1c1a00c6f", "sha256": "57d66c4bcaca5f86fd7746499802cf57a5af3f6539fc9d548138aa7897531a4d" }, "downloads": -1, "filename": "awkward1-0.2.26-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "ce2cbfd3cf024a657ad519c1c1a00c6f", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 11340958, "upload_time": "2020-07-23T00:21:07", "upload_time_iso_8601": "2020-07-23T00:21:07.378863Z", "url": "https://files.pythonhosted.org/packages/1d/a5/50e7032af8414d3e7a93dc9c01fb7c5b958d8491eea27ffb171114825e41/awkward1-0.2.26-cp27-cp27m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f547b2fdeadf34cfec9fc7d0f61dcacb", "sha256": "46acf72475b93508e738f8d7c69e6994999e40f528ed602f45ab0432bcbde17e" }, "downloads": -1, "filename": "awkward1-0.2.26-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "f547b2fdeadf34cfec9fc7d0f61dcacb", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8230143, "upload_time": "2020-07-23T00:36:44", "upload_time_iso_8601": "2020-07-23T00:36:44.793572Z", "url": "https://files.pythonhosted.org/packages/75/cc/fceda07c52fab2a041931ada678a517e7a9a924ab6da10dae15cd23410d5/awkward1-0.2.26-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6bd1e92e39c5d5f57106de944f9437a1", "sha256": "d5fa5a3c58f6dc6dd68a015fc19e62f1b91aefcfb88ab09265f64cc1888fa520" }, "downloads": -1, "filename": "awkward1-0.2.26-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "6bd1e92e39c5d5f57106de944f9437a1", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8026427, "upload_time": "2020-07-23T00:34:37", "upload_time_iso_8601": "2020-07-23T00:34:37.730764Z", "url": "https://files.pythonhosted.org/packages/cb/95/f0cc2cff00b4c380749204e46a30a8f703840ea2ac67e39aae34cf165a91/awkward1-0.2.26-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "577aec69970d83b0f4c86fe126ac1ce7", "sha256": "b1d2ca74b5faf6d089bf54cfa3738d3e42da1cabef54ceb363f1ed2736e797ff" }, "downloads": -1, "filename": "awkward1-0.2.26-cp35-cp35m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "577aec69970d83b0f4c86fe126ac1ce7", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8293215, "upload_time": "2020-07-23T00:34:10", "upload_time_iso_8601": "2020-07-23T00:34:10.455052Z", "url": "https://files.pythonhosted.org/packages/99/4f/ceefdd681f14b3ce3e6434e5b1efc950ee8cdf5062730e62a98f21104fc4/awkward1-0.2.26-cp35-cp35m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8e92e64b171eab2c7706deb4e24f6fe1", "sha256": "d6944bd2386e52cdbeff4c06af124c384d1a026307945ebd080d11a3aec67752" }, "downloads": -1, "filename": "awkward1-0.2.26-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "8e92e64b171eab2c7706deb4e24f6fe1", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8608731, "upload_time": "2020-07-23T00:20:05", "upload_time_iso_8601": "2020-07-23T00:20:05.684809Z", "url": "https://files.pythonhosted.org/packages/cb/63/0d04d79daaa54e11f448277aeea227d5d19b823ba5bd3002a4b6b2c46124/awkward1-0.2.26-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e83c31d750f0cabb97eb063065b34d5d", "sha256": "ff2b45d9f814ce4f1994925da4b9921f4262b79768732986198bc64ecd5bdc0d" }, "downloads": -1, "filename": "awkward1-0.2.26-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "e83c31d750f0cabb97eb063065b34d5d", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 11340113, "upload_time": "2020-07-23T00:26:37", "upload_time_iso_8601": "2020-07-23T00:26:37.088932Z", "url": "https://files.pythonhosted.org/packages/b0/ac/13c2d07a072756fdc6db2900ce8ec9bf60ccf2478c941b6ba31693f718a7/awkward1-0.2.26-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8a819e5d273b79fc5aaaee0abd865689", "sha256": "a33c81d4d085a1439b886df02569794d26b1a28bae823a244c82be624650c895" }, "downloads": -1, "filename": "awkward1-0.2.26-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "8a819e5d273b79fc5aaaee0abd865689", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8206977, "upload_time": "2020-07-23T00:15:18", "upload_time_iso_8601": "2020-07-23T00:15:18.384272Z", "url": "https://files.pythonhosted.org/packages/9e/3e/0257d335eac52f7e1dacb192528548e47eb9fe23fd6c3801561e2ed4cb09/awkward1-0.2.26-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5d6ee74048e67bbf2a48b94c59655fa3", "sha256": "3dbbf479d4b768a6ccd3df6cf33bd9a35ae227d70db2fca3e2b88fb63e32d975" }, "downloads": -1, "filename": "awkward1-0.2.26-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "5d6ee74048e67bbf2a48b94c59655fa3", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8230135, "upload_time": "2020-07-23T00:36:46", "upload_time_iso_8601": "2020-07-23T00:36:46.831138Z", "url": "https://files.pythonhosted.org/packages/5a/39/ab7c73327efcc0e1cdf473a7352a42001f81b8ec4cbf94c84c4d8a7e5383/awkward1-0.2.26-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e7f1fde835d4683e9b99cf64e98d675f", "sha256": "d9aa9a14b33e95fcdb2853165e5d472e97000bd14ea4e2b6c82afd5bb589a5c4" }, "downloads": -1, "filename": "awkward1-0.2.26-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "e7f1fde835d4683e9b99cf64e98d675f", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8026445, "upload_time": "2020-07-23T00:34:39", "upload_time_iso_8601": "2020-07-23T00:34:39.331703Z", "url": "https://files.pythonhosted.org/packages/73/91/aaba92d76022ad5bf7550825df69e6ee4b79128ae7073b6f2b15cbd3157a/awkward1-0.2.26-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "139fb2b9155b315d4cdc968c80cd88ae", "sha256": "bb0f2ee248284e2ed9e7cd8d379198534c3371920464cd0c0ff8de7cee43a37c" }, "downloads": -1, "filename": "awkward1-0.2.26-cp36-cp36m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "139fb2b9155b315d4cdc968c80cd88ae", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8293222, "upload_time": "2020-07-23T00:34:12", "upload_time_iso_8601": "2020-07-23T00:34:12.354931Z", "url": "https://files.pythonhosted.org/packages/e3/f7/2f97cdbea3ef5cffb8a3bb1ce49fe92dff9c0da114b8fe1e418a7a4bc75e/awkward1-0.2.26-cp36-cp36m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3268342331b16744cda9f678e68e9670", "sha256": "1f32c46f66128fae48f626b8ed9c8dd273b5100abeeb677928658b86bea5192e" }, "downloads": -1, "filename": "awkward1-0.2.26-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "3268342331b16744cda9f678e68e9670", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8608539, "upload_time": "2020-07-23T00:27:42", "upload_time_iso_8601": "2020-07-23T00:27:42.454654Z", "url": "https://files.pythonhosted.org/packages/ae/e1/630992f2e5b5c99515db3c7ea7fb6add5cf6a0c7565f3f59bc2e64d853c1/awkward1-0.2.26-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8dd1c48a112a879300369c3d1697675d", "sha256": "7b1c0f3746de623523aa0a39fb8b8cc81748bbbbdc1fd8eede77b634a78cb48b" }, "downloads": -1, "filename": "awkward1-0.2.26-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "8dd1c48a112a879300369c3d1697675d", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 11339921, "upload_time": "2020-07-23T00:32:40", "upload_time_iso_8601": "2020-07-23T00:32:40.243938Z", "url": "https://files.pythonhosted.org/packages/c3/a0/8943d288e91152de6454313847be45c476916419bad827c5e4b9edbb3494/awkward1-0.2.26-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d58c8976a81d8224caa808ec867d1893", "sha256": "2993ecc086e5fb08a6a694fc8297481dc97d7fbc7d990a8e0f6dae779ed10162" }, "downloads": -1, "filename": "awkward1-0.2.26-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "d58c8976a81d8224caa808ec867d1893", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8206943, "upload_time": "2020-07-23T00:17:07", "upload_time_iso_8601": "2020-07-23T00:17:07.822216Z", "url": "https://files.pythonhosted.org/packages/3b/e7/2c34a6e855e9de68b9106d64cbd93094b974adff61f1293a8cd3f419001d/awkward1-0.2.26-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "72c53176bef235a0a8275f65707b0a55", "sha256": "e299402e37276626acc32b25118314f79c4d9ac9cfb656bf8c48f9657c687723" }, "downloads": -1, "filename": "awkward1-0.2.26-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "72c53176bef235a0a8275f65707b0a55", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8218701, "upload_time": "2020-07-23T00:36:48", "upload_time_iso_8601": "2020-07-23T00:36:48.694101Z", "url": "https://files.pythonhosted.org/packages/3b/21/68b465c7b4480e9747da8c66dfef49acc8b4afc1e7b5dea95668741cfe5b/awkward1-0.2.26-cp37-cp37m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "15b956de4b4f16b76a44804d9ad20862", "sha256": "20f153a0c8764d3690212170723253ba9c2bbd721f9b4bb4dd8f9c63194b1d2d" }, "downloads": -1, "filename": "awkward1-0.2.26-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "15b956de4b4f16b76a44804d9ad20862", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8027932, "upload_time": "2020-07-23T00:34:41", "upload_time_iso_8601": "2020-07-23T00:34:41.332776Z", "url": "https://files.pythonhosted.org/packages/a6/f1/aad7497ca0d4217c751cdd50bbe59a547e591e79526b46390854a4c9af9a/awkward1-0.2.26-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bb3ddb0f22bed15e03fd00b0f8db62f9", "sha256": "dcd33adaa4743ee8db7757b7edb079b2f8451bff7013429dc708b7c0e0e0b1c8" }, "downloads": -1, "filename": "awkward1-0.2.26-cp37-cp37m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "bb3ddb0f22bed15e03fd00b0f8db62f9", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8296606, "upload_time": "2020-07-23T00:34:14", "upload_time_iso_8601": "2020-07-23T00:34:14.198778Z", "url": "https://files.pythonhosted.org/packages/0b/13/99a587b0108c2deb362e220fc615dfb5ee3ae680e8aba843ba8382082be7/awkward1-0.2.26-cp37-cp37m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7d1960b76074a6709a091ec3bcb0b5f8", "sha256": "a9299e904997c79b8d884994a9c4502b64eb65607c5a5640555b7ea5d3316cd6" }, "downloads": -1, "filename": "awkward1-0.2.26-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "7d1960b76074a6709a091ec3bcb0b5f8", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8608445, "upload_time": "2020-07-23T00:24:28", "upload_time_iso_8601": "2020-07-23T00:24:28.281533Z", "url": "https://files.pythonhosted.org/packages/3f/8d/ddf9fa8f0321b2b7ed5233b49961ab96365a63818b714b3511b94e95c15b/awkward1-0.2.26-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "275ef8512b87efe69e8cc46c5445e8d3", "sha256": "77e15fdce853b0c3819e51ce5c893c5d9380d0a179487613e8462384baa23a68" }, "downloads": -1, "filename": "awkward1-0.2.26-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "275ef8512b87efe69e8cc46c5445e8d3", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 11339263, "upload_time": "2020-07-23T00:32:46", "upload_time_iso_8601": "2020-07-23T00:32:46.189667Z", "url": "https://files.pythonhosted.org/packages/cf/07/edce60589ed8399fad5964702e51b37dd041b5d6a4278523ff4d0eb3df6e/awkward1-0.2.26-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c88fd8c63924a484c2ba5e46e84f1ff5", "sha256": "c60af3dc55a11bb8e787920cd5967b29edf138e65f4acebfcf9eecea59d797e9" }, "downloads": -1, "filename": "awkward1-0.2.26-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "c88fd8c63924a484c2ba5e46e84f1ff5", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8292739, "upload_time": "2020-07-23T00:15:16", "upload_time_iso_8601": "2020-07-23T00:15:16.705647Z", "url": "https://files.pythonhosted.org/packages/54/d3/f69104d451be2c2308cb890f7b3e2166be5af599026f6e1aa157732c1171/awkward1-0.2.26-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d514a26c5ad33e5ec392f21ed1cd7adb", "sha256": "adf0ff28c0d068e16f2862efcb92e2eb5028945cc4383eb7fe9ec0969ce48e59" }, "downloads": -1, "filename": "awkward1-0.2.26-cp38-cp38-manylinux1_i686.whl", "has_sig": false, "md5_digest": "d514a26c5ad33e5ec392f21ed1cd7adb", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8167537, "upload_time": "2020-07-23T00:36:50", "upload_time_iso_8601": "2020-07-23T00:36:50.604604Z", "url": "https://files.pythonhosted.org/packages/fa/2b/35e6db8144b38a3763ef767a5455a93a58f8583c64607d13c089c7d268d1/awkward1-0.2.26-cp38-cp38-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8b102aa4f30b45d05db14bddf8216425", "sha256": "575ee770bb5be903f9bd08babfe4c35c6af7c4223b41274c0ef238cb70a14689" }, "downloads": -1, "filename": "awkward1-0.2.26-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "8b102aa4f30b45d05db14bddf8216425", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7965540, "upload_time": "2020-07-23T00:34:42", "upload_time_iso_8601": "2020-07-23T00:34:42.911822Z", "url": "https://files.pythonhosted.org/packages/f0/ad/07cb76f24462cc663afcd2abe0f92ee65e4d9c1115a0370b48772b897f12/awkward1-0.2.26-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e7c24e88109ed1dfd85a29bec7faf8cd", "sha256": "3dee4f3fd23b5fa6ec6bb01cc3094b2d86c5c0a018be9f68dee38af789f808f3" }, "downloads": -1, "filename": "awkward1-0.2.26-cp38-cp38-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "e7c24e88109ed1dfd85a29bec7faf8cd", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8294964, "upload_time": "2020-07-23T00:34:16", "upload_time_iso_8601": "2020-07-23T00:34:16.084014Z", "url": "https://files.pythonhosted.org/packages/52/58/2cf839a8842728e94ad8486a95f553c7cef18275e5d0ebc30099d4871d28/awkward1-0.2.26-cp38-cp38-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "88528e723b43b667edd044bbfc5c86e2", "sha256": "790e61b44488ebe61cce9d0e607bad50bd60759006ad7c5d141a965edc0530b5" }, "downloads": -1, "filename": "awkward1-0.2.26-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "88528e723b43b667edd044bbfc5c86e2", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8615144, "upload_time": "2020-07-23T00:31:21", "upload_time_iso_8601": "2020-07-23T00:31:21.677256Z", "url": "https://files.pythonhosted.org/packages/0e/0e/4f80db9cf2d4cb855928398ecec91d23db9e83c4148d201d7c2511519069/awkward1-0.2.26-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ceca106a821fff91799a8692b5907184", "sha256": "13b289e7e119508ec46be817d8f3f32c27c843d1afd26ea7cb5c1c6e8d339e6b" }, "downloads": -1, "filename": "awkward1-0.2.26-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "ceca106a821fff91799a8692b5907184", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 11346844, "upload_time": "2020-07-23T00:34:25", "upload_time_iso_8601": "2020-07-23T00:34:25.184970Z", "url": "https://files.pythonhosted.org/packages/6b/2f/588ebf86ef93470591970be7608f9d1f3f9718bf89371a5be9d24d9fa501/awkward1-0.2.26-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c44d5645e8908174f7f2fa1adeb3c25e", "sha256": "55522766b4977841dd3d05626442feb9b8ccc8dc61c99083a69b70f4007d7477" }, "downloads": -1, "filename": "awkward1-0.2.26-cp39-cp39-manylinux1_i686.whl", "has_sig": false, "md5_digest": "c44d5645e8908174f7f2fa1adeb3c25e", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8167326, "upload_time": "2020-07-23T00:36:52", "upload_time_iso_8601": "2020-07-23T00:36:52.137489Z", "url": "https://files.pythonhosted.org/packages/60/d1/17c9e917a27a9263d2f25f02ab54ddf01bac334e8b0e8647a53f27d223e2/awkward1-0.2.26-cp39-cp39-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "81266bca38d30429ee770d4f491cc05d", "sha256": "a21946930d0332e9350ca98511ad4ddf0cb19592e62171179d1e0d59c0a3033b" }, "downloads": -1, "filename": "awkward1-0.2.26-cp39-cp39-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "81266bca38d30429ee770d4f491cc05d", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7961628, "upload_time": "2020-07-23T00:34:44", "upload_time_iso_8601": "2020-07-23T00:34:44.501841Z", "url": "https://files.pythonhosted.org/packages/d5/7d/83ec2854ea88ab079752792679427b479aa7ffd8847fd324d4e66d7ee98a/awkward1-0.2.26-cp39-cp39-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ef45c34ab5bdb22fc09d0838da7e00ce", "sha256": "bbaf3dafde43abea4ee40af7efcded8c8aa8e83c0dd6d1f4b919a272d16f5413" }, "downloads": -1, "filename": "awkward1-0.2.26-cp39-cp39-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "ef45c34ab5bdb22fc09d0838da7e00ce", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8292876, "upload_time": "2020-07-23T00:34:17", "upload_time_iso_8601": "2020-07-23T00:34:17.958777Z", "url": "https://files.pythonhosted.org/packages/72/cb/7453f5f6c06901a52fb531a5f9b2f523352e76131623a7d0c1a98f07de63/awkward1-0.2.26-cp39-cp39-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "06d496d42511e771f3c9c6842f38a288", "sha256": "284afbdc37d628823d3aa549277744f548f713a4cca9aa3c006dfa8a4554df39" }, "downloads": -1, "filename": "awkward1-0.2.26.tar.gz", "has_sig": false, "md5_digest": "06d496d42511e771f3c9c6842f38a288", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 634141, "upload_time": "2020-07-23T00:34:19", "upload_time_iso_8601": "2020-07-23T00:34:19.578490Z", "url": "https://files.pythonhosted.org/packages/63/8b/05375c884cb136361d987260d93b57651addaf504d0ac75f70e2a8179f30/awkward1-0.2.26.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.27": [ { "comment_text": "", "digests": { "md5": "2a1a065cd25277c451a23dd84dfcb2b8", "sha256": "4c13e848d5beb927b039b6084a5901f33187f9738df015078a6bcee93341633f" }, "downloads": -1, "filename": "awkward1-0.2.27-cp27-cp27m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "2a1a065cd25277c451a23dd84dfcb2b8", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8234204, "upload_time": "2020-07-23T16:50:17", "upload_time_iso_8601": "2020-07-23T16:50:17.463520Z", "url": "https://files.pythonhosted.org/packages/a5/29/f0f9ef90604eb525c8fa3d9faaf0c14e34add7210c40bbe14f8f447949ad/awkward1-0.2.27-cp27-cp27m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "df68b4f85b0e5157a790a607ba3a985a", "sha256": "4b30ec75da88e92e71c9864ad886ab06756641c5babc8aaec94add159043c20a" }, "downloads": -1, "filename": "awkward1-0.2.27-cp27-cp27m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "df68b4f85b0e5157a790a607ba3a985a", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8237877, "upload_time": "2020-07-23T17:11:46", "upload_time_iso_8601": "2020-07-23T17:11:46.808600Z", "url": "https://files.pythonhosted.org/packages/d9/3e/bbc759513e631f043251b3131bb4230fd56995f1bad1ed828fd09273bf59/awkward1-0.2.27-cp27-cp27m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f9eb6c71378192e173c57dc9895befc8", "sha256": "6c36575c031b17be0fe9294f4bc4848cc3f60a30d0c8acf205c768651ac34a1f" }, "downloads": -1, "filename": "awkward1-0.2.27-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "f9eb6c71378192e173c57dc9895befc8", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8050408, "upload_time": "2020-07-23T17:06:33", "upload_time_iso_8601": "2020-07-23T17:06:33.761559Z", "url": "https://files.pythonhosted.org/packages/73/47/cd518be7624168e847f946836ad87366401b0afc9c3f99cd87e4bdc913a6/awkward1-0.2.27-cp27-cp27m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b9aa12473e05febd52245141709f7fb4", "sha256": "a470a48b7279641d30af5996d1ae47e5f84b86e1195adb8976b4a59c80b04090" }, "downloads": -1, "filename": "awkward1-0.2.27-cp27-cp27m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "b9aa12473e05febd52245141709f7fb4", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8325584, "upload_time": "2020-07-23T17:15:25", "upload_time_iso_8601": "2020-07-23T17:15:25.870784Z", "url": "https://files.pythonhosted.org/packages/7f/8e/079cd24bbe0182c69ceb3c735093e2126521ee26a302b83080c8e51046b9/awkward1-0.2.27-cp27-cp27m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "af99e79b83a27205afd68ba047bd3fe9", "sha256": "1c50d83517b45d877840f687faa9f21692bea64de2724bad8fbf71af4c796846" }, "downloads": -1, "filename": "awkward1-0.2.27-cp27-cp27mu-manylinux1_i686.whl", "has_sig": false, "md5_digest": "af99e79b83a27205afd68ba047bd3fe9", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8237822, "upload_time": "2020-07-23T17:11:48", "upload_time_iso_8601": "2020-07-23T17:11:48.844334Z", "url": "https://files.pythonhosted.org/packages/4c/2a/e04b21d215c84be89713122ad73ef32a2939c724cda55a40c2c13feab262/awkward1-0.2.27-cp27-cp27mu-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0d3570c9dd3f2ffea0fa4067006728a7", "sha256": "0fcca1b6434e702b22900f36a296c7aa6f8f0dec8f1a777ec5809c660d04a4a3" }, "downloads": -1, "filename": "awkward1-0.2.27-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "0d3570c9dd3f2ffea0fa4067006728a7", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8050372, "upload_time": "2020-07-23T17:06:36", "upload_time_iso_8601": "2020-07-23T17:06:36.019149Z", "url": "https://files.pythonhosted.org/packages/38/da/9caac84b70c1204437edd5f24470d6e8d2f7604ea50ccf2b01a9ce7fa69a/awkward1-0.2.27-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a39a01d33e2475a8ec94004f79684650", "sha256": "4327e2193da12eaf246df12a7ac2b70dbf5d91afc39e9f835814f0b5b78ce7ef" }, "downloads": -1, "filename": "awkward1-0.2.27-cp27-cp27mu-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "a39a01d33e2475a8ec94004f79684650", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8325627, "upload_time": "2020-07-23T17:15:28", "upload_time_iso_8601": "2020-07-23T17:15:28.261337Z", "url": "https://files.pythonhosted.org/packages/a6/ce/205a2ba6722c83f14d8190c2a821fa05ce6e8e5d79d9c4001903e4870930/awkward1-0.2.27-cp27-cp27mu-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e659433fcf97b9339a5baade306df3b7", "sha256": "24e47204769e280357b86b3a131d5e6c1edf2ef1c2025ab7042bcaff78feabed" }, "downloads": -1, "filename": "awkward1-0.2.27-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "e659433fcf97b9339a5baade306df3b7", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8675723, "upload_time": "2020-07-23T17:02:12", "upload_time_iso_8601": "2020-07-23T17:02:12.483931Z", "url": "https://files.pythonhosted.org/packages/0f/23/98fe22b7894d641c3471eb944dd0a4f157ed3740eafdf2c12b64a7f6fadf/awkward1-0.2.27-cp27-cp27m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d24815d975d172b9fdf9316f4a03bb09", "sha256": "04fffb2d51053d605e741c089415023c8eb429e04668ff297bb91e2ec91139b1" }, "downloads": -1, "filename": "awkward1-0.2.27-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "d24815d975d172b9fdf9316f4a03bb09", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 11417549, "upload_time": "2020-07-23T17:03:19", "upload_time_iso_8601": "2020-07-23T17:03:19.695708Z", "url": "https://files.pythonhosted.org/packages/d3/3d/ce71bc9293beb40c2dbe4da250c94217b205fce3ac9eb23b18e17e2edf25/awkward1-0.2.27-cp27-cp27m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "30e5b0d85e001563bbf711d2df71f433", "sha256": "d9b6dc26145350f7a8e80b767759e88fc2c7e7708cd55289357af5d47fdd2d7f" }, "downloads": -1, "filename": "awkward1-0.2.27-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "30e5b0d85e001563bbf711d2df71f433", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8243227, "upload_time": "2020-07-23T17:11:51", "upload_time_iso_8601": "2020-07-23T17:11:51.552189Z", "url": "https://files.pythonhosted.org/packages/85/49/dd9e5fbffa904aa5190d37b23ffc35eb061c6e050ac8c60e71820ee3610f/awkward1-0.2.27-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e46aa50ee15ce6281148f681e0bbc54e", "sha256": "c95ff0b86df77ac3a623dd6014d19dde81e05ffbcd24f8f888582c23326de11b" }, "downloads": -1, "filename": "awkward1-0.2.27-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "e46aa50ee15ce6281148f681e0bbc54e", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8058036, "upload_time": "2020-07-23T17:06:37", "upload_time_iso_8601": "2020-07-23T17:06:37.810618Z", "url": "https://files.pythonhosted.org/packages/78/e2/447a22e4a4903c8d7963fb321b94463b697079dab941131aef5c0625370f/awkward1-0.2.27-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0c317f2f7c3b8836b5279bc3d005a3c5", "sha256": "11a1311f2d07db1da68d8f34647b4a86f60f0262028655ed247dcf4126eb9a03" }, "downloads": -1, "filename": "awkward1-0.2.27-cp35-cp35m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "0c317f2f7c3b8836b5279bc3d005a3c5", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8323090, "upload_time": "2020-07-23T17:15:30", "upload_time_iso_8601": "2020-07-23T17:15:30.616486Z", "url": "https://files.pythonhosted.org/packages/36/ce/96661950c8d1709c707d63359f1fb3d0ee742a9ae30ad803d1d33503851c/awkward1-0.2.27-cp35-cp35m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0c31ef5a11b27721160c07849ec02dd3", "sha256": "ab9fd64c974bb8a08548bce55e791eb8543dada1164fd02c106bf05d0cdcdefc" }, "downloads": -1, "filename": "awkward1-0.2.27-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "0c31ef5a11b27721160c07849ec02dd3", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8673203, "upload_time": "2020-07-23T16:58:21", "upload_time_iso_8601": "2020-07-23T16:58:21.410364Z", "url": "https://files.pythonhosted.org/packages/9b/66/6c8dec0d34fd87e28333f8c40a2de1de5843d27826f814f8b921fa82e2f2/awkward1-0.2.27-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dbdaf0cefd143b13d7e7cbc5245f9b4c", "sha256": "0bc683d19f5695e1ff8dc0e12e69e7a395dc4fe1eca03d7e03cbb5fdaf09b3a6" }, "downloads": -1, "filename": "awkward1-0.2.27-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "dbdaf0cefd143b13d7e7cbc5245f9b4c", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 11415517, "upload_time": "2020-07-23T16:59:09", "upload_time_iso_8601": "2020-07-23T16:59:09.454551Z", "url": "https://files.pythonhosted.org/packages/e7/9e/efd1a873a2307e7e22934b2e5db1841e70ed35093742cca22e49d24fef7c/awkward1-0.2.27-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ab04abcda203bf2f2811990bbbb479fd", "sha256": "8a05df9563014fc9bd113faed9b998b398ea8fdd74603a30fcefa863bb2dc0f4" }, "downloads": -1, "filename": "awkward1-0.2.27-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "ab04abcda203bf2f2811990bbbb479fd", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8233764, "upload_time": "2020-07-23T16:50:12", "upload_time_iso_8601": "2020-07-23T16:50:12.368053Z", "url": "https://files.pythonhosted.org/packages/71/ec/e810565df0aab114c2a6571970b5fd071b3e82acd1c624c405fbf075ec2c/awkward1-0.2.27-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4de339cc21d831db0a1f49ed899ab204", "sha256": "da9413859fd5ee231fa225c6a218c7203a8a0855ee27939f5f7f27af907dd66f" }, "downloads": -1, "filename": "awkward1-0.2.27-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "4de339cc21d831db0a1f49ed899ab204", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8243208, "upload_time": "2020-07-23T17:11:53", "upload_time_iso_8601": "2020-07-23T17:11:53.678867Z", "url": "https://files.pythonhosted.org/packages/4a/35/e5ee9ac0521d47ae761d84b4899587a401c74e508980d664675acb45b4cd/awkward1-0.2.27-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "94ec9db70264b6b248c2c5802ef536a4", "sha256": "1961555d9a4beac8a7e48c929a9a017dc399ea191ef0f4396cd85d32364709c2" }, "downloads": -1, "filename": "awkward1-0.2.27-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "94ec9db70264b6b248c2c5802ef536a4", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8058033, "upload_time": "2020-07-23T17:06:39", "upload_time_iso_8601": "2020-07-23T17:06:39.757887Z", "url": "https://files.pythonhosted.org/packages/cd/14/341dbce0d419de60597a81fbf8c1202405421ac41e77a89dc6fb8e5e7836/awkward1-0.2.27-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4ed7518351f95bc4e366ca1328118ed3", "sha256": "e63cd063f74ead1f5ccf13a51dea7f1ed820f16a9f5d1d1ff9c7bf441aaac55d" }, "downloads": -1, "filename": "awkward1-0.2.27-cp36-cp36m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "4ed7518351f95bc4e366ca1328118ed3", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8323072, "upload_time": "2020-07-23T17:15:32", "upload_time_iso_8601": "2020-07-23T17:15:32.750785Z", "url": "https://files.pythonhosted.org/packages/49/e2/581187958252c1dc6d5394446f4480d1f3aa1583d9c5c4a0913e5332a625/awkward1-0.2.27-cp36-cp36m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b69409f3deb8c4a22a7e595143102a36", "sha256": "0c0b9709cc6d293dd46cff5667ca95dd07a8271dbefadf90afd91762c0301bbb" }, "downloads": -1, "filename": "awkward1-0.2.27-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "b69409f3deb8c4a22a7e595143102a36", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8673100, "upload_time": "2020-07-23T17:03:55", "upload_time_iso_8601": "2020-07-23T17:03:55.126239Z", "url": "https://files.pythonhosted.org/packages/36/f6/cb82884f7d1a0acbfee94ac52fb0f4a3f400de55d3e055bd4fa0034daf71/awkward1-0.2.27-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4edd7e08f314ee96b980f93dc687f2cc", "sha256": "67c8326a6e70fb988ee613f9ca0146357e08c7012512f1d89aa19efa65f16e83" }, "downloads": -1, "filename": "awkward1-0.2.27-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "4edd7e08f314ee96b980f93dc687f2cc", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 11415553, "upload_time": "2020-07-23T17:04:44", "upload_time_iso_8601": "2020-07-23T17:04:44.766093Z", "url": "https://files.pythonhosted.org/packages/a4/5d/60a103feb87398101995e59a0da6705a0403023e0ed9593123885cec5377/awkward1-0.2.27-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1449d90ebb734e06b35356ddc77dfe2f", "sha256": "1fbe3348dfe93783f8dc13dc04327f333474ac5cf6aeafd5a547dd05b021e744" }, "downloads": -1, "filename": "awkward1-0.2.27-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "1449d90ebb734e06b35356ddc77dfe2f", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8233825, "upload_time": "2020-07-23T16:50:26", "upload_time_iso_8601": "2020-07-23T16:50:26.644514Z", "url": "https://files.pythonhosted.org/packages/77/ca/1dad7f4f8560a220099dd506318c1e9c16b91ae2b77b874515ee7bd744e3/awkward1-0.2.27-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "31f15968930a9e1f0358fb1a9c139c15", "sha256": "eab8a42d9e88af532c2f05fedf485d90da4ed3cac052eddfbe3d69ea7aab568b" }, "downloads": -1, "filename": "awkward1-0.2.27-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "31f15968930a9e1f0358fb1a9c139c15", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8247552, "upload_time": "2020-07-23T17:11:55", "upload_time_iso_8601": "2020-07-23T17:11:55.470814Z", "url": "https://files.pythonhosted.org/packages/c7/b3/db8e18718a50236c78c7809d951ceeecf268a3bbb0ac0688f8da3af562c3/awkward1-0.2.27-cp37-cp37m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "434b020cc50a58e1053cd358ead34983", "sha256": "e1ee49dc940ce114cd0bce76c1adc33b7f7179c6d8bbafc87128516d17c4b57e" }, "downloads": -1, "filename": "awkward1-0.2.27-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "434b020cc50a58e1053cd358ead34983", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8057222, "upload_time": "2020-07-23T17:06:41", "upload_time_iso_8601": "2020-07-23T17:06:41.566684Z", "url": "https://files.pythonhosted.org/packages/fc/2e/1bcdebef746865558e3a963c663054e0d1310643145cea5f6740137ef81b/awkward1-0.2.27-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dd1cf8d2d8c629f86fde33f237c66c12", "sha256": "7b9c175ec606b671af7d542ac1f64adfd35c07d2de00637df0d557457aa72a16" }, "downloads": -1, "filename": "awkward1-0.2.27-cp37-cp37m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "dd1cf8d2d8c629f86fde33f237c66c12", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8322523, "upload_time": "2020-07-23T17:15:34", "upload_time_iso_8601": "2020-07-23T17:15:34.954783Z", "url": "https://files.pythonhosted.org/packages/c4/8c/867383a5a15e1b9959b85c2f8aa42fd1af698dbf9e303903a5df093957ac/awkward1-0.2.27-cp37-cp37m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "17a8abc36807f8018af7da6d0d4c0c66", "sha256": "132d9552814d677d44e245db03cce697d279ef41d2d8f65b0f84889af3d15568" }, "downloads": -1, "filename": "awkward1-0.2.27-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "17a8abc36807f8018af7da6d0d4c0c66", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8672810, "upload_time": "2020-07-23T17:04:10", "upload_time_iso_8601": "2020-07-23T17:04:10.118835Z", "url": "https://files.pythonhosted.org/packages/ea/ac/45cac05b4e1134d460904052ed3d2f3c5ff2317e4ac9d8267f63bbfa2174/awkward1-0.2.27-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "76a39fa8f6e4042138f4d0d4da669373", "sha256": "4b5801f4e534963ce9a755d38adffe7cd5a2e3a50bb5dd28569e1a045ef677cb" }, "downloads": -1, "filename": "awkward1-0.2.27-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "76a39fa8f6e4042138f4d0d4da669373", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 11415462, "upload_time": "2020-07-23T17:09:24", "upload_time_iso_8601": "2020-07-23T17:09:24.179523Z", "url": "https://files.pythonhosted.org/packages/e3/25/2f006bc0a0ecd3dc4b3d7cb0e30c95512b0b43f15767d2ab2ef95989e114/awkward1-0.2.27-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "86253d53f43019b30518950acafd4387", "sha256": "2e01117b48ad653155a7fdc5ab19b5100c5018929ff1c6a181c726c2761e6d51" }, "downloads": -1, "filename": "awkward1-0.2.27-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "86253d53f43019b30518950acafd4387", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8320417, "upload_time": "2020-07-23T16:50:07", "upload_time_iso_8601": "2020-07-23T16:50:07.416413Z", "url": "https://files.pythonhosted.org/packages/b6/31/d2ff960a0a6d0e890620c24ed01172704633d4cd1389fd33c93cac8dff39/awkward1-0.2.27-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "79d8be4d0d75cfbea55fb97b955dff41", "sha256": "22642d51e1359205fff5cf1db9f325e0031579f1223af867507205d6fe15f294" }, "downloads": -1, "filename": "awkward1-0.2.27-cp38-cp38-manylinux1_i686.whl", "has_sig": false, "md5_digest": "79d8be4d0d75cfbea55fb97b955dff41", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8196783, "upload_time": "2020-07-23T17:11:57", "upload_time_iso_8601": "2020-07-23T17:11:57.669738Z", "url": "https://files.pythonhosted.org/packages/70/2b/f2be038a79a319918d80a7f155c0090e4b2d593072898420c0ebbe155a9e/awkward1-0.2.27-cp38-cp38-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "78ec036cc956c922242cdcb78435e09d", "sha256": "ddcb810fd0b75d2b64e6962b2560279ccb6e269ef8a87f25af43b51d6027729a" }, "downloads": -1, "filename": "awkward1-0.2.27-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "78ec036cc956c922242cdcb78435e09d", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7998474, "upload_time": "2020-07-23T17:06:43", "upload_time_iso_8601": "2020-07-23T17:06:43.686946Z", "url": "https://files.pythonhosted.org/packages/0f/fa/2638561dfb34a0b2baf7a35bad0b81b7a651ae02c8aa11a3eb23c369f131/awkward1-0.2.27-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f90c4271020ca3d9a32f0e7e46549ca5", "sha256": "e5fe99d303415d7b49c2c9611e943a9a4b337b8608cb7a504d20b2c65f18d22a" }, "downloads": -1, "filename": "awkward1-0.2.27-cp38-cp38-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "f90c4271020ca3d9a32f0e7e46549ca5", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8315562, "upload_time": "2020-07-23T17:15:36", "upload_time_iso_8601": "2020-07-23T17:15:36.971468Z", "url": "https://files.pythonhosted.org/packages/ba/1f/6fcc6a77d9301f5862aba0c9d53f49289eb03b64c708bc85f35e38b6e295/awkward1-0.2.27-cp38-cp38-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c4c5dca01e24f7e6d884fff8070a8e84", "sha256": "f5d83432e44292eff483cb16ba29bf40a9186df89bb93b1e1dd63ded4fe76f9d" }, "downloads": -1, "filename": "awkward1-0.2.27-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "c4c5dca01e24f7e6d884fff8070a8e84", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8677282, "upload_time": "2020-07-23T17:14:00", "upload_time_iso_8601": "2020-07-23T17:14:00.727339Z", "url": "https://files.pythonhosted.org/packages/7c/03/2d50a4e90f9711dc7cb616a7cf7514ef498a54bb62871fadf902e521413b/awkward1-0.2.27-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7bce9397a7d630be2c77a4253fb78d12", "sha256": "4449131f6f5c2f6a68191ef9cd4047a6358ff60dae15a4d27928b6bf0418c651" }, "downloads": -1, "filename": "awkward1-0.2.27-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "7bce9397a7d630be2c77a4253fb78d12", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 11421594, "upload_time": "2020-07-23T17:12:24", "upload_time_iso_8601": "2020-07-23T17:12:24.907696Z", "url": "https://files.pythonhosted.org/packages/14/f4/4de1941487ee21aa7c325ae701fe480c0379d8334d20dcf9c39c0b12951f/awkward1-0.2.27-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6fff1f104e2c781991785296efa6d444", "sha256": "8e40803acbe627cc7a24637fb2aaf20dc10b4d4fdd6ea3dd769b689c05b601e6" }, "downloads": -1, "filename": "awkward1-0.2.27-cp39-cp39-manylinux1_i686.whl", "has_sig": false, "md5_digest": "6fff1f104e2c781991785296efa6d444", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8200370, "upload_time": "2020-07-23T17:11:59", "upload_time_iso_8601": "2020-07-23T17:11:59.571885Z", "url": "https://files.pythonhosted.org/packages/81/b0/ea978e7acd8ec30729d19da34c0b81176f8ca74ca870c7dae6f6a705e766/awkward1-0.2.27-cp39-cp39-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "166ce51f3a587030b276164a8ab5f1de", "sha256": "6574b88f7b186fcb43e7eda56ebbb23dcfb91a18f8a439d28ab8f9bbfee8f7ff" }, "downloads": -1, "filename": "awkward1-0.2.27-cp39-cp39-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "166ce51f3a587030b276164a8ab5f1de", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7999297, "upload_time": "2020-07-23T17:06:46", "upload_time_iso_8601": "2020-07-23T17:06:46.290063Z", "url": "https://files.pythonhosted.org/packages/96/4c/c76703aadd07d3db19c8dce93c020c4d898e374174db1b8add65430cf396/awkward1-0.2.27-cp39-cp39-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "63e29e84e44b153468add7225556ad2e", "sha256": "9ae962ff05994680e27f1a84b3a7c7a6d0877c8bfd13282b60342eb1fbb7fc3b" }, "downloads": -1, "filename": "awkward1-0.2.27-cp39-cp39-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "63e29e84e44b153468add7225556ad2e", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8321449, "upload_time": "2020-07-23T17:15:38", "upload_time_iso_8601": "2020-07-23T17:15:38.904691Z", "url": "https://files.pythonhosted.org/packages/a1/fb/dd0577886f7c3ebf7383beccaf086bcf1cc4c44c14e03237e07fe2082968/awkward1-0.2.27-cp39-cp39-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f2055f9b76a5323fc4e1c7d6c7b26a75", "sha256": "c868437aabb2e95efbc522c43d47cac42e1c61904c7ddbebf2f41c6b63bb9c6f" }, "downloads": -1, "filename": "awkward1-0.2.27.tar.gz", "has_sig": false, "md5_digest": "f2055f9b76a5323fc4e1c7d6c7b26a75", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 635247, "upload_time": "2020-07-23T17:15:40", "upload_time_iso_8601": "2020-07-23T17:15:40.590928Z", "url": "https://files.pythonhosted.org/packages/97/e9/0361d2cd295370d9a37427662c7b28e9fb5364212fb2d185187d5a286a5c/awkward1-0.2.27.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.28": [ { "comment_text": "", "digests": { "md5": "69f15c7704a3156eff743b95e1c64f15", "sha256": "5644b0805f9d4edf0f07444bb0a1d4e53951d59d97581e24abf453cee6f513fc" }, "downloads": -1, "filename": "awkward1-0.2.28-cp27-cp27m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "69f15c7704a3156eff743b95e1c64f15", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8221346, "upload_time": "2020-08-07T15:20:52", "upload_time_iso_8601": "2020-08-07T15:20:52.774920Z", "url": "https://files.pythonhosted.org/packages/d0/8b/7a1a5dc39e3802ce96bb17b72df68f5a572f95d14d986a00e0e75eb55021/awkward1-0.2.28-cp27-cp27m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d79f0d6632fe1d09c9e6cff39da2de78", "sha256": "51c98fc41bf4dfeb01250b18214680777c36d557990ad93d0c232cbda59623d0" }, "downloads": -1, "filename": "awkward1-0.2.28-cp27-cp27m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "d79f0d6632fe1d09c9e6cff39da2de78", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8394401, "upload_time": "2020-08-07T15:42:54", "upload_time_iso_8601": "2020-08-07T15:42:54.592962Z", "url": "https://files.pythonhosted.org/packages/44/6f/1f0e9a16a1b99b7782771efaa73355d6db6236d0bb76e1d8848245383cc3/awkward1-0.2.28-cp27-cp27m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9b9a6725601900defc8033f016756d53", "sha256": "50e96a6daa80c8e5486541efbbb07978310bf3b35e77f2645fcd5973e674f3d3" }, "downloads": -1, "filename": "awkward1-0.2.28-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "9b9a6725601900defc8033f016756d53", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8308239, "upload_time": "2020-08-07T15:37:38", "upload_time_iso_8601": "2020-08-07T15:37:38.113224Z", "url": "https://files.pythonhosted.org/packages/c4/ed/2107738a7c3132d6ddac7a9616bd7850d43670b957ffe067aa451e3b2c30/awkward1-0.2.28-cp27-cp27m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fe8c71907561c3a169e80ddf69a39190", "sha256": "c4c338d1ef5eed6781f1bd22e67664f09e436f6ae6eb7026957915bdc89f2f8a" }, "downloads": -1, "filename": "awkward1-0.2.28-cp27-cp27m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "fe8c71907561c3a169e80ddf69a39190", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8570486, "upload_time": "2020-08-07T15:43:44", "upload_time_iso_8601": "2020-08-07T15:43:44.089199Z", "url": "https://files.pythonhosted.org/packages/5e/81/889729d2543df2f8fda44326939cca4ea3daafb14681018b793dda818208/awkward1-0.2.28-cp27-cp27m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6c96b8905e03bcd78f321e91a10a97a2", "sha256": "f80260cbe13fb7268d94695a05c6eaad550cf9a8fdbb548379d4df24b625ace9" }, "downloads": -1, "filename": "awkward1-0.2.28-cp27-cp27mu-manylinux1_i686.whl", "has_sig": false, "md5_digest": "6c96b8905e03bcd78f321e91a10a97a2", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8394435, "upload_time": "2020-08-07T15:42:56", "upload_time_iso_8601": "2020-08-07T15:42:56.530776Z", "url": "https://files.pythonhosted.org/packages/07/ea/a6be5b34f6d36c18821c5f1c5f2e49d95e87f3710b0a559e412205b8e479/awkward1-0.2.28-cp27-cp27mu-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "65bec47bb1c51a49b6c660b08ad2ae94", "sha256": "b30e7380139f77c8d33aec51e68a5740c74797656e97509ee0b6972842c831b6" }, "downloads": -1, "filename": "awkward1-0.2.28-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "65bec47bb1c51a49b6c660b08ad2ae94", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8308233, "upload_time": "2020-08-07T15:37:39", "upload_time_iso_8601": "2020-08-07T15:37:39.860802Z", "url": "https://files.pythonhosted.org/packages/80/d1/00baa2168ae6a723f6b23739f916b6ae92fa13eebcf0c0a4d9b85053665e/awkward1-0.2.28-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a3fe3b30d7933de8ddf3a482208d0cdd", "sha256": "9218ea960ad7be9e05ea61ec9212fc5763f0aaccee16f2ae3769dc3801fe618d" }, "downloads": -1, "filename": "awkward1-0.2.28-cp27-cp27mu-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "a3fe3b30d7933de8ddf3a482208d0cdd", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8570459, "upload_time": "2020-08-07T15:43:46", "upload_time_iso_8601": "2020-08-07T15:43:46.254690Z", "url": "https://files.pythonhosted.org/packages/4c/9a/bd33c6b968284b1339150d1a54f745b917e1b535a6ff9ff64eda9363155a/awkward1-0.2.28-cp27-cp27mu-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "67441dccc13cbc2f61f51fd5f037f11a", "sha256": "2e1bc33194e1aef3be32182ecf469ed5bd07038590a7c6d0a53c057d05fee080" }, "downloads": -1, "filename": "awkward1-0.2.28-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "67441dccc13cbc2f61f51fd5f037f11a", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8749358, "upload_time": "2020-08-07T15:24:30", "upload_time_iso_8601": "2020-08-07T15:24:30.395777Z", "url": "https://files.pythonhosted.org/packages/4a/e1/44ffe41e797533304e7b8a283696cf4661a7cb7b8ec0fe3ffd76c72e5bd6/awkward1-0.2.28-cp27-cp27m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "55f66d711a54d936796d0417f24b51f2", "sha256": "b4aa1e0357b325c54e49f2c008cc01f14b267a6ae38826974a3f471f32915f55" }, "downloads": -1, "filename": "awkward1-0.2.28-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "55f66d711a54d936796d0417f24b51f2", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 11450330, "upload_time": "2020-08-07T15:26:01", "upload_time_iso_8601": "2020-08-07T15:26:01.228220Z", "url": "https://files.pythonhosted.org/packages/c6/54/c8e261c36f48aea639f1e59017a6c5e1219f32cd4b82d79a19cce50b9f72/awkward1-0.2.28-cp27-cp27m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b4639364a16bc3eac6d13e07ce69ebf4", "sha256": "277d6b6535d558031a254c13bfe7eefd950c54a9a16fd29d6fbfbabf36ff8289" }, "downloads": -1, "filename": "awkward1-0.2.28-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "b4639364a16bc3eac6d13e07ce69ebf4", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8393827, "upload_time": "2020-08-07T15:42:58", "upload_time_iso_8601": "2020-08-07T15:42:58.257001Z", "url": "https://files.pythonhosted.org/packages/0f/70/759c00cb0e26de90a73c4bc3bdf973345e802a1ff447c204db1503cb827c/awkward1-0.2.28-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f0ea5a514abf9363636fdcc974f587d3", "sha256": "6d5667070645963e4c0f6402e1ee9edc597fc7283ab00a953d9f15f2e04977e6" }, "downloads": -1, "filename": "awkward1-0.2.28-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "f0ea5a514abf9363636fdcc974f587d3", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8310048, "upload_time": "2020-08-07T15:37:41", "upload_time_iso_8601": "2020-08-07T15:37:41.648916Z", "url": "https://files.pythonhosted.org/packages/b3/ac/363404b589938c042a63d3c1bfa7e8eca6cc649a8f1683e69a512fe14f8e/awkward1-0.2.28-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "aa6229b1a6fdd685d344cca0899f2dbc", "sha256": "dc118c4563d7d0098a3f00adc00e2338be54c00806c0db6b30b4c59f9b72e433" }, "downloads": -1, "filename": "awkward1-0.2.28-cp35-cp35m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "aa6229b1a6fdd685d344cca0899f2dbc", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8570831, "upload_time": "2020-08-07T15:43:48", "upload_time_iso_8601": "2020-08-07T15:43:48.072247Z", "url": "https://files.pythonhosted.org/packages/49/1a/0bee5a930b4d82d6f454a69f368c08d820312c0d94d2add783370d945c54/awkward1-0.2.28-cp35-cp35m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "68a67b7d90d5700a3f634111ef44b007", "sha256": "a074aebe0f03186e6fd705dab06d5e4756957fea46c92cb1b3734c67ee3a0356" }, "downloads": -1, "filename": "awkward1-0.2.28-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "68a67b7d90d5700a3f634111ef44b007", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8747438, "upload_time": "2020-08-07T15:28:27", "upload_time_iso_8601": "2020-08-07T15:28:27.352131Z", "url": "https://files.pythonhosted.org/packages/78/da/32143b66eb3d9f9dac72b5bac2faba2594e4ebd49784a70caf44131938a4/awkward1-0.2.28-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b6e1d04239ba48824da0e70f7628e9c2", "sha256": "f32f9e928a30852a9cf28a535e454c0c6d88e03cc143559329f6032e5094299b" }, "downloads": -1, "filename": "awkward1-0.2.28-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "b6e1d04239ba48824da0e70f7628e9c2", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 11447342, "upload_time": "2020-08-07T15:30:04", "upload_time_iso_8601": "2020-08-07T15:30:04.151915Z", "url": "https://files.pythonhosted.org/packages/c5/6e/749fb8305334947cb41af02ba2a7e028cf2092cbad63e097b7aa8904d494/awkward1-0.2.28-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0d6bc63d5007635d095d8017c11115f6", "sha256": "b1a75d2d70dec84b14c61cd8ea5545c08ade80eb6cd54efd6cb173237e7c3d3a" }, "downloads": -1, "filename": "awkward1-0.2.28-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "0d6bc63d5007635d095d8017c11115f6", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8220939, "upload_time": "2020-08-07T15:19:46", "upload_time_iso_8601": "2020-08-07T15:19:46.903982Z", "url": "https://files.pythonhosted.org/packages/f6/45/fdea51c64fafa8c69a5248d58d52361e880a72ddc21aeab37d6f6a917618/awkward1-0.2.28-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "af4a4090871466c93b4773f9b1a766c8", "sha256": "087f2dfbd502dc049ad81a9927f7d451475de95f61d0bf01ee99133e43d1c068" }, "downloads": -1, "filename": "awkward1-0.2.28-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "af4a4090871466c93b4773f9b1a766c8", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8393806, "upload_time": "2020-08-07T15:43:00", "upload_time_iso_8601": "2020-08-07T15:43:00.174699Z", "url": "https://files.pythonhosted.org/packages/33/e1/6e1f0971c78f0fe76fa2709fac5b1718fdb6a5d7a3859c527f041b7a145d/awkward1-0.2.28-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "55ebb3b0ebacd69d30042eaca3b216b5", "sha256": "caf50c7167818449cf47de6de8fd88c51972d5d469c46ef53121972b93b6ffee" }, "downloads": -1, "filename": "awkward1-0.2.28-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "55ebb3b0ebacd69d30042eaca3b216b5", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8309997, "upload_time": "2020-08-07T15:37:43", "upload_time_iso_8601": "2020-08-07T15:37:43.787261Z", "url": "https://files.pythonhosted.org/packages/a2/ca/19607942acb0655b48be59f1d42fe77c24240838b0f91f96f36ed2aff0c5/awkward1-0.2.28-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d622e167bb8339090b65548b6c9f07f3", "sha256": "2f74834362cdf84ab3dde7714df757efebf448acab2ef163cf65b1189a43cb91" }, "downloads": -1, "filename": "awkward1-0.2.28-cp36-cp36m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "d622e167bb8339090b65548b6c9f07f3", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8570813, "upload_time": "2020-08-07T15:43:50", "upload_time_iso_8601": "2020-08-07T15:43:50.000482Z", "url": "https://files.pythonhosted.org/packages/74/34/0fda6ca964931f1185d0fc18ca8a208019c12194deaa3d3c1b806bbedc45/awkward1-0.2.28-cp36-cp36m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cdc4f3b8faea8a878a20d500d21b4540", "sha256": "25d1c8cfb2030dec4c6ed248411ae4a3fc437b19dd215f9d3d2c6a89cc0ac3ea" }, "downloads": -1, "filename": "awkward1-0.2.28-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "cdc4f3b8faea8a878a20d500d21b4540", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8747418, "upload_time": "2020-08-07T15:29:22", "upload_time_iso_8601": "2020-08-07T15:29:22.991325Z", "url": "https://files.pythonhosted.org/packages/72/c8/22ca0ab4e6b32b437751a6853f8b66234259b2c12f2e439e7b6ae97f5523/awkward1-0.2.28-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "752dc2e6a561e1106bc0f9973b694239", "sha256": "1fbd423d82e4187f68743cc2a111c10ebb8bc8cbd7acc21a2831353577dcbc81" }, "downloads": -1, "filename": "awkward1-0.2.28-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "752dc2e6a561e1106bc0f9973b694239", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 11447474, "upload_time": "2020-08-07T15:34:32", "upload_time_iso_8601": "2020-08-07T15:34:32.515735Z", "url": "https://files.pythonhosted.org/packages/ad/6f/f32ac8b6abc248e1832f9f6cffc7b1780cd3388e12f25429bc8cd0b35983/awkward1-0.2.28-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d988119cbc03f77df28bf617ceeb7ce3", "sha256": "50460f35bf3c4793141a4c9c552aded1e66947665fcf300cab3bbf8deeb04d4f" }, "downloads": -1, "filename": "awkward1-0.2.28-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "d988119cbc03f77df28bf617ceeb7ce3", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8220927, "upload_time": "2020-08-07T15:19:56", "upload_time_iso_8601": "2020-08-07T15:19:56.359972Z", "url": "https://files.pythonhosted.org/packages/00/16/0552be74a6574d7bef4854d04c8b771cb06ea48d9e02e4fbb0121d99b57c/awkward1-0.2.28-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "80bce16a42d9c7365313843185454609", "sha256": "b3ab5815d97ec97a6ff22423eab4b8be645187860bd136a0ba1340e535449910" }, "downloads": -1, "filename": "awkward1-0.2.28-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "80bce16a42d9c7365313843185454609", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8394374, "upload_time": "2020-08-07T15:43:02", "upload_time_iso_8601": "2020-08-07T15:43:02.520755Z", "url": "https://files.pythonhosted.org/packages/4c/c9/97c1539fb496c5462a92ab23ecd453badf59d903f7262c9c89a7dd00cd70/awkward1-0.2.28-cp37-cp37m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e32d10917ff00c5b1383f892d049d3ef", "sha256": "28fe733d96cdc82c45fa8a2f5dcb1194c66cea0a666aa1c5fc2f53f77e4465e8" }, "downloads": -1, "filename": "awkward1-0.2.28-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "e32d10917ff00c5b1383f892d049d3ef", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8308409, "upload_time": "2020-08-07T15:37:46", "upload_time_iso_8601": "2020-08-07T15:37:46.298781Z", "url": "https://files.pythonhosted.org/packages/2f/d1/2b56dde5aae449d711ac1747d2eff952d3b70a5646abd01a842fb9033d49/awkward1-0.2.28-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "24ffc91644ae017851b652c9158f7639", "sha256": "92db80bb17ff603958d4cae1f8d7081bf74104c60730634ab6831603bf5f0081" }, "downloads": -1, "filename": "awkward1-0.2.28-cp37-cp37m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "24ffc91644ae017851b652c9158f7639", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8570381, "upload_time": "2020-08-07T15:43:51", "upload_time_iso_8601": "2020-08-07T15:43:51.666193Z", "url": "https://files.pythonhosted.org/packages/0a/de/e787dd501dc79f58c012e5b684221446b993cbe1cc2bd888af7334f753c6/awkward1-0.2.28-cp37-cp37m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6b037f2ca6092cbae1187b5153231244", "sha256": "d38cae5d900eb102560014ca96bcbec15536ce9e8ff9f4f79e5f30beee77eb60" }, "downloads": -1, "filename": "awkward1-0.2.28-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "6b037f2ca6092cbae1187b5153231244", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8748547, "upload_time": "2020-08-07T15:29:48", "upload_time_iso_8601": "2020-08-07T15:29:48.702530Z", "url": "https://files.pythonhosted.org/packages/ae/21/76ada282ac3a80fd7e5c8bec6749481699d23177b3a90bf9777bd41ee6e0/awkward1-0.2.28-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9a684cb4c4c86178e473b115da6d0307", "sha256": "016bd233b337d025a29b7ed7042743c333b7663695eae40e8b95b2d501d92c82" }, "downloads": -1, "filename": "awkward1-0.2.28-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "9a684cb4c4c86178e473b115da6d0307", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 11447297, "upload_time": "2020-08-07T15:36:35", "upload_time_iso_8601": "2020-08-07T15:36:35.536219Z", "url": "https://files.pythonhosted.org/packages/bf/34/db8667bdd3936d00481f640f01cc762aa5f28faf163b6483b4c138fc2969/awkward1-0.2.28-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "13b671db7c6dd28d567d4f9ae032647e", "sha256": "81a553777eb578d2e4e16944d94ba680691fcb76e5ed316378b0e6bc116e10c5" }, "downloads": -1, "filename": "awkward1-0.2.28-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "13b671db7c6dd28d567d4f9ae032647e", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8307528, "upload_time": "2020-08-07T15:20:09", "upload_time_iso_8601": "2020-08-07T15:20:09.580256Z", "url": "https://files.pythonhosted.org/packages/b8/46/da786d9b1466c8138468cea6945506077fc973aac0825b71b1dcf7fff582/awkward1-0.2.28-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b9c2e5462e25c7fe90abe61517391525", "sha256": "b369fdd4fed40f1505ee7d42743ce337eeb5cb5ac8682534484b217a7382d2a4" }, "downloads": -1, "filename": "awkward1-0.2.28-cp38-cp38-manylinux1_i686.whl", "has_sig": false, "md5_digest": "b9c2e5462e25c7fe90abe61517391525", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8354292, "upload_time": "2020-08-07T15:43:04", "upload_time_iso_8601": "2020-08-07T15:43:04.383080Z", "url": "https://files.pythonhosted.org/packages/5c/bd/d2ecb37c1302dad0043e4191aec07e323cd107b9c8e87d1baf9cd696d98c/awkward1-0.2.28-cp38-cp38-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8c176bb695661f06106c4988e31d0f59", "sha256": "6bb6c991085aff1656045395d9ea1f3e9a1bfa62167587a36dd6c6cc6d518310" }, "downloads": -1, "filename": "awkward1-0.2.28-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "8c176bb695661f06106c4988e31d0f59", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8250797, "upload_time": "2020-08-07T15:37:48", "upload_time_iso_8601": "2020-08-07T15:37:48.551135Z", "url": "https://files.pythonhosted.org/packages/fd/2e/2293299a074463b94f500a558e19496d8d7922760b0bdc45062cfd6b705f/awkward1-0.2.28-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "701001d8dd27699aeab9f06c49c22d67", "sha256": "81e73d5cb06673b4e87a78cf48ad847a3fb502ecfc24b6eb2b62ad49ff2f2f9a" }, "downloads": -1, "filename": "awkward1-0.2.28-cp38-cp38-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "701001d8dd27699aeab9f06c49c22d67", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8562965, "upload_time": "2020-08-07T15:43:53", "upload_time_iso_8601": "2020-08-07T15:43:53.475048Z", "url": "https://files.pythonhosted.org/packages/d3/e3/58d329fc422f09b367a5e91f9dca493242fbe1cff5d3bc0fb2ef43a09119/awkward1-0.2.28-cp38-cp38-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2dc88c0bf2466068f7699fbeb46eb63d", "sha256": "449079432433f8803c97f5290d869bb68ce2d113dc4619d8eee6c967d7efc629" }, "downloads": -1, "filename": "awkward1-0.2.28-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "2dc88c0bf2466068f7699fbeb46eb63d", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8753294, "upload_time": "2020-08-07T15:37:17", "upload_time_iso_8601": "2020-08-07T15:37:17.769040Z", "url": "https://files.pythonhosted.org/packages/a0/51/120639be5619dad63a4eafa048faba8027f72140f512241ed2190026d259/awkward1-0.2.28-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b35d8e638732285376c6ea662f44cae7", "sha256": "e66a1a5f4753dc1e18661dfa601faf0728904cabbf02ce2970960641c1849669" }, "downloads": -1, "filename": "awkward1-0.2.28-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "b35d8e638732285376c6ea662f44cae7", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 11455893, "upload_time": "2020-08-07T15:34:28", "upload_time_iso_8601": "2020-08-07T15:34:28.157774Z", "url": "https://files.pythonhosted.org/packages/55/e9/6d1069d9fc7c6524ca8cc35a2fc024d647b0c9380bc82203d6c62c1e745b/awkward1-0.2.28-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3a37837a33e41f372b51a9be21fd9b89", "sha256": "5c1994ffb7b7390da6345af653c38d3dc48f5de067819533371411538828f2ce" }, "downloads": -1, "filename": "awkward1-0.2.28-cp39-cp39-manylinux1_i686.whl", "has_sig": false, "md5_digest": "3a37837a33e41f372b51a9be21fd9b89", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8355858, "upload_time": "2020-08-07T15:43:06", "upload_time_iso_8601": "2020-08-07T15:43:06.234658Z", "url": "https://files.pythonhosted.org/packages/0e/35/6bce2e53fee842646e7fd90a4bce7996d0cb94a9ab687a088eeb7108302c/awkward1-0.2.28-cp39-cp39-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1f43e6353357d3aacbb9f6073e7e2168", "sha256": "a778647706ccfc5a2e74c498770d5a36d436be81d9cd2f72931d6377c1522ac0" }, "downloads": -1, "filename": "awkward1-0.2.28-cp39-cp39-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "1f43e6353357d3aacbb9f6073e7e2168", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8249296, "upload_time": "2020-08-07T15:37:50", "upload_time_iso_8601": "2020-08-07T15:37:50.370949Z", "url": "https://files.pythonhosted.org/packages/2c/60/252667157468cd759302fce32f472dfe41a50ac5f2be5c6b1fcbffa85e13/awkward1-0.2.28-cp39-cp39-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "24b06e52499723957a5b05759b525df7", "sha256": "1f183f2ac6630dde50aa9f12846607ba8c995f89b317f9c0d1d1c4cc3f94f454" }, "downloads": -1, "filename": "awkward1-0.2.28-cp39-cp39-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "24b06e52499723957a5b05759b525df7", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8561555, "upload_time": "2020-08-07T15:43:55", "upload_time_iso_8601": "2020-08-07T15:43:55.466785Z", "url": "https://files.pythonhosted.org/packages/9a/6c/22d6d2325fd858547e486e9004196352486b7b52c18f68f32ad05269452d/awkward1-0.2.28-cp39-cp39-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "70fef29a071ff2e90e0b9938d73eaa4d", "sha256": "4656d3ce92ea5194bc65dd1bac6bcda2115d3d5a5f14a6b30a2bf8f5e04ee442" }, "downloads": -1, "filename": "awkward1-0.2.28.tar.gz", "has_sig": false, "md5_digest": "70fef29a071ff2e90e0b9938d73eaa4d", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 646500, "upload_time": "2020-08-07T15:43:57", "upload_time_iso_8601": "2020-08-07T15:43:57.794789Z", "url": "https://files.pythonhosted.org/packages/b2/5e/1f345821ae68a626ab6eaaf9cbebf75d0e27739f91b2c0dbedff1bdcfa63/awkward1-0.2.28.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.29": [ { "comment_text": "", "digests": { "md5": "b474e7353578075e545428291ea47040", "sha256": "1bc745cdfd1a273c1633dfa0d24e533c33def74360142eef47e95be0c8215a2a" }, "downloads": -1, "filename": "awkward1-0.2.29-cp27-cp27m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "b474e7353578075e545428291ea47040", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8255468, "upload_time": "2020-08-10T15:32:01", "upload_time_iso_8601": "2020-08-10T15:32:01.532415Z", "url": "https://files.pythonhosted.org/packages/a7/57/5f441b3c761218f6f01793840c84b2fbaf7341f64b83f9398fe0ce2200e4/awkward1-0.2.29-cp27-cp27m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2b90d571c36b88455edf7801bd66b86c", "sha256": "9d4f71fd40b431a55aa9ab99ab85430934508921fee4c689d9a7e3872c4151a8" }, "downloads": -1, "filename": "awkward1-0.2.29-cp27-cp27m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "2b90d571c36b88455edf7801bd66b86c", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8408760, "upload_time": "2020-08-10T15:52:31", "upload_time_iso_8601": "2020-08-10T15:52:31.281081Z", "url": "https://files.pythonhosted.org/packages/2e/5e/5abc151d5093d229fb2adf527c884e289a767272ecfb34a37361bd03fb55/awkward1-0.2.29-cp27-cp27m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a303ab06f070dce1d35860e44d42ae4e", "sha256": "7ddd89733367664ef6a808c8021185c2de20f05a5879fca52fc2841b19fb4c13" }, "downloads": -1, "filename": "awkward1-0.2.29-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "a303ab06f070dce1d35860e44d42ae4e", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8311935, "upload_time": "2020-08-10T15:54:19", "upload_time_iso_8601": "2020-08-10T15:54:19.493266Z", "url": "https://files.pythonhosted.org/packages/f1/38/a856dc2e2e661c8f771393a3dc34e0d994f6936908a07f9414988f195a11/awkward1-0.2.29-cp27-cp27m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "99fa9b4c9cf8b1a8dde902f5b3aa6467", "sha256": "09a5575c9692080da74d72689d28d8427c559106244054e58cc8a39515ea3e7e" }, "downloads": -1, "filename": "awkward1-0.2.29-cp27-cp27m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "99fa9b4c9cf8b1a8dde902f5b3aa6467", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8569628, "upload_time": "2020-08-10T15:54:44", "upload_time_iso_8601": "2020-08-10T15:54:44.483928Z", "url": "https://files.pythonhosted.org/packages/0b/a9/75888cc96119eefde5f29a5da88bf2f26fc29daca834e287480f486f54c4/awkward1-0.2.29-cp27-cp27m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "41734bb86fa86a944cfcf363fbe098e6", "sha256": "74123bb8bb6af80ab1b0b59582bc174ef8141d9be8994775b44433a427bff87f" }, "downloads": -1, "filename": "awkward1-0.2.29-cp27-cp27mu-manylinux1_i686.whl", "has_sig": false, "md5_digest": "41734bb86fa86a944cfcf363fbe098e6", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8408727, "upload_time": "2020-08-10T15:52:33", "upload_time_iso_8601": "2020-08-10T15:52:33.061931Z", "url": "https://files.pythonhosted.org/packages/8a/3d/36073a2652d978e0d352964214117e427b6d6b8280d52cd37863f340018c/awkward1-0.2.29-cp27-cp27mu-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fcd27001b606f948bbda2efa3a9c8f00", "sha256": "e816c8a865a9467212376d36c91cdccb86ea1ee595a93e6baa54a8073a9e6fb0" }, "downloads": -1, "filename": "awkward1-0.2.29-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "fcd27001b606f948bbda2efa3a9c8f00", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8311955, "upload_time": "2020-08-10T15:54:21", "upload_time_iso_8601": "2020-08-10T15:54:21.516060Z", "url": "https://files.pythonhosted.org/packages/fa/25/6966597bb2dcbb845e58bb339f5bbcfbc8c7cfccc0ae04ef0ad97aaf92f3/awkward1-0.2.29-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c22cbd3e6cc8be9ff4d9c16abbea5654", "sha256": "f04aa74aff53dd195c56daf3b25a915b5404430bee324aca0fc4be4852d43a65" }, "downloads": -1, "filename": "awkward1-0.2.29-cp27-cp27mu-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "c22cbd3e6cc8be9ff4d9c16abbea5654", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8569632, "upload_time": "2020-08-10T15:54:46", "upload_time_iso_8601": "2020-08-10T15:54:46.150063Z", "url": "https://files.pythonhosted.org/packages/ab/ae/b867ebd49f709bed8f24f35b2d6a3f1a6629f82c7e00bba06d1f7c2d623a/awkward1-0.2.29-cp27-cp27mu-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5422e84344c9a008f07a8957f1080532", "sha256": "695dc389e8e76b75cf935d91bb68d352f73db2bd886bbdb976407a7789f19fc1" }, "downloads": -1, "filename": "awkward1-0.2.29-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "5422e84344c9a008f07a8957f1080532", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8748877, "upload_time": "2020-08-10T15:43:42", "upload_time_iso_8601": "2020-08-10T15:43:42.929089Z", "url": "https://files.pythonhosted.org/packages/43/3f/41cb1a405786f2e4dd4e857d912a3538f3522486a36d8b6b209953c29a76/awkward1-0.2.29-cp27-cp27m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8594ec981a1c7268060b5072413adaa5", "sha256": "dac90bc3ea4c7ca6c46dffffbbd172dd014716f93e669497bda2eddd6f58022b" }, "downloads": -1, "filename": "awkward1-0.2.29-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "8594ec981a1c7268060b5072413adaa5", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 11447194, "upload_time": "2020-08-10T15:38:02", "upload_time_iso_8601": "2020-08-10T15:38:02.998238Z", "url": "https://files.pythonhosted.org/packages/85/03/391b5c01b97e6681c57f7ba5b0139747c02c219b904f4968b294cd68be83/awkward1-0.2.29-cp27-cp27m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b064901688ce780453a22f58e6aa2452", "sha256": "699755d7e366eb8f4300d1b5870a983cd683a6ec377cde9f28c922d8ae08d04d" }, "downloads": -1, "filename": "awkward1-0.2.29-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "b064901688ce780453a22f58e6aa2452", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8404999, "upload_time": "2020-08-10T15:52:34", "upload_time_iso_8601": "2020-08-10T15:52:34.886729Z", "url": "https://files.pythonhosted.org/packages/f7/48/fcd5fd7e26a358c1fd8ecd6c772649505352ef7e2e95a70fe8a03a9f0ae1/awkward1-0.2.29-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1e18361c74c1ee4fbfd870c9b8d01f03", "sha256": "e8583da69c5906074b6293640609aacbd50517a370052da804292842a99d8d87" }, "downloads": -1, "filename": "awkward1-0.2.29-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "1e18361c74c1ee4fbfd870c9b8d01f03", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8311048, "upload_time": "2020-08-10T15:54:23", "upload_time_iso_8601": "2020-08-10T15:54:23.295613Z", "url": "https://files.pythonhosted.org/packages/c4/80/3040f4b5183e33bff433c122ac6f3059e370f1a4ee352a47d8846cab29df/awkward1-0.2.29-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "37ccfd195ec6189cf28012660272f811", "sha256": "e66b1570755228f6a92e03008820cdbf2e3cb521513c1072f96bec8fbecdf54b" }, "downloads": -1, "filename": "awkward1-0.2.29-cp35-cp35m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "37ccfd195ec6189cf28012660272f811", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8575634, "upload_time": "2020-08-10T15:54:47", "upload_time_iso_8601": "2020-08-10T15:54:47.880584Z", "url": "https://files.pythonhosted.org/packages/b8/ac/0216ef9256c9980981f13eaf573c5e19976bec4216b5bf052449a658a903/awkward1-0.2.29-cp35-cp35m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a1a5fe12ca53f36e65269091c09c2dc7", "sha256": "7af3189b814e5044c93eb30b8d5db92196e9807ae294b9bd8342996787597fb1" }, "downloads": -1, "filename": "awkward1-0.2.29-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "a1a5fe12ca53f36e65269091c09c2dc7", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8746782, "upload_time": "2020-08-10T15:36:57", "upload_time_iso_8601": "2020-08-10T15:36:57.361246Z", "url": "https://files.pythonhosted.org/packages/67/4e/5bb893319749877b95be5bcbe81fad827ca79bf72f159a8d95b6770e4779/awkward1-0.2.29-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "50e0798e42f568a754d3d148b176c43a", "sha256": "5f20243d99e98f5decf17a9d06c90efa41f83c05fb156d7c0a77e8e6598bd769" }, "downloads": -1, "filename": "awkward1-0.2.29-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "50e0798e42f568a754d3d148b176c43a", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 11445404, "upload_time": "2020-08-10T15:37:23", "upload_time_iso_8601": "2020-08-10T15:37:23.113297Z", "url": "https://files.pythonhosted.org/packages/ff/a5/a66d7037b72580c5d0ef8abb69f9577df29e90c4356185a03fc6002482d2/awkward1-0.2.29-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8b7ae234e34837934cbcd3753fa16e44", "sha256": "5a6c3ffd9de9ad12de58332a334adae2ee12db5bdddb6396518d35c3e186769e" }, "downloads": -1, "filename": "awkward1-0.2.29-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "8b7ae234e34837934cbcd3753fa16e44", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8254860, "upload_time": "2020-08-10T15:32:58", "upload_time_iso_8601": "2020-08-10T15:32:58.531413Z", "url": "https://files.pythonhosted.org/packages/01/b8/774ee8784d6de545a396e633246601e9545f5bdf35824056b856f458d330/awkward1-0.2.29-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "89029b182134c9b5773b5631e1f04295", "sha256": "fd85290858dcda1ec90b5c1e53022bb0965dd2da09f38643954732d1f9058aaa" }, "downloads": -1, "filename": "awkward1-0.2.29-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "89029b182134c9b5773b5631e1f04295", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8404995, "upload_time": "2020-08-10T15:52:37", "upload_time_iso_8601": "2020-08-10T15:52:37.057684Z", "url": "https://files.pythonhosted.org/packages/84/ef/8febf01330f4daaedfbcc01e4544ee202e9a7d22c1410a68e997152743aa/awkward1-0.2.29-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7d9ade656a9b6d09b290dc306fe65778", "sha256": "80ddd4bbed3d9d0d1ee110a8189bc4402115b5746253e649b2e513c425d69992" }, "downloads": -1, "filename": "awkward1-0.2.29-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "7d9ade656a9b6d09b290dc306fe65778", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8311011, "upload_time": "2020-08-10T15:54:25", "upload_time_iso_8601": "2020-08-10T15:54:25.335666Z", "url": "https://files.pythonhosted.org/packages/31/f3/d30d6df23e43fe8866f67e3d4020beffaf33a98cd2b8835518e2abe6dbf1/awkward1-0.2.29-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "efb234e6cec3c77944dfa75e4fe77c38", "sha256": "06eda873b4987d328cac385a1921ebd6917b9c5a5fb20d010f819bcbc58ad5e5" }, "downloads": -1, "filename": "awkward1-0.2.29-cp36-cp36m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "efb234e6cec3c77944dfa75e4fe77c38", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8575625, "upload_time": "2020-08-10T15:54:49", "upload_time_iso_8601": "2020-08-10T15:54:49.602301Z", "url": "https://files.pythonhosted.org/packages/f1/32/03a6690b44f59f9fe5cf18adb12711cc82575572d5505fd7a8fab46ead3b/awkward1-0.2.29-cp36-cp36m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "42990b6a20978b009f9afa084450a53f", "sha256": "6a88b6dd1df1edf606a3378cef8cc30045e4630d2cc75ac6c745343bc83e80fa" }, "downloads": -1, "filename": "awkward1-0.2.29-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "42990b6a20978b009f9afa084450a53f", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8746752, "upload_time": "2020-08-10T15:44:39", "upload_time_iso_8601": "2020-08-10T15:44:39.944367Z", "url": "https://files.pythonhosted.org/packages/0c/68/579e1fca84e89ee1578908557e250c2016f525590560f812987a666c7273/awkward1-0.2.29-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c4aa4e4be6637bc57b714de30253448a", "sha256": "e695f4e9795478fc1ea32170c78c720f35c056778f51ac6a0c046e3459b64200" }, "downloads": -1, "filename": "awkward1-0.2.29-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "c4aa4e4be6637bc57b714de30253448a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 11445321, "upload_time": "2020-08-10T15:42:11", "upload_time_iso_8601": "2020-08-10T15:42:11.922774Z", "url": "https://files.pythonhosted.org/packages/17/d6/8d85b8bd8f7ac690a5e1e96090a4a1a8c25989a97d2a69d8f87bc77ac770/awkward1-0.2.29-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6c03ee89a4c2b3107201c848bb77a481", "sha256": "4ccc10244a05028872e9348037e8f827e40e3e3b310643bf56f20b7dcfedac8c" }, "downloads": -1, "filename": "awkward1-0.2.29-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "6c03ee89a4c2b3107201c848bb77a481", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8254964, "upload_time": "2020-08-10T15:31:15", "upload_time_iso_8601": "2020-08-10T15:31:15.061657Z", "url": "https://files.pythonhosted.org/packages/d6/6e/da2e6544cbc1e5927c6b0df650826266cf3ee9e0b34d57721185697fad87/awkward1-0.2.29-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e2ea5b7795e8467ea1b94a10a59756d0", "sha256": "0f600f1d849c1825edb52fef61438a9b4116ca4097416dfead767a6dd6d421e6" }, "downloads": -1, "filename": "awkward1-0.2.29-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "e2ea5b7795e8467ea1b94a10a59756d0", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8407733, "upload_time": "2020-08-10T15:52:39", "upload_time_iso_8601": "2020-08-10T15:52:39.270039Z", "url": "https://files.pythonhosted.org/packages/1b/78/6760424121faf3fb0b91f86156a884079eaf49750ae974535cdcc5f337f6/awkward1-0.2.29-cp37-cp37m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8a7cc47af07130b0ec9a4abf5d0dffaf", "sha256": "a1726cd4729f19ce0bb48161abe18931262e19f4380f4848083490179a2cd06d" }, "downloads": -1, "filename": "awkward1-0.2.29-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "8a7cc47af07130b0ec9a4abf5d0dffaf", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8311548, "upload_time": "2020-08-10T15:54:27", "upload_time_iso_8601": "2020-08-10T15:54:27.325944Z", "url": "https://files.pythonhosted.org/packages/49/21/3d820df019a47a5b277182ab54aff9cb1333a6226f53b3170c01f8c2ef66/awkward1-0.2.29-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "688b8589070bc2c1ec18c00d6d18a887", "sha256": "34b52a35e7cb6fc558d3ac02165f4744a9a25954b67ee9d0734712a6c17212b5" }, "downloads": -1, "filename": "awkward1-0.2.29-cp37-cp37m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "688b8589070bc2c1ec18c00d6d18a887", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8572465, "upload_time": "2020-08-10T15:54:51", "upload_time_iso_8601": "2020-08-10T15:54:51.523115Z", "url": "https://files.pythonhosted.org/packages/23/89/5c5ba05cca3a81a38af0ded5c7a1282c75f20adc7994124198c4ef528511/awkward1-0.2.29-cp37-cp37m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "75008a3b1cdc42bfc5ec876eb4c41a5b", "sha256": "723b922877dbaac6e5a0d84ac98845405348a4a71dbb69284de64435491d44e1" }, "downloads": -1, "filename": "awkward1-0.2.29-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "75008a3b1cdc42bfc5ec876eb4c41a5b", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8747415, "upload_time": "2020-08-10T15:47:10", "upload_time_iso_8601": "2020-08-10T15:47:10.835228Z", "url": "https://files.pythonhosted.org/packages/af/6a/9d852d47465bf51a12dbdf1ed445cf9f073b1e66dc85c05d0fed1600978f/awkward1-0.2.29-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9d54fc0f6af9f8781ce6b4c33af4b201", "sha256": "1b9d01c0db7ad725186877ab912b27c2b239fd486dd86adf0609524d74f3fcfd" }, "downloads": -1, "filename": "awkward1-0.2.29-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "9d54fc0f6af9f8781ce6b4c33af4b201", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 11446085, "upload_time": "2020-08-10T15:43:10", "upload_time_iso_8601": "2020-08-10T15:43:10.559078Z", "url": "https://files.pythonhosted.org/packages/78/fb/3184e7c701c3c778e03e4d52fb99c3254c4c5a87723171425a691db92854/awkward1-0.2.29-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6b0c1a9a94766b8ba768d782a5b79a10", "sha256": "91f589ae2376ef20bf0dbed89b7969eda7e2582009979e430da90a4d02be1922" }, "downloads": -1, "filename": "awkward1-0.2.29-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "6b0c1a9a94766b8ba768d782a5b79a10", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8344470, "upload_time": "2020-08-10T15:32:05", "upload_time_iso_8601": "2020-08-10T15:32:05.018787Z", "url": "https://files.pythonhosted.org/packages/db/af/9c802a2910a8f62d2b63ce85438456e6aacb989f01bb096d0761d317d73a/awkward1-0.2.29-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7a400cd814d22f298a6c13e73529ac62", "sha256": "488bd5739c09461e0972d01ceb50f8d35b9cb2f5b55601585feb9c6b8dddb643" }, "downloads": -1, "filename": "awkward1-0.2.29-cp38-cp38-manylinux1_i686.whl", "has_sig": false, "md5_digest": "7a400cd814d22f298a6c13e73529ac62", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8368669, "upload_time": "2020-08-10T15:52:40", "upload_time_iso_8601": "2020-08-10T15:52:40.948678Z", "url": "https://files.pythonhosted.org/packages/59/98/fe18edb98138406fb20e4a5c90e24f51ad87cac679bb8f9e47b41cab1e12/awkward1-0.2.29-cp38-cp38-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3413d20fcaacfaac3391891c1f39bf25", "sha256": "c84f2ecd86330b24c2f53487e0ee8dabfaf1a884d54dd5f97e4eeff684d20095" }, "downloads": -1, "filename": "awkward1-0.2.29-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "3413d20fcaacfaac3391891c1f39bf25", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8250238, "upload_time": "2020-08-10T15:54:29", "upload_time_iso_8601": "2020-08-10T15:54:29.550997Z", "url": "https://files.pythonhosted.org/packages/e4/0c/2fd8c77fd8be03a27d8d4dc948d66019a7a0361d06ff4e426f07e224009f/awkward1-0.2.29-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "136ff054955349fe964b2c3cf4131f75", "sha256": "1e6bd29618145b537965e29581059c17531e8ef7c63d038db60f55a8807275c9" }, "downloads": -1, "filename": "awkward1-0.2.29-cp38-cp38-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "136ff054955349fe964b2c3cf4131f75", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8561990, "upload_time": "2020-08-10T15:54:53", "upload_time_iso_8601": "2020-08-10T15:54:53.402838Z", "url": "https://files.pythonhosted.org/packages/6e/96/6c5353937cad55a2b9eaba524efb3d6c488da743780e904b3e4e178d7ef5/awkward1-0.2.29-cp38-cp38-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "aff4d3606478725200951edacfbe007a", "sha256": "27f34dee53ac239462101ace1ae2f8398f0573b8e66423232e97dc49302012cd" }, "downloads": -1, "filename": "awkward1-0.2.29-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "aff4d3606478725200951edacfbe007a", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8753924, "upload_time": "2020-08-10T15:45:23", "upload_time_iso_8601": "2020-08-10T15:45:23.805947Z", "url": "https://files.pythonhosted.org/packages/05/f9/f5561811e62b7f54703d9ce5a79c3d199b14d7465ce6f9d3392f498e5ace/awkward1-0.2.29-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "001f2c1f46f3cf8d06cc8782194c1d17", "sha256": "691dfbe3ca32168697bf0f49b1d04f6973cff4109ce252c20e8ffc1de71cfa5a" }, "downloads": -1, "filename": "awkward1-0.2.29-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "001f2c1f46f3cf8d06cc8782194c1d17", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 11453899, "upload_time": "2020-08-10T15:47:42", "upload_time_iso_8601": "2020-08-10T15:47:42.076076Z", "url": "https://files.pythonhosted.org/packages/a9/55/4fc40aef64c57aa3a663723bf7ad954bbbe087b50e71ae24a80a9f21cba7/awkward1-0.2.29-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cdc4f6fbcc44463296c4ba281719c5f7", "sha256": "09f664abb0da942d95bcd407084a1e5999db3e93539ed1d1b66589dc4fe44548" }, "downloads": -1, "filename": "awkward1-0.2.29-cp39-cp39-manylinux1_i686.whl", "has_sig": false, "md5_digest": "cdc4f6fbcc44463296c4ba281719c5f7", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8370195, "upload_time": "2020-08-10T15:52:42", "upload_time_iso_8601": "2020-08-10T15:52:42.949490Z", "url": "https://files.pythonhosted.org/packages/e4/8d/cec32d56026a076701b5a932de12f4f1a9b655d056a8757409ebda41b03b/awkward1-0.2.29-cp39-cp39-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4481ebb210b275a653c5dcb0e389782d", "sha256": "fff8a2bb38fe47748f66901f727ca8dd4a6f676e3c36a99d3f22619a75969219" }, "downloads": -1, "filename": "awkward1-0.2.29-cp39-cp39-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "4481ebb210b275a653c5dcb0e389782d", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8256422, "upload_time": "2020-08-10T15:54:31", "upload_time_iso_8601": "2020-08-10T15:54:31.361265Z", "url": "https://files.pythonhosted.org/packages/7b/47/173ad12075297b70f11a6e6295df15383c97438f16d0efa22e00d2090e54/awkward1-0.2.29-cp39-cp39-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "00f33c30ca5eefb600b3e233f2ab6b2c", "sha256": "bce932714ed8475715f46a225a4ce25d87fba3d4f08f02cbe71c1a1badffdffd" }, "downloads": -1, "filename": "awkward1-0.2.29-cp39-cp39-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "00f33c30ca5eefb600b3e233f2ab6b2c", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8566134, "upload_time": "2020-08-10T15:54:55", "upload_time_iso_8601": "2020-08-10T15:54:55.732707Z", "url": "https://files.pythonhosted.org/packages/63/dd/c107acede25077add5b7a82d724b2fdcbb7c5276e351b503da2265d6eacf/awkward1-0.2.29-cp39-cp39-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "69bbdaca90f3e3de4069dcc09bdcb7fc", "sha256": "a71d7b7394b8f3706658a7f4250a270f403b1e2f21b8a64e7d5049ff6d93c28f" }, "downloads": -1, "filename": "awkward1-0.2.29.tar.gz", "has_sig": false, "md5_digest": "69bbdaca90f3e3de4069dcc09bdcb7fc", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 646920, "upload_time": "2020-08-10T15:54:57", "upload_time_iso_8601": "2020-08-10T15:54:57.390769Z", "url": "https://files.pythonhosted.org/packages/71/bb/a73b93311e2a038396c8975e97adf71184d931508edb82693efd8ddfa69c/awkward1-0.2.29.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.30": [ { "comment_text": "", "digests": { "md5": "5fb9555386638f970f6426d4aee2b1ad", "sha256": "4272d0f12d3144c0b7e6e037ddca49f09b732807ff637c4053ecc2a536824850" }, "downloads": -1, "filename": "awkward1-0.2.30-cp27-cp27m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "5fb9555386638f970f6426d4aee2b1ad", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8259298, "upload_time": "2020-08-11T23:59:38", "upload_time_iso_8601": "2020-08-11T23:59:38.038201Z", "url": "https://files.pythonhosted.org/packages/2f/ca/fa427a2b814eae6d760cfc29206252d254ec2e632febdaca1ec4cedc72e3/awkward1-0.2.30-cp27-cp27m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0db43cffda6e4f0de691677cc4461d15", "sha256": "b4f79097be9076058918c5c8f8fbfd4e62a6a19d9b0d9313decf4d76939275e8" }, "downloads": -1, "filename": "awkward1-0.2.30-cp27-cp27m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "0db43cffda6e4f0de691677cc4461d15", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8416541, "upload_time": "2020-08-12T00:19:31", "upload_time_iso_8601": "2020-08-12T00:19:31.054572Z", "url": "https://files.pythonhosted.org/packages/46/75/b4d16e9f3ea0779b12b88fb47a2f2d1c0152bd78ea3764f2f121aefe9273/awkward1-0.2.30-cp27-cp27m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fe05f4ba358384b0a5f747ad6749697a", "sha256": "518c5db744dca8b571d071c7f0b434d27a54595dca770dbf0b985d915c27470d" }, "downloads": -1, "filename": "awkward1-0.2.30-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "fe05f4ba358384b0a5f747ad6749697a", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8312958, "upload_time": "2020-08-12T00:22:00", "upload_time_iso_8601": "2020-08-12T00:22:00.283166Z", "url": "https://files.pythonhosted.org/packages/87/88/f842ad059e40aeca1d9833970974ea6670e905bffccd2a223466f9006dc1/awkward1-0.2.30-cp27-cp27m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d9f618d2828f5a6b318c61f4f50b148d", "sha256": "ddffc5bedf2f1ca54dde03d551ebc225cd97c92ce399cd6dac1136613bdb0186" }, "downloads": -1, "filename": "awkward1-0.2.30-cp27-cp27m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "d9f618d2828f5a6b318c61f4f50b148d", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8575512, "upload_time": "2020-08-12T00:23:29", "upload_time_iso_8601": "2020-08-12T00:23:29.957374Z", "url": "https://files.pythonhosted.org/packages/8e/ad/92e05e5042b0e92b8a6392e961de02172738602868e872f970467f52cb5a/awkward1-0.2.30-cp27-cp27m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "99de9fdd17a34f91acf6f081071814c9", "sha256": "8d5d793e05b3eefd32347ebe1b5d6993c901e9266a371de50dcc52c8797b9c83" }, "downloads": -1, "filename": "awkward1-0.2.30-cp27-cp27mu-manylinux1_i686.whl", "has_sig": false, "md5_digest": "99de9fdd17a34f91acf6f081071814c9", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8416540, "upload_time": "2020-08-12T00:19:33", "upload_time_iso_8601": "2020-08-12T00:19:33.147140Z", "url": "https://files.pythonhosted.org/packages/9b/2c/b1cfe0df14e3f97aa21c78eeeea27be1463086432500aa5b4b125772ac5d/awkward1-0.2.30-cp27-cp27mu-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0e6a2a0c8b5af322f1ccdb6ba58e3aae", "sha256": "f5dee474960d2ae75c9c8e2ba1dcd5b8956aac79a853eea5a47ad703b5538e40" }, "downloads": -1, "filename": "awkward1-0.2.30-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "0e6a2a0c8b5af322f1ccdb6ba58e3aae", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8312948, "upload_time": "2020-08-12T00:22:02", "upload_time_iso_8601": "2020-08-12T00:22:02.385048Z", "url": "https://files.pythonhosted.org/packages/fe/fd/774a6d0c7d53b01bdfe7beb5d94140c0731abb3c384888fcebe4017c2c32/awkward1-0.2.30-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5cdc21471008d1dc12a7e6d42372a712", "sha256": "2936489fe13a5bba237dcf0fbeda02004deabcc81d7ac2edd359e4d570e1d242" }, "downloads": -1, "filename": "awkward1-0.2.30-cp27-cp27mu-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "5cdc21471008d1dc12a7e6d42372a712", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8575476, "upload_time": "2020-08-12T00:23:31", "upload_time_iso_8601": "2020-08-12T00:23:31.934344Z", "url": "https://files.pythonhosted.org/packages/c2/f7/b7b43354fa8d3aecb5dc057986fc91cea01e00b45375f10aadf57dd2c6de/awkward1-0.2.30-cp27-cp27mu-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b6017b8b99bd99f5d01da26ff778c29a", "sha256": "c8cf5d717e13a9c873122cf3f24178d27de808e8679ead3072f0bf5213fceae6" }, "downloads": -1, "filename": "awkward1-0.2.30-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "b6017b8b99bd99f5d01da26ff778c29a", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8750932, "upload_time": "2020-08-12T00:07:29", "upload_time_iso_8601": "2020-08-12T00:07:29.138638Z", "url": "https://files.pythonhosted.org/packages/9b/b8/1592a9be02a5a0d22f51bb8cf8fbc75ba937649231e68e11d39c86adf4d7/awkward1-0.2.30-cp27-cp27m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9f856aa0f3609a3ee21dd558e1ebdd44", "sha256": "8ae46cb13b136c926abf1cf569dd0646b990b22282bdfe1380bd7bdabf76668c" }, "downloads": -1, "filename": "awkward1-0.2.30-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "9f856aa0f3609a3ee21dd558e1ebdd44", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 11450041, "upload_time": "2020-08-12T00:08:05", "upload_time_iso_8601": "2020-08-12T00:08:05.404604Z", "url": "https://files.pythonhosted.org/packages/f7/dd/48e05a570b20cc8e5dc931f3344542f71815818916a69e3cc1b48775a94b/awkward1-0.2.30-cp27-cp27m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bdcf929acd2ce18e5b1f9eb00bf45674", "sha256": "82581931176955f33da3f870e7339f7bfcc38f96c89384a04530c0bded4d92eb" }, "downloads": -1, "filename": "awkward1-0.2.30-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "bdcf929acd2ce18e5b1f9eb00bf45674", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8417118, "upload_time": "2020-08-12T00:19:34", "upload_time_iso_8601": "2020-08-12T00:19:34.978500Z", "url": "https://files.pythonhosted.org/packages/ef/56/eded99fe1bcaf4b5d8c327690e81d9753cb8709e14fad7acf1aaf06eb127/awkward1-0.2.30-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "99f6e50869565a1a559b288b5d0e058b", "sha256": "9d9e375eb1864f7418a09902cb136b5e58046a1ddadd90211aa6d4a41913cee4" }, "downloads": -1, "filename": "awkward1-0.2.30-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "99f6e50869565a1a559b288b5d0e058b", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8317054, "upload_time": "2020-08-12T00:22:04", "upload_time_iso_8601": "2020-08-12T00:22:04.640121Z", "url": "https://files.pythonhosted.org/packages/7e/56/3f0daf5b08593ad240b8d0995d66bb0a1aea66d2094791acece984263032/awkward1-0.2.30-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fe479809574ee7cd95b91f7d5162adea", "sha256": "01b178c918dc5cf9cd24cd3e9924f8bd564d3628deff69fe8bd2d5d14afed585" }, "downloads": -1, "filename": "awkward1-0.2.30-cp35-cp35m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "fe479809574ee7cd95b91f7d5162adea", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8574828, "upload_time": "2020-08-12T00:23:34", "upload_time_iso_8601": "2020-08-12T00:23:34.649032Z", "url": "https://files.pythonhosted.org/packages/ef/2a/fdb3dd713f4d3e29ef7fa641ab211695a777e996545a534bf506ecd21f12/awkward1-0.2.30-cp35-cp35m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7e59dcc56be632abdbc5a1f6646e5a44", "sha256": "c1872b90debe161cd2d4cd715d3dfd486d8940d228867d50d71f03b48713dc93" }, "downloads": -1, "filename": "awkward1-0.2.30-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "7e59dcc56be632abdbc5a1f6646e5a44", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8748954, "upload_time": "2020-08-12T00:08:39", "upload_time_iso_8601": "2020-08-12T00:08:39.005715Z", "url": "https://files.pythonhosted.org/packages/c4/66/37ebca7f518a6ea2ff0a69a3549cfa426fd4b90d7620a24429070324521f/awkward1-0.2.30-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4ea4ffc7da3ca562147ae10ea18113b5", "sha256": "37d5188d0d34d5f3fb41fc532ad9238b4f5f60b25f465a5598d0fb96172044bd" }, "downloads": -1, "filename": "awkward1-0.2.30-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "4ea4ffc7da3ca562147ae10ea18113b5", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 11447775, "upload_time": "2020-08-12T00:07:14", "upload_time_iso_8601": "2020-08-12T00:07:14.942785Z", "url": "https://files.pythonhosted.org/packages/1e/55/9e0c9230748f90c323cdcfa9b2139b862eb7d306a73c40c43af8e6f702db/awkward1-0.2.30-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "99360c365ad74fc4106ac571dc6bc429", "sha256": "c321219e5810ff7c304ba8e8868ce964ef7c12498b5c2a7ac8bc9ce960f22f52" }, "downloads": -1, "filename": "awkward1-0.2.30-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "99360c365ad74fc4106ac571dc6bc429", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8258539, "upload_time": "2020-08-11T23:58:58", "upload_time_iso_8601": "2020-08-11T23:58:58.270030Z", "url": "https://files.pythonhosted.org/packages/d1/83/8e74fe22e3dda020543d09ce468a38b47860e6563a43531dca27acea0142/awkward1-0.2.30-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8022baa6a328a6e469925e68513cc63d", "sha256": "befbe3f8162a20839491ad99ce682c39ddb5486af5137b4d4456020fbfaff9e4" }, "downloads": -1, "filename": "awkward1-0.2.30-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "8022baa6a328a6e469925e68513cc63d", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8417159, "upload_time": "2020-08-12T00:19:37", "upload_time_iso_8601": "2020-08-12T00:19:37.399698Z", "url": "https://files.pythonhosted.org/packages/d1/73/91f9bb3451871bac9390bfe87fbbbe722887c17749165cd81e2c550f88e0/awkward1-0.2.30-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "89bb91d936e94eead1b8dba8c0481931", "sha256": "fcc066ee25ced81dd4b6dbc6bd6788e562833678980d73e7ba4ac3fa6117455c" }, "downloads": -1, "filename": "awkward1-0.2.30-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "89bb91d936e94eead1b8dba8c0481931", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8317025, "upload_time": "2020-08-12T00:22:06", "upload_time_iso_8601": "2020-08-12T00:22:06.697821Z", "url": "https://files.pythonhosted.org/packages/16/48/2cf17211bc1c3d195f16423e2123cd243dc6940b680b4bcb846de6cb8572/awkward1-0.2.30-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "662ce93e1ac85bda7d1918eabc95ea32", "sha256": "a3dd8384d4d16ee57882e3cd8708a33730de3ff4618de8c7c2e7ed7bb48828fb" }, "downloads": -1, "filename": "awkward1-0.2.30-cp36-cp36m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "662ce93e1ac85bda7d1918eabc95ea32", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8574873, "upload_time": "2020-08-12T00:23:36", "upload_time_iso_8601": "2020-08-12T00:23:36.526163Z", "url": "https://files.pythonhosted.org/packages/65/34/9875822790f49cf32141390fe31290c54f853f632733eb805c24d22f8a59/awkward1-0.2.30-cp36-cp36m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "42ec5ab46e0ae5e6b55bc18cb52f46f8", "sha256": "0e613fd0037824a312d6457eef6ad6320c7ed787d532215c2bc7310a41ff4d47" }, "downloads": -1, "filename": "awkward1-0.2.30-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "42ec5ab46e0ae5e6b55bc18cb52f46f8", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8748983, "upload_time": "2020-08-12T00:11:25", "upload_time_iso_8601": "2020-08-12T00:11:25.577834Z", "url": "https://files.pythonhosted.org/packages/c4/8e/9dc2a17813a8122fca36548cf7cb29c50f15a1840b2acd01c8a5a8dfd13c/awkward1-0.2.30-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1342a2b290ff7678e51bbc8057ec39bd", "sha256": "c2fbfae143f732975004a8b79330988483768fb4e6d35efadad6b102c5a00f85" }, "downloads": -1, "filename": "awkward1-0.2.30-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "1342a2b290ff7678e51bbc8057ec39bd", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 11447501, "upload_time": "2020-08-12T00:13:14", "upload_time_iso_8601": "2020-08-12T00:13:14.070549Z", "url": "https://files.pythonhosted.org/packages/82/d5/6a2e7c69492650ed70bab9fee8e1d231637500d13c5fd0d6f867ace2c431/awkward1-0.2.30-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ecb9313f9fc6b8a731d2314e2f29e90e", "sha256": "6cb137cb11b015693df23f08db7b9b0fdfa2fc1858688a7b8f4acc729fbca15f" }, "downloads": -1, "filename": "awkward1-0.2.30-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "ecb9313f9fc6b8a731d2314e2f29e90e", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8258438, "upload_time": "2020-08-11T23:59:30", "upload_time_iso_8601": "2020-08-11T23:59:30.247424Z", "url": "https://files.pythonhosted.org/packages/0b/79/59fdf7586224afd72a3da70bf3694f76621aefeaad153bc025a435ce76a5/awkward1-0.2.30-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "576eaaf9c01de19d389c25f39b20eab3", "sha256": "ddb37591e493805d679b5e966a98abed1e4a0f319083ffcc2c0b169bc402559c" }, "downloads": -1, "filename": "awkward1-0.2.30-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "576eaaf9c01de19d389c25f39b20eab3", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8410540, "upload_time": "2020-08-12T00:19:39", "upload_time_iso_8601": "2020-08-12T00:19:39.495495Z", "url": "https://files.pythonhosted.org/packages/56/a7/8e679e8ae2d4718aaf6d12d06b007abbc822567c6d757d04f4ee2e963749/awkward1-0.2.30-cp37-cp37m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c6a6403f87548924b851cecebed971f0", "sha256": "2cf276b0128d7c544a3f773a62c6098a1e40ffccdd923f4ff6bf01514e7a5cdf" }, "downloads": -1, "filename": "awkward1-0.2.30-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "c6a6403f87548924b851cecebed971f0", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8316567, "upload_time": "2020-08-12T00:22:08", "upload_time_iso_8601": "2020-08-12T00:22:08.429600Z", "url": "https://files.pythonhosted.org/packages/0b/5f/fff386bcd898e9e792b277c2a4b54ed602fd58984b12bb52a6658b551164/awkward1-0.2.30-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1e6dffe6022ffe67c4f82db945f9b5d8", "sha256": "6d51f8c30fc7c77c6ae698c63b4503d2873af11596eefa9b104cee8790fea30b" }, "downloads": -1, "filename": "awkward1-0.2.30-cp37-cp37m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "1e6dffe6022ffe67c4f82db945f9b5d8", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8576240, "upload_time": "2020-08-12T00:23:38", "upload_time_iso_8601": "2020-08-12T00:23:38.648390Z", "url": "https://files.pythonhosted.org/packages/4d/40/dad1f56f73c9d1a08ee2f4f628e0135a3e53a4be94efabd20cfbafaaa68a/awkward1-0.2.30-cp37-cp37m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bdbfca2bf8e84df7e071d0f8133597b7", "sha256": "1ffe5f155d9039164168669b84b2acf559d4606c62884717cdab134a24bfcfd4" }, "downloads": -1, "filename": "awkward1-0.2.30-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "bdbfca2bf8e84df7e071d0f8133597b7", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8749595, "upload_time": "2020-08-12T00:07:52", "upload_time_iso_8601": "2020-08-12T00:07:52.844028Z", "url": "https://files.pythonhosted.org/packages/47/e5/466b7a7b8f4447bd06bd5b2a61628df0e11becd51aa454a1d940290f7416/awkward1-0.2.30-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5a55b0109dfcc8d727f080fdb170cf7c", "sha256": "98196b80ad507d5c85d1e5aec8fc6acd27b08952ed2651b892cca7b28200d4c4" }, "downloads": -1, "filename": "awkward1-0.2.30-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "5a55b0109dfcc8d727f080fdb170cf7c", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 11447526, "upload_time": "2020-08-12T00:19:24", "upload_time_iso_8601": "2020-08-12T00:19:24.699081Z", "url": "https://files.pythonhosted.org/packages/32/9d/4869444360ef5a9781a14b4e93e6551b91bc3d6d4b577ed895c6b2941993/awkward1-0.2.30-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5f438c73bd8c79115e5ac6ae8cc647c6", "sha256": "457ecac042475538cd416c91ce7ab3f4fd46c6854b65b5c7863fc2c2f8ab6cd2" }, "downloads": -1, "filename": "awkward1-0.2.30-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "5f438c73bd8c79115e5ac6ae8cc647c6", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8348747, "upload_time": "2020-08-11T23:58:57", "upload_time_iso_8601": "2020-08-11T23:58:57.098736Z", "url": "https://files.pythonhosted.org/packages/30/71/03916cf943e3bd6969462ef1337ae7780d8e71adf9c5932954e46db72c13/awkward1-0.2.30-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2a3ca7b3cfb0b74d7e76ff6988149e5a", "sha256": "ab99ff14f291b151d638d2a14aed2d63cb0fc5c3e48d38f0913f29b286856242" }, "downloads": -1, "filename": "awkward1-0.2.30-cp38-cp38-manylinux1_i686.whl", "has_sig": false, "md5_digest": "2a3ca7b3cfb0b74d7e76ff6988149e5a", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8366987, "upload_time": "2020-08-12T00:19:41", "upload_time_iso_8601": "2020-08-12T00:19:41.562773Z", "url": "https://files.pythonhosted.org/packages/09/eb/0065ab1d614b3408557035d9211cb56342b641622e79d07c35a5c49b2262/awkward1-0.2.30-cp38-cp38-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2c628502e7c78ad8920745b5dd1124ff", "sha256": "baa7debd9fbd6a5836cc6caad796a6ba83cbaa90365b8a3680a29372b90aff53" }, "downloads": -1, "filename": "awkward1-0.2.30-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "2c628502e7c78ad8920745b5dd1124ff", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8259846, "upload_time": "2020-08-12T00:22:10", "upload_time_iso_8601": "2020-08-12T00:22:10.270650Z", "url": "https://files.pythonhosted.org/packages/c4/5e/8d603ac9261bc2d18043083aefe4e55ae3bb0680d89ffcd4332748833aff/awkward1-0.2.30-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "98e98ada01ac5b5ad5d2ae60f6dad9d7", "sha256": "3c0e6ce237c212cb283203e389df186963a389108f1574c962bfdd6e1066eac5" }, "downloads": -1, "filename": "awkward1-0.2.30-cp38-cp38-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "98e98ada01ac5b5ad5d2ae60f6dad9d7", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8570097, "upload_time": "2020-08-12T00:23:40", "upload_time_iso_8601": "2020-08-12T00:23:40.775430Z", "url": "https://files.pythonhosted.org/packages/51/62/d4162e9fa24f44d2e864130e69f3a27aa26e9dd095add59f5e1aad69f869/awkward1-0.2.30-cp38-cp38-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bbdedb9f079b8be4afbfdb204d9a56e2", "sha256": "0a51f35ace7a7ecec19d55ec6910e67780498b56705417873220aae61e957b6d" }, "downloads": -1, "filename": "awkward1-0.2.30-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "bbdedb9f079b8be4afbfdb204d9a56e2", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8754622, "upload_time": "2020-08-12T00:17:24", "upload_time_iso_8601": "2020-08-12T00:17:24.145635Z", "url": "https://files.pythonhosted.org/packages/d4/b3/189232f40cdbb6c0b233c7f84e005341e8bde86e26faa5f1a83c2aecbad0/awkward1-0.2.30-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e05242842df19fd5718d2370d4f97898", "sha256": "13a77249120bc5f5a1e67d0edf8405cc0455e7951e45506851609a5a90ca315d" }, "downloads": -1, "filename": "awkward1-0.2.30-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "e05242842df19fd5718d2370d4f97898", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 11456368, "upload_time": "2020-08-12T00:16:55", "upload_time_iso_8601": "2020-08-12T00:16:55.451135Z", "url": "https://files.pythonhosted.org/packages/bc/c8/05b8e329ab68032820ea737c7e1efde56eb18effe96df62593c8b7520fbc/awkward1-0.2.30-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d3a9eecd1cc8c79819d7daeb12a6096a", "sha256": "83e3d236b5864ac72c1ec5f335c40d4ceff40726c0ed5fb6e5daba11ae4bb529" }, "downloads": -1, "filename": "awkward1-0.2.30-cp39-cp39-manylinux1_i686.whl", "has_sig": false, "md5_digest": "d3a9eecd1cc8c79819d7daeb12a6096a", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8367210, "upload_time": "2020-08-12T00:19:43", "upload_time_iso_8601": "2020-08-12T00:19:43.784774Z", "url": "https://files.pythonhosted.org/packages/f9/b7/d331088ac081c34ee844f5c39f16cf6c47f8ce1b3353e0bea150c7216e54/awkward1-0.2.30-cp39-cp39-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4df9c372747d2f3a3669e160ea98a27c", "sha256": "52e12e348865c3ebe7d2b91381d3b46ae2747ee90b6878f00c15d8f8995779ed" }, "downloads": -1, "filename": "awkward1-0.2.30-cp39-cp39-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "4df9c372747d2f3a3669e160ea98a27c", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8260123, "upload_time": "2020-08-12T00:22:12", "upload_time_iso_8601": "2020-08-12T00:22:12.383699Z", "url": "https://files.pythonhosted.org/packages/e6/14/b06df4ccc4a0ef3f054d54f5103fb59ab74e8f81251e461c532051979e9d/awkward1-0.2.30-cp39-cp39-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a3054720ac72b6e86dc1d9e63a4d64df", "sha256": "e388a6b7d18a4b715f182a02d1f8a8e3c97203bee1693fb19be64625368f7ef9" }, "downloads": -1, "filename": "awkward1-0.2.30-cp39-cp39-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "a3054720ac72b6e86dc1d9e63a4d64df", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8568823, "upload_time": "2020-08-12T00:23:42", "upload_time_iso_8601": "2020-08-12T00:23:42.442428Z", "url": "https://files.pythonhosted.org/packages/5d/20/624d0836d0a594ca8161f150143a771fee0106f1eb565244bc8d88e2f4b9/awkward1-0.2.30-cp39-cp39-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f1ca44568aa3ea6a3d1bf022d4bf07df", "sha256": "d2af7cb24f1b5457787f546ef797c28a8cb84e9af3acf4cf075e9c28fbe5c9d2" }, "downloads": -1, "filename": "awkward1-0.2.30.tar.gz", "has_sig": false, "md5_digest": "f1ca44568aa3ea6a3d1bf022d4bf07df", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 648715, "upload_time": "2020-08-12T00:23:44", "upload_time_iso_8601": "2020-08-12T00:23:44.489671Z", "url": "https://files.pythonhosted.org/packages/23/73/cc06085d4aa954997ac1060b303bb574bce235521cc05e2127688323b370/awkward1-0.2.30.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.31": [ { "comment_text": "", "digests": { "md5": "959ba87cd3312fc2ae587f7d79778da3", "sha256": "8ab7b530f126ac2254066741251c3f657ced90aed0ace28bd97169ce478fbb6d" }, "downloads": -1, "filename": "awkward1-0.2.31-cp27-cp27m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "959ba87cd3312fc2ae587f7d79778da3", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8174687, "upload_time": "2020-08-15T00:24:32", "upload_time_iso_8601": "2020-08-15T00:24:32.178793Z", "url": "https://files.pythonhosted.org/packages/1b/bc/2ec43b5d8bb906794cad826c5faacba6a7555f9e408f724b86b034b35257/awkward1-0.2.31-cp27-cp27m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "67b946b46883417a7ea03864e6995fd8", "sha256": "a49d604732eb8c3ca018cfb5c58a353fdeca6224f014675229f467ccec378a3a" }, "downloads": -1, "filename": "awkward1-0.2.31-cp27-cp27m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "67b946b46883417a7ea03864e6995fd8", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8320559, "upload_time": "2020-08-15T00:48:23", "upload_time_iso_8601": "2020-08-15T00:48:23.894663Z", "url": "https://files.pythonhosted.org/packages/2e/29/283b492a93724c3ae69727c499423bf6ea74d8de6bf7329318e55339d019/awkward1-0.2.31-cp27-cp27m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "215db4e94d1ca091fab1bc2c0c71a225", "sha256": "1b64fb8b25a3ad143ed8160ba137db44efecc7c8c051fa04667d06faae3c28b7" }, "downloads": -1, "filename": "awkward1-0.2.31-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "215db4e94d1ca091fab1bc2c0c71a225", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8223674, "upload_time": "2020-08-15T00:46:47", "upload_time_iso_8601": "2020-08-15T00:46:47.815782Z", "url": "https://files.pythonhosted.org/packages/cd/2a/0d926d466b7d47446246d6cdc6cc5df6e957b57210686cd7e5bf9dc115ce/awkward1-0.2.31-cp27-cp27m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2ce6a700f9f2ef59eb7d17675cac097e", "sha256": "cb4e046d7396050e2f26424a44efe51dee0032516043cd6930cc3469589c6878" }, "downloads": -1, "filename": "awkward1-0.2.31-cp27-cp27m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "2ce6a700f9f2ef59eb7d17675cac097e", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8452766, "upload_time": "2020-08-15T00:44:49", "upload_time_iso_8601": "2020-08-15T00:44:49.698800Z", "url": "https://files.pythonhosted.org/packages/e9/1e/4a30b6640ecdba7472db9dce88e897de63e70ae095ac0e624f398ba9e4dd/awkward1-0.2.31-cp27-cp27m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5cacce30b699530ff06011e928ff271e", "sha256": "3c9e5005e87fe90befa6ef2af8836be13827f35a7cbc7d9e2f9cbe87bf05b36c" }, "downloads": -1, "filename": "awkward1-0.2.31-cp27-cp27mu-manylinux1_i686.whl", "has_sig": false, "md5_digest": "5cacce30b699530ff06011e928ff271e", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8320591, "upload_time": "2020-08-15T00:48:25", "upload_time_iso_8601": "2020-08-15T00:48:25.646251Z", "url": "https://files.pythonhosted.org/packages/d7/13/02bb78c4af0396fb3791bc99886e011743551422ca8ed0fcc30b1b4e37cd/awkward1-0.2.31-cp27-cp27mu-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ccc67c95a5cbde3beecfabd0a3db533f", "sha256": "705b1889db7402dc2cead6553963e41fb17e409a22e1b170aff0effe7ab7e38e" }, "downloads": -1, "filename": "awkward1-0.2.31-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "ccc67c95a5cbde3beecfabd0a3db533f", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8223758, "upload_time": "2020-08-15T00:46:49", "upload_time_iso_8601": "2020-08-15T00:46:49.843113Z", "url": "https://files.pythonhosted.org/packages/5f/06/f8b0693ad1fc41f0f1cea2dafc17fde11810c2ccc34ab652d911dd8ac1e1/awkward1-0.2.31-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "98944fac4bcb66929af01fa30ca4268c", "sha256": "c60686e84690417a5a8d06f60219d0c4775676410f262495f220329017ce3cf6" }, "downloads": -1, "filename": "awkward1-0.2.31-cp27-cp27mu-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "98944fac4bcb66929af01fa30ca4268c", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8452668, "upload_time": "2020-08-15T00:44:52", "upload_time_iso_8601": "2020-08-15T00:44:52.090423Z", "url": "https://files.pythonhosted.org/packages/8d/6d/4e5ec20affea931c9e695ec986a42dfe209e64060bde2396daf0dd2a774c/awkward1-0.2.31-cp27-cp27mu-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1d88c8d26b954aaf78b047ea63936ca9", "sha256": "74b786f7ec4c442ce1117f010a3dbfcfdf838fdde6e9b277c0565a125e53cbcb" }, "downloads": -1, "filename": "awkward1-0.2.31-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "1d88c8d26b954aaf78b047ea63936ca9", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8680108, "upload_time": "2020-08-15T00:29:19", "upload_time_iso_8601": "2020-08-15T00:29:19.743514Z", "url": "https://files.pythonhosted.org/packages/42/05/ab93c2dd149ce7b45cd00b3c26f33cc72f30443383994d7410495bed7a5c/awkward1-0.2.31-cp27-cp27m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "71aa16fc384e1c78a7d92d2d04dd9da4", "sha256": "7fa741ec7bba77ae1d331f87840c0f3c2c36031cf8931604ce66107c84643617" }, "downloads": -1, "filename": "awkward1-0.2.31-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "71aa16fc384e1c78a7d92d2d04dd9da4", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 11362295, "upload_time": "2020-08-15T00:34:00", "upload_time_iso_8601": "2020-08-15T00:34:00.976993Z", "url": "https://files.pythonhosted.org/packages/3c/03/fbb0e255c866b27cee4229d23dee78b3a167e3ae490334a859c52a47bfd7/awkward1-0.2.31-cp27-cp27m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d4640b7191f39ff3037b25b3bc648065", "sha256": "c389515e86bfa741f0a9837e8b34d31170f174a01a3a68d4ebc79b9a5bf32619" }, "downloads": -1, "filename": "awkward1-0.2.31-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "d4640b7191f39ff3037b25b3bc648065", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8322463, "upload_time": "2020-08-15T00:48:27", "upload_time_iso_8601": "2020-08-15T00:48:27.650778Z", "url": "https://files.pythonhosted.org/packages/be/b3/72105f58ccace1a33cd5a4dcdff5ea12b748b70e1b262edd477d8023df0d/awkward1-0.2.31-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9d3e1c40ec601309e9e371a1d2d837bc", "sha256": "b1a42ed2a1ab95847e29a8e7d752d5735e589c5a2836de574f7eff18739a30c1" }, "downloads": -1, "filename": "awkward1-0.2.31-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "9d3e1c40ec601309e9e371a1d2d837bc", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8229651, "upload_time": "2020-08-15T00:46:51", "upload_time_iso_8601": "2020-08-15T00:46:51.757832Z", "url": "https://files.pythonhosted.org/packages/f7/3c/56da9f78cc2a71a170468b08c8ed49015f14c42beda7222e9f656d4d3433/awkward1-0.2.31-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3ce886f5fa38cbf20e5a5cbd831e82ed", "sha256": "ecc6085474e8f8f8a67d07830c6e2e52e440bb3e746bb97ec4c854b500e7bcb1" }, "downloads": -1, "filename": "awkward1-0.2.31-cp35-cp35m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "3ce886f5fa38cbf20e5a5cbd831e82ed", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8451596, "upload_time": "2020-08-15T00:44:53", "upload_time_iso_8601": "2020-08-15T00:44:53.950115Z", "url": "https://files.pythonhosted.org/packages/50/68/108c33dc9c5b5289623adb1dab61ff6cd767fe81193d39fa8127f92191de/awkward1-0.2.31-cp35-cp35m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "33f2ec617a07b6eb9d61e63ce37e9e8d", "sha256": "796942679fc281c3b45def53ac3708d50a3a15a48e7b18bf95333baf5ed75665" }, "downloads": -1, "filename": "awkward1-0.2.31-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "33f2ec617a07b6eb9d61e63ce37e9e8d", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8676553, "upload_time": "2020-08-15T00:33:17", "upload_time_iso_8601": "2020-08-15T00:33:17.301024Z", "url": "https://files.pythonhosted.org/packages/ea/0f/efe4824bbd911837ef707a598dde844fbfe973eae0ef5dfdced30ddc839d/awkward1-0.2.31-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0b5aafe59b8461250acab86b0d881fc8", "sha256": "943d2e8cad7e08b6913f6e3154bc7422c9b7795b5316bde9aa07f8bf51f15d83" }, "downloads": -1, "filename": "awkward1-0.2.31-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "0b5aafe59b8461250acab86b0d881fc8", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 11361055, "upload_time": "2020-08-15T00:29:35", "upload_time_iso_8601": "2020-08-15T00:29:35.890824Z", "url": "https://files.pythonhosted.org/packages/44/6c/d673dde8991ec81efef880df21d05a96acb121caf6133e5f777f7a19678e/awkward1-0.2.31-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c1a3356a3a131cfe3ac0c6b906aa8fd9", "sha256": "1fd02ba2fedb7eee4bc0dea2fd49d3719bf108b9aee95f8e82f1063b895a9cf5" }, "downloads": -1, "filename": "awkward1-0.2.31-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "c1a3356a3a131cfe3ac0c6b906aa8fd9", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8173995, "upload_time": "2020-08-15T00:25:33", "upload_time_iso_8601": "2020-08-15T00:25:33.968394Z", "url": "https://files.pythonhosted.org/packages/5a/21/1a3648543ae16d71b756ca04e46d2044bb93304f29cb79667331f89b8183/awkward1-0.2.31-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "897d6ebc09977b1db58019feaa7985d0", "sha256": "24d87ef0936960aaeae870ddd7bcff5fe18a825a34a5cce41088144a7af11fd0" }, "downloads": -1, "filename": "awkward1-0.2.31-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "897d6ebc09977b1db58019feaa7985d0", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8322469, "upload_time": "2020-08-15T00:48:29", "upload_time_iso_8601": "2020-08-15T00:48:29.578429Z", "url": "https://files.pythonhosted.org/packages/a9/7c/9cc2c94570cd2774e629f0098bbecd1875ed5298d81809e0dae7066644cc/awkward1-0.2.31-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d3bb255e1eb047d27ab7c763cdfa349f", "sha256": "0325cae82da27b1622d25cc80bb8f93a2df6f9479ae9f9fb68260ced3ba01f3e" }, "downloads": -1, "filename": "awkward1-0.2.31-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "d3bb255e1eb047d27ab7c763cdfa349f", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8229629, "upload_time": "2020-08-15T00:46:53", "upload_time_iso_8601": "2020-08-15T00:46:53.743780Z", "url": "https://files.pythonhosted.org/packages/42/a4/0e2492f3a2e7d98cfe3e5f765777d4d27498659b3ccd0f21d78e6c5b03e8/awkward1-0.2.31-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9529bf7b807e1d412872b432e34cb926", "sha256": "bd01b65cc1f4c41e3efc62276a13dbdf2f2763e38b9da7c947503fd0f0c64986" }, "downloads": -1, "filename": "awkward1-0.2.31-cp36-cp36m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "9529bf7b807e1d412872b432e34cb926", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8451579, "upload_time": "2020-08-15T00:44:55", "upload_time_iso_8601": "2020-08-15T00:44:55.610139Z", "url": "https://files.pythonhosted.org/packages/93/cf/04515f0394acd85b24db3a9e1c1e37a7c201c8adfe82cd260fc7443dbbee/awkward1-0.2.31-cp36-cp36m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "15b7d88244a858aa361bb2b156ccab47", "sha256": "2f353a9eae3d4d36f9bb495b6f0d409500bb19d0444cf7195d179dc5df16c74f" }, "downloads": -1, "filename": "awkward1-0.2.31-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "15b7d88244a858aa361bb2b156ccab47", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8676496, "upload_time": "2020-08-15T00:35:48", "upload_time_iso_8601": "2020-08-15T00:35:48.390338Z", "url": "https://files.pythonhosted.org/packages/5c/0e/cabfa47df5830613b76e84cfd9f91bbfca0616aca1ff9d0cce8bcb857094/awkward1-0.2.31-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "487a03205b26a5701dd4f1af6f733518", "sha256": "72352dd5820b08990f156e04e2244010294a1d6f6121b680caa6bb5d1daedeba" }, "downloads": -1, "filename": "awkward1-0.2.31-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "487a03205b26a5701dd4f1af6f733518", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 11361119, "upload_time": "2020-08-15T00:39:36", "upload_time_iso_8601": "2020-08-15T00:39:36.412058Z", "url": "https://files.pythonhosted.org/packages/f2/34/88fb8f89b332e924575060edab116969a5089525e7fc2a75a9543105a74a/awkward1-0.2.31-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "aa5f73f478f75f89ffab7a304817553b", "sha256": "28ab4395d2d49dd6dfd607d75dffbb3ca2140443bcbf9513f26f856d1499e9a6" }, "downloads": -1, "filename": "awkward1-0.2.31-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "aa5f73f478f75f89ffab7a304817553b", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8173952, "upload_time": "2020-08-15T00:24:29", "upload_time_iso_8601": "2020-08-15T00:24:29.467804Z", "url": "https://files.pythonhosted.org/packages/ed/10/c5cc70df1ef5e235dab1a53d7b6a36166f9273374fb4f8ee0a363f9a55ab/awkward1-0.2.31-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "36307e0eebb5d35e23ac0a1c696fa569", "sha256": "db11cba16f90c8997780e350f1496581d87d0d0394079d6ea403e97511f4cc32" }, "downloads": -1, "filename": "awkward1-0.2.31-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "36307e0eebb5d35e23ac0a1c696fa569", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8316043, "upload_time": "2020-08-15T00:48:31", "upload_time_iso_8601": "2020-08-15T00:48:31.814337Z", "url": "https://files.pythonhosted.org/packages/a7/6d/87b888eeebe9c794779f3739c99f2018999ba7ef81d72f6eb29baaa6f5de/awkward1-0.2.31-cp37-cp37m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f8ce0d22690b63c027753f3e084c1341", "sha256": "27399daf90c92d3295aa29d800335bca437843fe648c50943a22982b8b37d54b" }, "downloads": -1, "filename": "awkward1-0.2.31-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "f8ce0d22690b63c027753f3e084c1341", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8228482, "upload_time": "2020-08-15T00:46:55", "upload_time_iso_8601": "2020-08-15T00:46:55.864830Z", "url": "https://files.pythonhosted.org/packages/d7/6e/49952ec39b428ea18ab32c27b32806a441a131fb59835859ee449d1416e4/awkward1-0.2.31-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "234a0f68608351c9271d128ee3f97025", "sha256": "9e2074c1fb2d29b9495b739570171d85306cfa87c91b7a4e007e33b781019293" }, "downloads": -1, "filename": "awkward1-0.2.31-cp37-cp37m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "234a0f68608351c9271d128ee3f97025", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8453211, "upload_time": "2020-08-15T00:44:57", "upload_time_iso_8601": "2020-08-15T00:44:57.550790Z", "url": "https://files.pythonhosted.org/packages/62/ce/369fc369e6cdd3ff295749584286b0582827fc2613ea380172aa04d71bf1/awkward1-0.2.31-cp37-cp37m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "261178137be9d266b21e8b6507ca13dc", "sha256": "211b3ebf16b6afa4787f6e9b341dd0e5a87c2ae43f47db495aed1e1f10de1ae4" }, "downloads": -1, "filename": "awkward1-0.2.31-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "261178137be9d266b21e8b6507ca13dc", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8677197, "upload_time": "2020-08-15T00:36:40", "upload_time_iso_8601": "2020-08-15T00:36:40.912925Z", "url": "https://files.pythonhosted.org/packages/eb/1d/f91d6c5a255e9a609cda784331a108fef2de6adaa32f1b2f37d743050ebb/awkward1-0.2.31-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "65494ebdc35bd9bcfb3a817cbd44d3b1", "sha256": "d0cb3e81aa6f4d50e507f5f707d54b0021faf1a66adc6f9d956c5089c50ae3d6" }, "downloads": -1, "filename": "awkward1-0.2.31-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "65494ebdc35bd9bcfb3a817cbd44d3b1", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 11360633, "upload_time": "2020-08-15T00:34:35", "upload_time_iso_8601": "2020-08-15T00:34:35.972243Z", "url": "https://files.pythonhosted.org/packages/74/c9/0dad6901a6061b178bfc2ea328286009411eea09c0e8fb91cd6c74f815e6/awkward1-0.2.31-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ae1039d729068439f9977d6ba90300f5", "sha256": "dc2b9f5f8dd2a4587eaaeadb87f2c057b1f7ff5ea839bb6911c6d6ec626e7cb5" }, "downloads": -1, "filename": "awkward1-0.2.31-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "ae1039d729068439f9977d6ba90300f5", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8261469, "upload_time": "2020-08-15T00:24:18", "upload_time_iso_8601": "2020-08-15T00:24:18.694414Z", "url": "https://files.pythonhosted.org/packages/26/8a/e67cb02b0fb098650d5e75d2b6094f75b52ed79364f4a3620d8d9dec62bc/awkward1-0.2.31-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "88573280ac88801ee679a1381ea7fdec", "sha256": "fd9a56b2cdd08a53bc1feea6f17a8b769d6469fbe491d0f9be5775d2d27ea615" }, "downloads": -1, "filename": "awkward1-0.2.31-cp38-cp38-manylinux1_i686.whl", "has_sig": false, "md5_digest": "88573280ac88801ee679a1381ea7fdec", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8271572, "upload_time": "2020-08-15T00:48:33", "upload_time_iso_8601": "2020-08-15T00:48:33.770500Z", "url": "https://files.pythonhosted.org/packages/af/ca/c742b08584e9c23477f4b8ccf593b9412e16ee4c70ca9cce32cbc009ab00/awkward1-0.2.31-cp38-cp38-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e06e0349567dfd7cc71b8ad856dad20f", "sha256": "5344ac38ae43e871a5d954efb1a3cefe1e3d41aed822cb81aeb244b0200dd5f3" }, "downloads": -1, "filename": "awkward1-0.2.31-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "e06e0349567dfd7cc71b8ad856dad20f", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8170437, "upload_time": "2020-08-15T00:46:57", "upload_time_iso_8601": "2020-08-15T00:46:57.558781Z", "url": "https://files.pythonhosted.org/packages/da/e4/31219f82616787035885bbe885396eb7f710ce4715083d09436bc6e1c9b9/awkward1-0.2.31-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "be58a92b9c7829e8df7a1626b79f06cc", "sha256": "488007467b47b3a37b7c0001e7c28b714294b2a8a62b20e233148bdf3f168593" }, "downloads": -1, "filename": "awkward1-0.2.31-cp38-cp38-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "be58a92b9c7829e8df7a1626b79f06cc", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8447690, "upload_time": "2020-08-15T00:44:59", "upload_time_iso_8601": "2020-08-15T00:44:59.547459Z", "url": "https://files.pythonhosted.org/packages/bb/c1/694893d5365f2706d2e765068d7e5520a2f517deced63acfa1010ca0aff9/awkward1-0.2.31-cp38-cp38-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6676ed55cb045513447dfa1d7d744979", "sha256": "b64cc427d58b57426f8ee0697ee10bb7bfa879312197dcce13f0f61608c46d45" }, "downloads": -1, "filename": "awkward1-0.2.31-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "6676ed55cb045513447dfa1d7d744979", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8685074, "upload_time": "2020-08-15T00:43:08", "upload_time_iso_8601": "2020-08-15T00:43:08.091335Z", "url": "https://files.pythonhosted.org/packages/eb/a6/42648d0b6c192c9a6fedc9c110d030bc56a9ef16762e0b196655b4014a81/awkward1-0.2.31-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "79b227d03e96ecbc4e7cdd21e1b4036f", "sha256": "e3344046b8f361a91b012fa69bccb52eb20dec2df67431517b8549e2e2d4f7d4" }, "downloads": -1, "filename": "awkward1-0.2.31-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "79b227d03e96ecbc4e7cdd21e1b4036f", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 11368718, "upload_time": "2020-08-15T00:43:53", "upload_time_iso_8601": "2020-08-15T00:43:53.927595Z", "url": "https://files.pythonhosted.org/packages/c9/78/7acb3658c275804ec6157c6b8b5e77184bbacb704368a34996a74be966a0/awkward1-0.2.31-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6553dda061ff179cac11be668ea47543", "sha256": "330476cc940f679d394b1b4643c60f6fd8c70495fb509cb5892134a13066bebc" }, "downloads": -1, "filename": "awkward1-0.2.31-cp39-cp39-manylinux1_i686.whl", "has_sig": false, "md5_digest": "6553dda061ff179cac11be668ea47543", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8271665, "upload_time": "2020-08-15T00:48:35", "upload_time_iso_8601": "2020-08-15T00:48:35.989831Z", "url": "https://files.pythonhosted.org/packages/9d/8d/aa82fb7dc9ead77cea56b7ab0846c5b8e1439fe9084b15700e277c89614a/awkward1-0.2.31-cp39-cp39-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "baff0c89c2fb92008337d95a15c43200", "sha256": "5d49c21de41854663539fdb446c8f6025b5e92e7c8e9b94b669db99d3606aec4" }, "downloads": -1, "filename": "awkward1-0.2.31-cp39-cp39-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "baff0c89c2fb92008337d95a15c43200", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8170151, "upload_time": "2020-08-15T00:46:59", "upload_time_iso_8601": "2020-08-15T00:46:59.385773Z", "url": "https://files.pythonhosted.org/packages/88/11/d4e4c6e6d2361250e56392f7859aeee29e38eb49322c442ee4660b52cee4/awkward1-0.2.31-cp39-cp39-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f6cbb15e42621686688ca223b2ed18ed", "sha256": "40c5d5cbe8090dc85d048b2f991cce5a74f3f2a729e2fedc01adcf8ea4e31cbd" }, "downloads": -1, "filename": "awkward1-0.2.31-cp39-cp39-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "f6cbb15e42621686688ca223b2ed18ed", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8446285, "upload_time": "2020-08-15T00:45:01", "upload_time_iso_8601": "2020-08-15T00:45:01.385180Z", "url": "https://files.pythonhosted.org/packages/02/6d/0da2d88dd5f7577856b982aaf918368cfc83af0c9499b2fcb66f8ee5ac99/awkward1-0.2.31-cp39-cp39-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f5698e7c19e31370b253ef810cc15800", "sha256": "9b235ce4164c8472d4f0ac0ad4fe7980968659be9e955c44a922d04f93766e12" }, "downloads": -1, "filename": "awkward1-0.2.31.tar.gz", "has_sig": false, "md5_digest": "f5698e7c19e31370b253ef810cc15800", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 645582, "upload_time": "2020-08-15T00:45:03", "upload_time_iso_8601": "2020-08-15T00:45:03.235166Z", "url": "https://files.pythonhosted.org/packages/da/95/d03b9135ba71e2873bdd34e410c061d06d3caefc8d2705862f2b5ff2ae46/awkward1-0.2.31.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.32": [ { "comment_text": "", "digests": { "md5": "6d893db8f4bd593a4a55d375ad051913", "sha256": "972ff6f7f3051fd19b4eeeddf2dcad86b84aed6310890e8b2fb925e3c28f7095" }, "downloads": -1, "filename": "awkward1-0.2.32-cp27-cp27m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "6d893db8f4bd593a4a55d375ad051913", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9026779, "upload_time": "2020-08-19T18:53:32", "upload_time_iso_8601": "2020-08-19T18:53:32.271983Z", "url": "https://files.pythonhosted.org/packages/52/c3/3a460a29132b84064e1dfb6c033970b2a02ea4442b2dc1fef3ef0dd98a83/awkward1-0.2.32-cp27-cp27m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6065e4e4df378c820bee1c65a1e15c65", "sha256": "6d6c0bd75458bfbbc5d3b3ffaf34a7ce9ecb579e85e8d8ff70de5349902ebd05" }, "downloads": -1, "filename": "awkward1-0.2.32-cp27-cp27m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "6065e4e4df378c820bee1c65a1e15c65", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8941062, "upload_time": "2020-08-19T19:14:47", "upload_time_iso_8601": "2020-08-19T19:14:47.830857Z", "url": "https://files.pythonhosted.org/packages/b8/60/b65e257887809cf2d449ee606e52b7e23a343094ec5ce9a08d981de8d0f1/awkward1-0.2.32-cp27-cp27m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d792fc00fc8bec8201539a4dbc7a2965", "sha256": "a8fddcd2d67b7d8a9e7ff3b84c8e258b23b9d5fc383839b82d67e95c69da8db0" }, "downloads": -1, "filename": "awkward1-0.2.32-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "d792fc00fc8bec8201539a4dbc7a2965", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8857581, "upload_time": "2020-08-19T19:14:30", "upload_time_iso_8601": "2020-08-19T19:14:30.924834Z", "url": "https://files.pythonhosted.org/packages/0a/5b/7ae5b4045a340645c1e27501f7ed2a8fc5e86e267b5984d674ce821f7b4f/awkward1-0.2.32-cp27-cp27m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f9d28cfbcd4706b1c0fd61a6d4092ac3", "sha256": "1f565fe3367148ecb1c023fac70df0c1463a757a01f06cea8ea56f27d92373a4" }, "downloads": -1, "filename": "awkward1-0.2.32-cp27-cp27m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "f9d28cfbcd4706b1c0fd61a6d4092ac3", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9487009, "upload_time": "2020-08-19T19:21:11", "upload_time_iso_8601": "2020-08-19T19:21:11.561094Z", "url": "https://files.pythonhosted.org/packages/f0/25/e7a79530b2a37e7f1a63ac0ceb4579fa31de7e3f00a9e5c386cdfe22b6b7/awkward1-0.2.32-cp27-cp27m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7223e415dbbc3a18bb401e1d137628e9", "sha256": "e9fdc073173827d2e022910f24bee228e1146c4301f5b1154c5913693630dc32" }, "downloads": -1, "filename": "awkward1-0.2.32-cp27-cp27mu-manylinux1_i686.whl", "has_sig": false, "md5_digest": "7223e415dbbc3a18bb401e1d137628e9", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8941157, "upload_time": "2020-08-19T19:14:49", "upload_time_iso_8601": "2020-08-19T19:14:49.872793Z", "url": "https://files.pythonhosted.org/packages/29/9d/3e6b598281413b9234d6228b832c4d12c6600d941d41c9ea1228b05ae504/awkward1-0.2.32-cp27-cp27mu-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3bd31c400c418f133c520e34459f96e4", "sha256": "47952fad745feb940d54ca6980e3e5729501aff8284cb3c50fa975292bbe6a0c" }, "downloads": -1, "filename": "awkward1-0.2.32-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "3bd31c400c418f133c520e34459f96e4", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8857564, "upload_time": "2020-08-19T19:14:33", "upload_time_iso_8601": "2020-08-19T19:14:33.567035Z", "url": "https://files.pythonhosted.org/packages/95/40/775297726e7a043049e7c0d9cb7e60ce7d27eeda595339ca68f56271297b/awkward1-0.2.32-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "afafbf92797e697e42b0169156de6a72", "sha256": "f8edd1187a38cf538ad097220ed3ebd77fe9b43060f4e1392b78395e468e53d9" }, "downloads": -1, "filename": "awkward1-0.2.32-cp27-cp27mu-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "afafbf92797e697e42b0169156de6a72", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9487029, "upload_time": "2020-08-19T19:21:14", "upload_time_iso_8601": "2020-08-19T19:21:14.278803Z", "url": "https://files.pythonhosted.org/packages/a0/35/6159357a7509b4997a97af439f45c352a595195024de2741c86b3a39b83e/awkward1-0.2.32-cp27-cp27mu-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2346fc3a85c58431dbde4fbb16eda23e", "sha256": "fd8105791122bf93abed4efa417e25698fcce7a1136f4038355326a1706b413f" }, "downloads": -1, "filename": "awkward1-0.2.32-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "2346fc3a85c58431dbde4fbb16eda23e", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9283507, "upload_time": "2020-08-19T19:00:25", "upload_time_iso_8601": "2020-08-19T19:00:25.859528Z", "url": "https://files.pythonhosted.org/packages/e3/4d/50dff82e725b115647797932fb4f0ff34b9e4e09c749303e69ac78b7bde2/awkward1-0.2.32-cp27-cp27m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8134221ff40a7b2fc36f6e516f09a5c1", "sha256": "c444f2978ef4d3ca95195afc6f720a4987a278c3e1039304d646d0301458c705" }, "downloads": -1, "filename": "awkward1-0.2.32-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "8134221ff40a7b2fc36f6e516f09a5c1", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 12177472, "upload_time": "2020-08-19T19:05:51", "upload_time_iso_8601": "2020-08-19T19:05:51.570333Z", "url": "https://files.pythonhosted.org/packages/90/51/644000cf44f5e535164f7fa033622e1c48f9e954ad3ccfd76b145ce4870b/awkward1-0.2.32-cp27-cp27m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d0a1537ab2792af8183513d08f86dc2a", "sha256": "aa33058ef1e386e40506990c930a3ac7574bc56c9f7b55f6b404abd0cd2adc3f" }, "downloads": -1, "filename": "awkward1-0.2.32-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "d0a1537ab2792af8183513d08f86dc2a", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8946871, "upload_time": "2020-08-19T19:14:52", "upload_time_iso_8601": "2020-08-19T19:14:52.188560Z", "url": "https://files.pythonhosted.org/packages/45/2a/88aa08eaa298a4cdf8a6c202e7f0194118a23b1e90487f7177c9514667e9/awkward1-0.2.32-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5a5bb8956e9781e0c01f1c23e0a56920", "sha256": "58ae069306a0445ac3bf1b638b139f47359c311b32e501dd49aa784a5d14c79c" }, "downloads": -1, "filename": "awkward1-0.2.32-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "5a5bb8956e9781e0c01f1c23e0a56920", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8863591, "upload_time": "2020-08-19T19:14:36", "upload_time_iso_8601": "2020-08-19T19:14:36.413025Z", "url": "https://files.pythonhosted.org/packages/c3/70/20b2bb7f18b4d250a4a5df2a1847e9c14650ac61cd01a239f87a29e66e23/awkward1-0.2.32-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ad3051f8af4f9ca0e959700af13f36f0", "sha256": "ce59d8c01b4188b095c5079d9449f9435b9126bcbac13aa57b51c68aea7b465d" }, "downloads": -1, "filename": "awkward1-0.2.32-cp35-cp35m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "ad3051f8af4f9ca0e959700af13f36f0", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9482521, "upload_time": "2020-08-19T19:21:16", "upload_time_iso_8601": "2020-08-19T19:21:16.452157Z", "url": "https://files.pythonhosted.org/packages/57/fe/f8fcbe69e3367fc58dd99677cca3a76ad25aa1b4d96eae96a9d484396c5e/awkward1-0.2.32-cp35-cp35m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b7be6ed995b6a3381fc0621f67ba80fa", "sha256": "6fd5a1d8b9679a68cb1d54b08a6c14a92b9f537c32ea81b6931817c105f8f25b" }, "downloads": -1, "filename": "awkward1-0.2.32-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "b7be6ed995b6a3381fc0621f67ba80fa", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9281253, "upload_time": "2020-08-19T19:02:10", "upload_time_iso_8601": "2020-08-19T19:02:10.776489Z", "url": "https://files.pythonhosted.org/packages/ac/0c/c1ac278a5144dc2671013bd842d4e52c538f5aa0408585684f227961f555/awkward1-0.2.32-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1ee98ef09c52ecb687ac141a2d0ee5cd", "sha256": "3ee9e7144647d929d651181ac1ee5c589efbc7cc79318128006f68d20ef7deb4" }, "downloads": -1, "filename": "awkward1-0.2.32-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "1ee98ef09c52ecb687ac141a2d0ee5cd", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 12172861, "upload_time": "2020-08-19T19:06:45", "upload_time_iso_8601": "2020-08-19T19:06:45.602840Z", "url": "https://files.pythonhosted.org/packages/f0/ec/fda93b0e82815eb55ad47d1e81e76c7aeaea827e203c01657e31037f63e4/awkward1-0.2.32-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "49c058c6247ef8c3468ae2ef6a0e1d32", "sha256": "8db1052c302df2c2d69ade0cc67166100fca715b07ec0e5efb96fd69163ff7e6" }, "downloads": -1, "filename": "awkward1-0.2.32-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "49c058c6247ef8c3468ae2ef6a0e1d32", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9026836, "upload_time": "2020-08-19T18:53:00", "upload_time_iso_8601": "2020-08-19T18:53:00.463302Z", "url": "https://files.pythonhosted.org/packages/ff/c7/29120f9a874aa2b31bbcff7dcd3eb8bbe63a293b0c256826460381ba9348/awkward1-0.2.32-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "163f9da555cb750b72ecbc3d775cd4b7", "sha256": "dd548eab9f6d8b064f8edbb13f3f03689104c792fcddcde2fc3c7232a3adc9bf" }, "downloads": -1, "filename": "awkward1-0.2.32-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "163f9da555cb750b72ecbc3d775cd4b7", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8946867, "upload_time": "2020-08-19T19:14:54", "upload_time_iso_8601": "2020-08-19T19:14:54.983228Z", "url": "https://files.pythonhosted.org/packages/fe/34/ce19024bd2ba5b21c69071cb19c263a444613ba0a0ca841cda1a793cbc47/awkward1-0.2.32-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f4057b5dd861ce99893aa32e9b7a1197", "sha256": "cce46d075a7368211c928e2627103dde6b54b11d3ad15b0a1582a3ff5bb7e8a2" }, "downloads": -1, "filename": "awkward1-0.2.32-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "f4057b5dd861ce99893aa32e9b7a1197", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8863581, "upload_time": "2020-08-19T19:14:38", "upload_time_iso_8601": "2020-08-19T19:14:38.577275Z", "url": "https://files.pythonhosted.org/packages/e7/4c/937b9c31b07157146371493924414a6d0e0da1bf91219af375cc100bc50c/awkward1-0.2.32-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "69b8109e2064f6f3ea28e001d0e940fc", "sha256": "bbec3f63cfe453b1b40b339afcfe490f9caefce941d1e182dabf922d606ac1da" }, "downloads": -1, "filename": "awkward1-0.2.32-cp36-cp36m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "69b8109e2064f6f3ea28e001d0e940fc", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9482478, "upload_time": "2020-08-19T19:21:18", "upload_time_iso_8601": "2020-08-19T19:21:18.863959Z", "url": "https://files.pythonhosted.org/packages/4c/c7/76465302fceb6af339d781edfa2ef3b9d2a878dd49c7decfa9dc5287fba3/awkward1-0.2.32-cp36-cp36m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "993c4b125793813f46640103d63ed09d", "sha256": "8e771eb32041c1b46ad59cdafa1c5747643dff58bbf4afe5cad82c0f28e8ee4f" }, "downloads": -1, "filename": "awkward1-0.2.32-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "993c4b125793813f46640103d63ed09d", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9281215, "upload_time": "2020-08-19T19:04:32", "upload_time_iso_8601": "2020-08-19T19:04:32.422388Z", "url": "https://files.pythonhosted.org/packages/97/e8/b29ff7ed9a942f76eb33d5a424d3443219bf221a582e386309df32aac709/awkward1-0.2.32-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bb5cbdf021448f8b6b82b343472ac1cd", "sha256": "128aa18a735d9e867999633a3f127caebd80e2f635dc3ea95ac2ebeda7baba4d" }, "downloads": -1, "filename": "awkward1-0.2.32-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "bb5cbdf021448f8b6b82b343472ac1cd", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 12172804, "upload_time": "2020-08-19T19:09:00", "upload_time_iso_8601": "2020-08-19T19:09:00.806153Z", "url": "https://files.pythonhosted.org/packages/a9/c2/f0bea07cbe2784dcaa772997a82615f431c3eeca21ca6d6f4ce0f4a6b8fb/awkward1-0.2.32-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1739f1f916e308176569f48651028703", "sha256": "d5ee1ce77e07fec75837eeeef06eb290b106d27679f8f0b0c469d6007153d18f" }, "downloads": -1, "filename": "awkward1-0.2.32-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "1739f1f916e308176569f48651028703", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9026732, "upload_time": "2020-08-19T18:54:26", "upload_time_iso_8601": "2020-08-19T18:54:26.974427Z", "url": "https://files.pythonhosted.org/packages/60/a2/bea7387ded66248e1847ace6b849a42c3883ec943c899324d90d16af8d45/awkward1-0.2.32-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "775e65107631c435675ce48e89c434fe", "sha256": "da903ccc6fcafefd25bca6f96aa51387b24a85c4f4968b92315c064dca6fe704" }, "downloads": -1, "filename": "awkward1-0.2.32-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "775e65107631c435675ce48e89c434fe", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8945204, "upload_time": "2020-08-19T19:14:57", "upload_time_iso_8601": "2020-08-19T19:14:57.270072Z", "url": "https://files.pythonhosted.org/packages/6e/f8/d45c22b63ab9b0430e34078b5cf9c9a1bba25c065a2acff00ded5dff42fc/awkward1-0.2.32-cp37-cp37m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d93966e98183336ab43b0cea8039de4e", "sha256": "cfa3942567bf76195372b2c1012d4a4a7549595d09a0d5b42d768d3444bf12e7" }, "downloads": -1, "filename": "awkward1-0.2.32-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "d93966e98183336ab43b0cea8039de4e", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8866886, "upload_time": "2020-08-19T19:14:40", "upload_time_iso_8601": "2020-08-19T19:14:40.949762Z", "url": "https://files.pythonhosted.org/packages/5e/7a/90b842f1011b9b8140bda207148ea9f412cb452d16a79d88e48d098b92cb/awkward1-0.2.32-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9645d3c55c89bb2bbb729827595ad1ff", "sha256": "b94a819c8dfdaa430576d60f054150931dc78d8a812ee48ffbeed93d7e3bacd0" }, "downloads": -1, "filename": "awkward1-0.2.32-cp37-cp37m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "9645d3c55c89bb2bbb729827595ad1ff", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9479290, "upload_time": "2020-08-19T19:21:21", "upload_time_iso_8601": "2020-08-19T19:21:21.375993Z", "url": "https://files.pythonhosted.org/packages/d9/e1/539c4a6003408207d79fe9a8bade1d39e81a1ee1a98e273604737e10ff5f/awkward1-0.2.32-cp37-cp37m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "645c586baab811a3bd3beff54954cbb3", "sha256": "770e60eeb055d13bd1635a8d8c907c0ea662bb579ca131f1d200e384b9677774" }, "downloads": -1, "filename": "awkward1-0.2.32-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "645c586baab811a3bd3beff54954cbb3", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9282293, "upload_time": "2020-08-19T19:08:59", "upload_time_iso_8601": "2020-08-19T19:08:59.904329Z", "url": "https://files.pythonhosted.org/packages/fa/45/e7430c63223438e4fbaf5d7c9e73e836481086a499958b7d86509f9a0f54/awkward1-0.2.32-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "95d4d52538e98139e1a46983211f40f2", "sha256": "da968d9792de4cf41efb41b956f01680922bb065aa1b5825d2ec5be5aee2f035" }, "downloads": -1, "filename": "awkward1-0.2.32-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "95d4d52538e98139e1a46983211f40f2", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 12174316, "upload_time": "2020-08-19T19:11:27", "upload_time_iso_8601": "2020-08-19T19:11:27.513596Z", "url": "https://files.pythonhosted.org/packages/fc/08/3c024f2be852074eaae5ef1acf886a8831a60a6d16cebf5b945f9d2a0170/awkward1-0.2.32-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ad519a7f8f8b71452582f9a58eb304ba", "sha256": "7c951ad2d86ce6c8273968e2018fbb2f3740f6da3a24c598eb010cbf62df3ce0" }, "downloads": -1, "filename": "awkward1-0.2.32-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "ad519a7f8f8b71452582f9a58eb304ba", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9115867, "upload_time": "2020-08-19T18:53:59", "upload_time_iso_8601": "2020-08-19T18:53:59.709588Z", "url": "https://files.pythonhosted.org/packages/cc/ab/80b42cc936bc08c74fc1c615495cd36fe65de8960e75fed2d02b8fac50a8/awkward1-0.2.32-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2ea6658dd32894fb05e52b6d50101499", "sha256": "432968184e49e1690f5f80f0d1e3bb984fd08c7c4ed61bb2d09465dbf95ce838" }, "downloads": -1, "filename": "awkward1-0.2.32-cp38-cp38-manylinux1_i686.whl", "has_sig": false, "md5_digest": "2ea6658dd32894fb05e52b6d50101499", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8903032, "upload_time": "2020-08-19T19:14:59", "upload_time_iso_8601": "2020-08-19T19:14:59.357279Z", "url": "https://files.pythonhosted.org/packages/15/3e/33cd3a3f28c97cd55e6347bc351a34f1a9d8d382f2bb2eadc6d2984ce9dc/awkward1-0.2.32-cp38-cp38-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0f6c31633fa05d24380cf5f9d85f0fd1", "sha256": "9fc100105677ce5b807fb9ace45c9fe726d8004032394cb90621f3533911e29b" }, "downloads": -1, "filename": "awkward1-0.2.32-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "0f6c31633fa05d24380cf5f9d85f0fd1", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8807535, "upload_time": "2020-08-19T19:14:43", "upload_time_iso_8601": "2020-08-19T19:14:43.326433Z", "url": "https://files.pythonhosted.org/packages/bc/ae/c9eed08ace4abeead4b41f1f5bb48f02cf53949dad30cabbe592e30fbef3/awkward1-0.2.32-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f170d83d767d9009e915001d6a2fd739", "sha256": "176dca2bb34138d24d5484e20f7230e12676b1331165ef4c679066441ff45094" }, "downloads": -1, "filename": "awkward1-0.2.32-cp38-cp38-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "f170d83d767d9009e915001d6a2fd739", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9478492, "upload_time": "2020-08-19T19:21:24", "upload_time_iso_8601": "2020-08-19T19:21:24.066273Z", "url": "https://files.pythonhosted.org/packages/08/1e/d2d53e759a565eccc70ea0ede0250e110de1aabca934382b3f868b02899a/awkward1-0.2.32-cp38-cp38-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b33bffa75dd9bb44c0c47bb3fc7b611d", "sha256": "49fd8f74ffd4eb900558651c460b2c7c8b03926c9f27e525714e38957a0002bb" }, "downloads": -1, "filename": "awkward1-0.2.32-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "b33bffa75dd9bb44c0c47bb3fc7b611d", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9284484, "upload_time": "2020-08-19T19:10:38", "upload_time_iso_8601": "2020-08-19T19:10:38.905024Z", "url": "https://files.pythonhosted.org/packages/7d/fb/55fb4a2d747d2b1fa59f1118faa8311e13743ca983a97ab1a0b91be03049/awkward1-0.2.32-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "19a180fae1f782ee490b29c83f029677", "sha256": "cded82b41dc42779a79be359b49462dec92e681e778829cf3680ad171b21da60" }, "downloads": -1, "filename": "awkward1-0.2.32-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "19a180fae1f782ee490b29c83f029677", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 12183230, "upload_time": "2020-08-19T19:15:36", "upload_time_iso_8601": "2020-08-19T19:15:36.937674Z", "url": "https://files.pythonhosted.org/packages/97/cb/e83916393886cd1667aa6f577e07ee13a5072ff579466b485bcf32b53a73/awkward1-0.2.32-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "25e72f83c1631e2bf6cc6a0cc6263156", "sha256": "f81e2b6e9e3a570219fb560eb3abfe82c5cd3a5c9976384a013cd20144d902d9" }, "downloads": -1, "filename": "awkward1-0.2.32-cp39-cp39-manylinux1_i686.whl", "has_sig": false, "md5_digest": "25e72f83c1631e2bf6cc6a0cc6263156", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8898470, "upload_time": "2020-08-19T19:15:01", "upload_time_iso_8601": "2020-08-19T19:15:01.437469Z", "url": "https://files.pythonhosted.org/packages/9b/34/353cef127dd86e37b6ade4d4ebd90d20ffbb21bae8015f8b6e44e316bf64/awkward1-0.2.32-cp39-cp39-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1bb5a587071eb055da6887f164f72207", "sha256": "d5df2482e22db6366284b412363d90056e8419e9e71958679cf84529252f34e0" }, "downloads": -1, "filename": "awkward1-0.2.32-cp39-cp39-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "1bb5a587071eb055da6887f164f72207", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8805224, "upload_time": "2020-08-19T19:14:46", "upload_time_iso_8601": "2020-08-19T19:14:46.053209Z", "url": "https://files.pythonhosted.org/packages/fb/c0/b52009725eb72e7b97f0c2a6b010030900dc846358856818239d9b87a940/awkward1-0.2.32-cp39-cp39-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "702851bdb0d3b88023127e2ac61cd7c7", "sha256": "adccfaa078f65e390e14ffbc7009a08067ec757b94e8709cdfa20746082a83a7" }, "downloads": -1, "filename": "awkward1-0.2.32-cp39-cp39-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "702851bdb0d3b88023127e2ac61cd7c7", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9480073, "upload_time": "2020-08-19T19:21:26", "upload_time_iso_8601": "2020-08-19T19:21:26.650512Z", "url": "https://files.pythonhosted.org/packages/61/49/09db02cf290f6b1cc88cf62bf922bbbe289db4e47f656bdb95ebb06e1b4a/awkward1-0.2.32-cp39-cp39-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1e78cc974e72842291fe35de07d2e884", "sha256": "e3d630c8a8cd886946712a5f389537f22fefcd6f9023bd8875cfcd81993cb8e2" }, "downloads": -1, "filename": "awkward1-0.2.32.tar.gz", "has_sig": false, "md5_digest": "1e78cc974e72842291fe35de07d2e884", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 655781, "upload_time": "2020-08-19T19:21:28", "upload_time_iso_8601": "2020-08-19T19:21:28.556358Z", "url": "https://files.pythonhosted.org/packages/66/67/3d02f3c4347b04be4298577a5c99bb7d55954a4b4dd4c8d3247574835c13/awkward1-0.2.32.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.33": [ { "comment_text": "", "digests": { "md5": "1efd23f1a9d8dd27eff8a874432baba9", "sha256": "e90c817d887d026c234df177bbd9e4aafaa6b1434f1306dd2d91ed01e818146c" }, "downloads": -1, "filename": "awkward1-0.2.33-cp27-cp27m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "1efd23f1a9d8dd27eff8a874432baba9", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9085750, "upload_time": "2020-08-22T09:15:51", "upload_time_iso_8601": "2020-08-22T09:15:51.435874Z", "url": "https://files.pythonhosted.org/packages/65/5b/b4bab37a7079ea4761b359d40f359b681d9ba44a71bd4c5d71efb2db0e96/awkward1-0.2.33-cp27-cp27m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a40a5b9ec0d6b54ddfed78c645ccda59", "sha256": "cd34965827fb8a53bee281f35e0e96cd4b635ca097aad5f579fec14f33601313" }, "downloads": -1, "filename": "awkward1-0.2.33-cp27-cp27m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "a40a5b9ec0d6b54ddfed78c645ccda59", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8951733, "upload_time": "2020-08-22T09:39:47", "upload_time_iso_8601": "2020-08-22T09:39:47.461537Z", "url": "https://files.pythonhosted.org/packages/81/99/6b1b2919aca7085300812946c8d6273952f39338b8c08c7438fe7a305962/awkward1-0.2.33-cp27-cp27m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "010c6bbc44df7e3164e6bb0fef4a1d7e", "sha256": "c2b3740335bec873a5d3269563fb490c7c5da63999513624c8d65459ef568d9d" }, "downloads": -1, "filename": "awkward1-0.2.33-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "010c6bbc44df7e3164e6bb0fef4a1d7e", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8875270, "upload_time": "2020-08-22T09:36:47", "upload_time_iso_8601": "2020-08-22T09:36:47.282251Z", "url": "https://files.pythonhosted.org/packages/61/5f/e0fbf98a5ff6346b61c5812a0338d264bda769394a4a7f31a1f7b46f7041/awkward1-0.2.33-cp27-cp27m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0cf7b9d3a1a1c43e1b59ea6db2a1ca6d", "sha256": "be795c159d884444ec3b49db80f74d12b17b0847728a44140493f5de69e58f64" }, "downloads": -1, "filename": "awkward1-0.2.33-cp27-cp27m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "0cf7b9d3a1a1c43e1b59ea6db2a1ca6d", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9526815, "upload_time": "2020-08-22T09:41:57", "upload_time_iso_8601": "2020-08-22T09:41:57.283607Z", "url": "https://files.pythonhosted.org/packages/26/c7/f709143b71c8070ac58e110b70dbe0b24e4e6871507182c76176d3ad7856/awkward1-0.2.33-cp27-cp27m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "066ac3190aa48390b07b432b4901b033", "sha256": "e174c6489b1cc2fb22f5799735aae73fcf2e57e0e0f991dd2309c8d06415692d" }, "downloads": -1, "filename": "awkward1-0.2.33-cp27-cp27mu-manylinux1_i686.whl", "has_sig": false, "md5_digest": "066ac3190aa48390b07b432b4901b033", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8951833, "upload_time": "2020-08-22T09:39:49", "upload_time_iso_8601": "2020-08-22T09:39:49.670624Z", "url": "https://files.pythonhosted.org/packages/13/dc/18ebc19b8712ed10de37694fb34d1776b7fb3befe3b39fd5dbe4119b7431/awkward1-0.2.33-cp27-cp27mu-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6818cdb59510e97ae49534e13ddf49d0", "sha256": "67266868e1cfb355fde9076992458af41e0f40b7f6a62cd2e2b9b63b7cd7c274" }, "downloads": -1, "filename": "awkward1-0.2.33-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "6818cdb59510e97ae49534e13ddf49d0", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8875254, "upload_time": "2020-08-22T09:36:49", "upload_time_iso_8601": "2020-08-22T09:36:49.322515Z", "url": "https://files.pythonhosted.org/packages/54/c3/72312254ea5dc84df70dc6be1d625b76cdfc754bc36ea8dbe9e9eeb28515/awkward1-0.2.33-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c1667fd0d91d88f97cad7e2789880590", "sha256": "43a34e083026a9e88e8f54ab66daebec5d13c172bd31d1f9449c0d70d6c4067c" }, "downloads": -1, "filename": "awkward1-0.2.33-cp27-cp27mu-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "c1667fd0d91d88f97cad7e2789880590", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9526907, "upload_time": "2020-08-22T09:41:59", "upload_time_iso_8601": "2020-08-22T09:41:59.072047Z", "url": "https://files.pythonhosted.org/packages/58/d8/592d7c607948900cc741af66852a8de687ced8519bf5a012d15815592ab1/awkward1-0.2.33-cp27-cp27mu-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9669a3848040a61465c5bfa03a10d709", "sha256": "258c49fc187966b16e8a33220c84a9f71405b51ce8747a3cf79e452874407c2f" }, "downloads": -1, "filename": "awkward1-0.2.33-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "9669a3848040a61465c5bfa03a10d709", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9127682, "upload_time": "2020-08-22T09:21:11", "upload_time_iso_8601": "2020-08-22T09:21:11.998745Z", "url": "https://files.pythonhosted.org/packages/9b/a6/542a6b9560318f0bba041e69582614ea8d2d0d21fd43fcc67536799f02c1/awkward1-0.2.33-cp27-cp27m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "41714b2db52a47bd7157201bea5eacb1", "sha256": "13693e6be8cf6d8abf34007530e34b1d509ab7c904c5da22e9c7616b8907b649" }, "downloads": -1, "filename": "awkward1-0.2.33-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "41714b2db52a47bd7157201bea5eacb1", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 11934889, "upload_time": "2020-08-22T09:25:59", "upload_time_iso_8601": "2020-08-22T09:25:59.029406Z", "url": "https://files.pythonhosted.org/packages/f7/db/27b48d4156e0ce8bd5d171d8a15174d0f598e4c9c09a92edccc6558d83b4/awkward1-0.2.33-cp27-cp27m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "02f0397a5fb968e484351357dda5308c", "sha256": "81b701ff00b81e9532462c3d55a99dbead57e7485decf7a344116393d5fc7ad2" }, "downloads": -1, "filename": "awkward1-0.2.33-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "02f0397a5fb968e484351357dda5308c", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8948996, "upload_time": "2020-08-22T09:39:51", "upload_time_iso_8601": "2020-08-22T09:39:51.872383Z", "url": "https://files.pythonhosted.org/packages/35/c1/6f74baf766d8236e2e2d4676205309be9ab65fa499349b4bba25f9f34447/awkward1-0.2.33-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a62f05132ae39422f74fa802782dab64", "sha256": "75292e38398fe4c5fa7e0ea9cb2b198ffb94ccea793288b3b23e2c88c7fb4ac6" }, "downloads": -1, "filename": "awkward1-0.2.33-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "a62f05132ae39422f74fa802782dab64", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8876293, "upload_time": "2020-08-22T09:36:51", "upload_time_iso_8601": "2020-08-22T09:36:51.534006Z", "url": "https://files.pythonhosted.org/packages/c0/0c/2b1cef30a98ad116919de81347114c3b5196a61f619e3336a3568f5c946f/awkward1-0.2.33-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "250279dde5ef83bdf10950889b3a468e", "sha256": "3d03a73e854d9c88aba60156e4ff82218b1e553a7d6aaeec33ec946b942699d1" }, "downloads": -1, "filename": "awkward1-0.2.33-cp35-cp35m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "250279dde5ef83bdf10950889b3a468e", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9526750, "upload_time": "2020-08-22T09:42:00", "upload_time_iso_8601": "2020-08-22T09:42:00.918028Z", "url": "https://files.pythonhosted.org/packages/61/55/30013ffe3363de7a7a2561499c6f9a18bd9a45ccfd521556b3fadd575f72/awkward1-0.2.33-cp35-cp35m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ed9ae8372bccba028daf2cc840861103", "sha256": "3dfbbba22fe4dcb6708ddc388280e241c26f8cc185b00a71a71a2d5ec060ab64" }, "downloads": -1, "filename": "awkward1-0.2.33-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "ed9ae8372bccba028daf2cc840861103", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9122822, "upload_time": "2020-08-22T09:21:03", "upload_time_iso_8601": "2020-08-22T09:21:03.926838Z", "url": "https://files.pythonhosted.org/packages/52/6f/df8adffe93fbf4ce74d13cb7e7cb59778c19c00ac65e5aee9c52cf279ecb/awkward1-0.2.33-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "34afffab62124bff21c5653c5e44d412", "sha256": "6facbd48632c0f0ba62699484974020d9960e6a0ce4ebccd2300dde243f97ecc" }, "downloads": -1, "filename": "awkward1-0.2.33-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "34afffab62124bff21c5653c5e44d412", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 11934734, "upload_time": "2020-08-22T09:26:30", "upload_time_iso_8601": "2020-08-22T09:26:30.216562Z", "url": "https://files.pythonhosted.org/packages/93/67/9dd728e19fe870791444f06aee84c15e28f13fadfaef4fcf2e8c11667b65/awkward1-0.2.33-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "baf21ec8e2f9ed7ecd4c0cda7cb5697a", "sha256": "3003d65495fd7b72c23b646aef4050f98a8add3da2ac7c3323f49ed09982a4e7" }, "downloads": -1, "filename": "awkward1-0.2.33-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "baf21ec8e2f9ed7ecd4c0cda7cb5697a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9085314, "upload_time": "2020-08-22T09:16:00", "upload_time_iso_8601": "2020-08-22T09:16:00.213551Z", "url": "https://files.pythonhosted.org/packages/a2/4c/7344a2145356bf9e38ea975d44cdf461436a69f272e2636e454192f8dd2a/awkward1-0.2.33-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cb8104b2e401b1f25618dd4240a7b592", "sha256": "8a62c531e2073759b392cfc0f7adfc3fe7dde0ab2e475f26e3d50bed149b694d" }, "downloads": -1, "filename": "awkward1-0.2.33-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "cb8104b2e401b1f25618dd4240a7b592", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8948985, "upload_time": "2020-08-22T09:39:53", "upload_time_iso_8601": "2020-08-22T09:39:53.681568Z", "url": "https://files.pythonhosted.org/packages/35/81/76e1730f03a9c75b2c547bec86db16ff57e60c1aaf0ee73c257c476ebb4e/awkward1-0.2.33-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "71dcfc3d5068653dd44391e02996d30e", "sha256": "1fe8af3b936a6488e9f24f50c17aa02ef418bb2dbb503972336d8fd918236124" }, "downloads": -1, "filename": "awkward1-0.2.33-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "71dcfc3d5068653dd44391e02996d30e", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8876233, "upload_time": "2020-08-22T09:36:53", "upload_time_iso_8601": "2020-08-22T09:36:53.753347Z", "url": "https://files.pythonhosted.org/packages/c9/c7/21698ddb99fc5f38e32bfaae6b5cb691afc2cd6bd38bc5a63215442d8a31/awkward1-0.2.33-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7268d30a3d62fdc3fa8d9e18625cf37a", "sha256": "356453991a56bdc8b75442c35a77fb95e05352bb2b9cfcc47ebdad70df9e1c6a" }, "downloads": -1, "filename": "awkward1-0.2.33-cp36-cp36m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "7268d30a3d62fdc3fa8d9e18625cf37a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9526784, "upload_time": "2020-08-22T09:42:03", "upload_time_iso_8601": "2020-08-22T09:42:03.522418Z", "url": "https://files.pythonhosted.org/packages/4d/83/4bf7fead6cde97f75b9d3032a598393e83c87c880422104e9a1eedcfbdd1/awkward1-0.2.33-cp36-cp36m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "da28ad9e31a5e36e20f057d296c2ab38", "sha256": "e9eaebbf1af1f16ff8d518bbe6fdfab3e41ec86e8d963489fb2c278cd2eab2b7" }, "downloads": -1, "filename": "awkward1-0.2.33-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "da28ad9e31a5e36e20f057d296c2ab38", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9122991, "upload_time": "2020-08-22T09:28:26", "upload_time_iso_8601": "2020-08-22T09:28:26.989824Z", "url": "https://files.pythonhosted.org/packages/fd/2a/9a11304132c6003bea22d51f80c2a013b710d621b1b9671067e94c62bdf3/awkward1-0.2.33-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d142b67aa37b6ad81e7d68801cb08462", "sha256": "162b2b3b61fe908ca5c3a0a2d53963f90e743eee5c33d33789ed2865e5d316ec" }, "downloads": -1, "filename": "awkward1-0.2.33-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "d142b67aa37b6ad81e7d68801cb08462", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 11934774, "upload_time": "2020-08-22T09:26:21", "upload_time_iso_8601": "2020-08-22T09:26:21.156229Z", "url": "https://files.pythonhosted.org/packages/1e/bd/d7569cc9442d2597fa552a91bd20a606c18d282de09050e56451faff154f/awkward1-0.2.33-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5d6e045cd29be8cd1ad74e0f159b815a", "sha256": "b62aac61d18ed20dae89a8087f1271e3330f6a4f285da5461e6e43948258871f" }, "downloads": -1, "filename": "awkward1-0.2.33-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "5d6e045cd29be8cd1ad74e0f159b815a", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9085388, "upload_time": "2020-08-22T09:16:08", "upload_time_iso_8601": "2020-08-22T09:16:08.233333Z", "url": "https://files.pythonhosted.org/packages/1b/10/f0f24bd3a93de77a714537a54396619bcbfa992e1b5b5bfaa1a8e1c20e5a/awkward1-0.2.33-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5794587706a18f6efa4adcfc8a0a1f02", "sha256": "291e5247eb740ca95c0853131638c433f99743df4d4118784a84e1d2fe95d605" }, "downloads": -1, "filename": "awkward1-0.2.33-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "5794587706a18f6efa4adcfc8a0a1f02", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8949922, "upload_time": "2020-08-22T09:39:55", "upload_time_iso_8601": "2020-08-22T09:39:55.776187Z", "url": "https://files.pythonhosted.org/packages/13/04/c74abd0d59fbdb9b1deaa246efb1c15917dc9e575d97161ff5cc8e234829/awkward1-0.2.33-cp37-cp37m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f93abb5d410e65681f3d914fd61884c7", "sha256": "53f55376b86d9ba0a8e9142b771ad29a6d7552f08414ac7804df8da45cccd2ac" }, "downloads": -1, "filename": "awkward1-0.2.33-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "f93abb5d410e65681f3d914fd61884c7", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8879104, "upload_time": "2020-08-22T09:36:55", "upload_time_iso_8601": "2020-08-22T09:36:55.856977Z", "url": "https://files.pythonhosted.org/packages/90/32/4260fe2cd05a51bfda1cd8d4330664bc917d340c44956ed921637f9bedaf/awkward1-0.2.33-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e17274d2045ae5124c93a8be25502ff2", "sha256": "8d18daefee08a50991c89047de4866f0ce09ab7c1b790767607df86dc5b11009" }, "downloads": -1, "filename": "awkward1-0.2.33-cp37-cp37m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "e17274d2045ae5124c93a8be25502ff2", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9524438, "upload_time": "2020-08-22T09:42:05", "upload_time_iso_8601": "2020-08-22T09:42:05.912381Z", "url": "https://files.pythonhosted.org/packages/d1/a6/fc0650462d5593171fafc792fb0600c73becb4cef776ef8fe6f839eb19dd/awkward1-0.2.33-cp37-cp37m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "280975435821df6b1b8c55919e17e66b", "sha256": "b0e4e1d100a09abd46e7643c2a26c8e8fd080971ac11367a4db7caa2af55aaa5" }, "downloads": -1, "filename": "awkward1-0.2.33-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "280975435821df6b1b8c55919e17e66b", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9124155, "upload_time": "2020-08-22T09:25:43", "upload_time_iso_8601": "2020-08-22T09:25:43.781877Z", "url": "https://files.pythonhosted.org/packages/ca/c7/79a2ac66423c3cd07a8b1e452bc8e17543288c1526401553cf6e5b60faec/awkward1-0.2.33-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3d367d4d225c3c3cb723b54239af7a90", "sha256": "6e27fd14afab2e6dc7c9d15dc9e07fd82fa9c0a4d23da3ab2b933cb72c896836" }, "downloads": -1, "filename": "awkward1-0.2.33-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "3d367d4d225c3c3cb723b54239af7a90", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 11934017, "upload_time": "2020-08-22T09:30:54", "upload_time_iso_8601": "2020-08-22T09:30:54.197763Z", "url": "https://files.pythonhosted.org/packages/e9/f3/86164de8a166d2a6483a75b49632c5d8f69b0788deb9b1d255f0af058ab9/awkward1-0.2.33-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dd8f33556f72f708b72808f5e6c7e476", "sha256": "5f5de5437e167507fd9816e15ec1ed11e548372740faa78ad15cda22aaf38963" }, "downloads": -1, "filename": "awkward1-0.2.33-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "dd8f33556f72f708b72808f5e6c7e476", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9174087, "upload_time": "2020-08-22T09:15:33", "upload_time_iso_8601": "2020-08-22T09:15:33.958815Z", "url": "https://files.pythonhosted.org/packages/31/2d/23361513469d2914698d5d91b1596006829287bc24ea4590485092d0898f/awkward1-0.2.33-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "123151bcaeba696447503f31bb079144", "sha256": "d9a5ca9988a4e380dc41fc61f22ab4f16cd72b6ad689eff8e9acb638a2b0c849" }, "downloads": -1, "filename": "awkward1-0.2.33-cp38-cp38-manylinux1_i686.whl", "has_sig": false, "md5_digest": "123151bcaeba696447503f31bb079144", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8900350, "upload_time": "2020-08-22T09:39:57", "upload_time_iso_8601": "2020-08-22T09:39:57.444458Z", "url": "https://files.pythonhosted.org/packages/bd/27/eb5b68aca96e2ea3e82774e527ca5f9dbe7b06b1bb29843097991e5448d5/awkward1-0.2.33-cp38-cp38-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6ecfe99a5f8f83f1656423bd7a6a03bf", "sha256": "42373dc17cd7e4c35f5c253dfe887fa5925cdcd60c787074d5f37b86c86f4a6d" }, "downloads": -1, "filename": "awkward1-0.2.33-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "6ecfe99a5f8f83f1656423bd7a6a03bf", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8815547, "upload_time": "2020-08-22T09:36:57", "upload_time_iso_8601": "2020-08-22T09:36:57.956252Z", "url": "https://files.pythonhosted.org/packages/e2/e9/66fb501cc1dcd66f90231f06c5ad13ca54daaaf2b12622008c140ec03c21/awkward1-0.2.33-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "039290c6b7487938d0c43f516b88a92c", "sha256": "7d05499cf058c71a89bea8231fecb888c8dfc573fd60e4fc842193f7354335f8" }, "downloads": -1, "filename": "awkward1-0.2.33-cp38-cp38-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "039290c6b7487938d0c43f516b88a92c", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9521056, "upload_time": "2020-08-22T09:42:07", "upload_time_iso_8601": "2020-08-22T09:42:07.651783Z", "url": "https://files.pythonhosted.org/packages/04/42/b93a67fc31e7c918282de68236cd7ee69f72a1b6c72866f4aa3497fd5d51/awkward1-0.2.33-cp38-cp38-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "80e4c51e58fc413475249249579a327e", "sha256": "74c7be22d5c8a1609fa1e44a103cd37a783175719c9459802630d7f91671bd10" }, "downloads": -1, "filename": "awkward1-0.2.33-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "80e4c51e58fc413475249249579a327e", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9130193, "upload_time": "2020-08-22T09:30:41", "upload_time_iso_8601": "2020-08-22T09:30:41.135399Z", "url": "https://files.pythonhosted.org/packages/09/77/e5337efd4518c4012ad381d8afa83c89e40cbba23452021cfb0c6f940f6c/awkward1-0.2.33-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6eb00dd67d7595702a4a9b16b171ff75", "sha256": "54a2293595991321ec2a5111cdfe07ddd538d22a204c3ca87a449cc6c732ee58" }, "downloads": -1, "filename": "awkward1-0.2.33-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "6eb00dd67d7595702a4a9b16b171ff75", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 11941405, "upload_time": "2020-08-22T09:35:39", "upload_time_iso_8601": "2020-08-22T09:35:39.243350Z", "url": "https://files.pythonhosted.org/packages/3a/12/fcc665e0d5d756bd1f558aebb7386ae9a9640dfcd6467655cd90875194c7/awkward1-0.2.33-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7368844e9b9f2fe10ee342cd44349f2e", "sha256": "fb23c899022fb70d661a71bd3231025937636f4732d688ec2e61a4d22583342a" }, "downloads": -1, "filename": "awkward1-0.2.33-cp39-cp39-manylinux1_i686.whl", "has_sig": false, "md5_digest": "7368844e9b9f2fe10ee342cd44349f2e", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8898500, "upload_time": "2020-08-22T09:39:59", "upload_time_iso_8601": "2020-08-22T09:39:59.510474Z", "url": "https://files.pythonhosted.org/packages/15/5c/31e36121c0af021c7602b798556e00458f053c0b12eafed49e8ef79fddee/awkward1-0.2.33-cp39-cp39-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f7019d737f3d96c54bd3c330c38cb64e", "sha256": "ada9d59973d4cf3b2c185e1611291e3f2d3fafebd9ce97401dd509a40e2e4ede" }, "downloads": -1, "filename": "awkward1-0.2.33-cp39-cp39-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "f7019d737f3d96c54bd3c330c38cb64e", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8820690, "upload_time": "2020-08-22T09:36:59", "upload_time_iso_8601": "2020-08-22T09:36:59.970986Z", "url": "https://files.pythonhosted.org/packages/49/7c/ea4e90cd6b506e305219aa376bb0c39559c62411c0e4b8e09a58e1863496/awkward1-0.2.33-cp39-cp39-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fec1e87138d7baef95bcaf4bc220d5fc", "sha256": "4a3b29fbe23a28faeed13d9559ca9c26a1ff68c0666f98c8dddda57d5e901860" }, "downloads": -1, "filename": "awkward1-0.2.33-cp39-cp39-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "fec1e87138d7baef95bcaf4bc220d5fc", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9523035, "upload_time": "2020-08-22T09:42:09", "upload_time_iso_8601": "2020-08-22T09:42:09.613438Z", "url": "https://files.pythonhosted.org/packages/f9/cd/bd8b69c283873dcfc04598f94cd7787d3304d064e19bea95c502d760cf5f/awkward1-0.2.33-cp39-cp39-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9419394663fed5d6d6dc8ad923eb720e", "sha256": "bf3de210d0a88fb14a97c296f54ed2d5b686a785bb5fd7a31277f22b8daa9513" }, "downloads": -1, "filename": "awkward1-0.2.33.tar.gz", "has_sig": false, "md5_digest": "9419394663fed5d6d6dc8ad923eb720e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 663003, "upload_time": "2020-08-22T09:42:11", "upload_time_iso_8601": "2020-08-22T09:42:11.211153Z", "url": "https://files.pythonhosted.org/packages/45/ad/c2e4c341f394e20114a28f71113f0412494ba71680816208dff6f47eda75/awkward1-0.2.33.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.34": [ { "comment_text": "", "digests": { "md5": "627d421b1eb95f9f4153505b285aa725", "sha256": "0df874433ae349a3f3bf12afc6bb7c271d0fed6d4ae456330524be4fa5452ebd" }, "downloads": -1, "filename": "awkward1-0.2.34-cp27-cp27m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "627d421b1eb95f9f4153505b285aa725", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9129778, "upload_time": "2020-08-25T19:13:28", "upload_time_iso_8601": "2020-08-25T19:13:28.650776Z", "url": "https://files.pythonhosted.org/packages/de/7f/1175c3d907a42f1c0c5bdbd43a6ab37b3a0e34f2520ef77d5070a76ffec8/awkward1-0.2.34-cp27-cp27m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7c9939675c5d9efa9731e37e109f81a8", "sha256": "2c5f7c76cdf4b4b73a3482f0babbdf9e9b2f7347a15e670ca1400187b06083de" }, "downloads": -1, "filename": "awkward1-0.2.34-cp27-cp27m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "7c9939675c5d9efa9731e37e109f81a8", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8997396, "upload_time": "2020-08-25T19:32:25", "upload_time_iso_8601": "2020-08-25T19:32:25.006785Z", "url": "https://files.pythonhosted.org/packages/aa/40/a4aa877f4fef119aba01db2f3cf571fe9bda2b72a868f67c53c0ae37a8e4/awkward1-0.2.34-cp27-cp27m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c3e2c9d3f02a69349f654e17ebb90a02", "sha256": "cab0ed5a2ec4758642a9952948ce82227d969960484b434967e065606438f6b7" }, "downloads": -1, "filename": "awkward1-0.2.34-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "c3e2c9d3f02a69349f654e17ebb90a02", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8918823, "upload_time": "2020-08-25T19:31:31", "upload_time_iso_8601": "2020-08-25T19:31:31.001192Z", "url": "https://files.pythonhosted.org/packages/11/47/e8fe0603e014e2be714ce9c90df59ef984d07e8bbb9f2e7f50452450d9b2/awkward1-0.2.34-cp27-cp27m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c00cdad7296f118bdcb890eefefa4d6e", "sha256": "cf33c2c8fcb0eb0ea2839d457ccf62dfb390f4ac5de2f421950e1dfb997fe7e2" }, "downloads": -1, "filename": "awkward1-0.2.34-cp27-cp27m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "c00cdad7296f118bdcb890eefefa4d6e", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9587784, "upload_time": "2020-08-25T19:36:41", "upload_time_iso_8601": "2020-08-25T19:36:41.787579Z", "url": "https://files.pythonhosted.org/packages/a6/98/f06ef1c55afb68b8dc72dc068511abc58fc5bdd251259407a5f88384c1e5/awkward1-0.2.34-cp27-cp27m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fc86718b5ccdbe03c03a21656a65f892", "sha256": "4d39bcdbbbc5a71fd99773f360ced67ac29626c47605abbe9f5f03d8edcf9442" }, "downloads": -1, "filename": "awkward1-0.2.34-cp27-cp27mu-manylinux1_i686.whl", "has_sig": false, "md5_digest": "fc86718b5ccdbe03c03a21656a65f892", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8997405, "upload_time": "2020-08-25T19:32:27", "upload_time_iso_8601": "2020-08-25T19:32:27.287731Z", "url": "https://files.pythonhosted.org/packages/04/08/c3e0f7b773594df56fd4fa9aa6e128268965a664ed685c97893640017def/awkward1-0.2.34-cp27-cp27mu-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "eb64f5f17103c74033ada4da93a16e23", "sha256": "b5f450a456a51c7bba196ba189c0b50ffe273831eaaec00a10a5f9f14f573d73" }, "downloads": -1, "filename": "awkward1-0.2.34-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "eb64f5f17103c74033ada4da93a16e23", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8918839, "upload_time": "2020-08-25T19:31:33", "upload_time_iso_8601": "2020-08-25T19:31:33.958940Z", "url": "https://files.pythonhosted.org/packages/6a/90/562baf55b733b077c35a866fd131fa59fe860e9d3b6b1c090154b6e8c937/awkward1-0.2.34-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "873bbc49e0ac8d9b55445a032fd0a21f", "sha256": "9a8ce95025d5ef1c3279e4383540b4145a6f23dcbc1263a3b5655759508d0910" }, "downloads": -1, "filename": "awkward1-0.2.34-cp27-cp27mu-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "873bbc49e0ac8d9b55445a032fd0a21f", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9587755, "upload_time": "2020-08-25T19:36:45", "upload_time_iso_8601": "2020-08-25T19:36:45.466219Z", "url": "https://files.pythonhosted.org/packages/83/61/55b2592f6427c6832a8a2d9a18ae36b7083a4c9cf457fc44f91ec682f588/awkward1-0.2.34-cp27-cp27mu-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e6310dd03e984f39460072affb394726", "sha256": "fbbc56b88373ca1d5770e701a5b57ba5b5162123156a7ea8bb8b368bb46b8908" }, "downloads": -1, "filename": "awkward1-0.2.34-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "e6310dd03e984f39460072affb394726", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9184863, "upload_time": "2020-08-25T19:16:29", "upload_time_iso_8601": "2020-08-25T19:16:29.966778Z", "url": "https://files.pythonhosted.org/packages/99/30/28120f2b5409b465531d5cce25fc02a2012cfff89000918464bbf2876d74/awkward1-0.2.34-cp27-cp27m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "02595e68fe70ff2f0d3724acc3c87439", "sha256": "da8000a5a8adc2c4c6f5e954b8764ebaec279c17ac60a879109744de833ae845" }, "downloads": -1, "filename": "awkward1-0.2.34-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "02595e68fe70ff2f0d3724acc3c87439", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 12011280, "upload_time": "2020-08-25T19:25:45", "upload_time_iso_8601": "2020-08-25T19:25:45.503048Z", "url": "https://files.pythonhosted.org/packages/ad/23/d6fdbd7756d585c07fed8ef42ff88d5aba6b48570e1f9ed8ce91c8871228/awkward1-0.2.34-cp27-cp27m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "67b9d6af5c6d133d8ce42e8efcfe608c", "sha256": "120ee304becbbce229297b3712d564504286e958ba28ceff43993f2d810fe3eb" }, "downloads": -1, "filename": "awkward1-0.2.34-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "67b9d6af5c6d133d8ce42e8efcfe608c", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8996419, "upload_time": "2020-08-25T19:32:30", "upload_time_iso_8601": "2020-08-25T19:32:30.745675Z", "url": "https://files.pythonhosted.org/packages/73/e1/f039bbd83b36a45afe4def1189b21a5f300e26d217cbc3167c6269c1830f/awkward1-0.2.34-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c1c6e9019dd9027a7e0652e38a54d7bb", "sha256": "e0d0d8fd071fbbda27f812006046fa33e96538533eeae7a0ac9243660a554c11" }, "downloads": -1, "filename": "awkward1-0.2.34-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "c1c6e9019dd9027a7e0652e38a54d7bb", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8924002, "upload_time": "2020-08-25T19:31:37", "upload_time_iso_8601": "2020-08-25T19:31:37.062816Z", "url": "https://files.pythonhosted.org/packages/98/5a/45e4e988982a2d2e2808d16b9c9885f022e767accc27c721904340eecfe1/awkward1-0.2.34-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "51d0a3ad7527faf160a1fad5f33ce209", "sha256": "349c68b5e9d10966f0dd4f51f832b17edaeb0c1afe7217a9c5770e2433bd3e6e" }, "downloads": -1, "filename": "awkward1-0.2.34-cp35-cp35m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "51d0a3ad7527faf160a1fad5f33ce209", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9587888, "upload_time": "2020-08-25T19:36:48", "upload_time_iso_8601": "2020-08-25T19:36:48.982832Z", "url": "https://files.pythonhosted.org/packages/b5/be/9a640dc7591a8b2f198c959eb45b34c8d7258deeb8243f715ff6a0bb845e/awkward1-0.2.34-cp35-cp35m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d10ce35b77df1350f7b929b3364ea024", "sha256": "2f46c32522b30c6860c87fcd7e770f713d9d6796cf569088e9d00c580d56aba7" }, "downloads": -1, "filename": "awkward1-0.2.34-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "d10ce35b77df1350f7b929b3364ea024", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9182445, "upload_time": "2020-08-25T19:18:59", "upload_time_iso_8601": "2020-08-25T19:18:59.714777Z", "url": "https://files.pythonhosted.org/packages/f7/22/f75a59cf3513df4a1314dd6ed44fc694ac6b7ad293e09e945afe4381c824/awkward1-0.2.34-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9d3539a965bdb0663ccd1b52dc1751e1", "sha256": "e38794e32a903203c6ee27e5433e6075a2f878747758ac17003d43d77db7afc0" }, "downloads": -1, "filename": "awkward1-0.2.34-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "9d3539a965bdb0663ccd1b52dc1751e1", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 12009475, "upload_time": "2020-08-25T19:18:54", "upload_time_iso_8601": "2020-08-25T19:18:54.022778Z", "url": "https://files.pythonhosted.org/packages/c4/9a/80ec76b6f5dd9fb2b65d9301d474cdc511cb0b7cc2969d3a2f338c04f9d9/awkward1-0.2.34-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5ea17c9a6759cd1ac8d79ef4c68f58a8", "sha256": "aa098a379edbcc714cc1330a5ec694dc7209e5bba38f7f5ca055fb9473e618e7" }, "downloads": -1, "filename": "awkward1-0.2.34-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "5ea17c9a6759cd1ac8d79ef4c68f58a8", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9130165, "upload_time": "2020-08-25T19:18:05", "upload_time_iso_8601": "2020-08-25T19:18:05.335520Z", "url": "https://files.pythonhosted.org/packages/5c/f7/a8159075cd69062b4ef087523be862fd044e780c688ffdd774de012b5754/awkward1-0.2.34-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dd7b9190ef95da047c2914c1d7ca34a6", "sha256": "29655110347d5229b67e9d5b4e557220a0f94a9a556a8cc6bf80f43b66c1dcfd" }, "downloads": -1, "filename": "awkward1-0.2.34-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "dd7b9190ef95da047c2914c1d7ca34a6", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8996413, "upload_time": "2020-08-25T19:32:34", "upload_time_iso_8601": "2020-08-25T19:32:34.574883Z", "url": "https://files.pythonhosted.org/packages/b6/83/302028545db5dc3469c382502e5f638dea14e9ced9abd741b7f618246ad7/awkward1-0.2.34-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a6216578cd7b604d69cbb303384dbdfd", "sha256": "7752bcc42a349212b24ea24559d1e4fe319602926ac8441747df00e7f289678b" }, "downloads": -1, "filename": "awkward1-0.2.34-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "a6216578cd7b604d69cbb303384dbdfd", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8924016, "upload_time": "2020-08-25T19:31:40", "upload_time_iso_8601": "2020-08-25T19:31:40.514924Z", "url": "https://files.pythonhosted.org/packages/b1/3e/16b91222cc852984f5cc5d9768a6c2aebb7020ffac2cbf11311386646251/awkward1-0.2.34-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8e0bce7179bec714e080e152e19a1643", "sha256": "e1f62375af3630d27e02df7909da5da24efb2ec34a0d3f8c28a05bc06800fcaa" }, "downloads": -1, "filename": "awkward1-0.2.34-cp36-cp36m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "8e0bce7179bec714e080e152e19a1643", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9587880, "upload_time": "2020-08-25T19:36:52", "upload_time_iso_8601": "2020-08-25T19:36:52.299253Z", "url": "https://files.pythonhosted.org/packages/82/32/7dcd6524794ec36c3ca5c711cce286152ca61a1dd35bfe66928e89fa13f3/awkward1-0.2.34-cp36-cp36m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "22fe681e49836b4b99e2eb2174007012", "sha256": "88c221a23b9a3aee7988b0af7d2c4a13363f7d6d4d926b4edf98eaffd8346d1e" }, "downloads": -1, "filename": "awkward1-0.2.34-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "22fe681e49836b4b99e2eb2174007012", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9182390, "upload_time": "2020-08-25T19:24:55", "upload_time_iso_8601": "2020-08-25T19:24:55.122788Z", "url": "https://files.pythonhosted.org/packages/5c/81/bc7a0d88a08ba333f325c50003c3abc747378b394aa1a2faab664a240404/awkward1-0.2.34-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8eaa7a806d043e150f7c47fd82b01bfc", "sha256": "0a131f56d373513c143915ec3b5c2c0b97e8c574b0913d4c0d009027732af2bb" }, "downloads": -1, "filename": "awkward1-0.2.34-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "8eaa7a806d043e150f7c47fd82b01bfc", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 12009233, "upload_time": "2020-08-25T19:23:01", "upload_time_iso_8601": "2020-08-25T19:23:01.574870Z", "url": "https://files.pythonhosted.org/packages/12/b3/ff7199ff1a8f0adf8b23ec0e5f78b945cfd7858d9ab5705102bbab81bbbe/awkward1-0.2.34-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e6de5d745c86345e933782e2d38a0005", "sha256": "a0269a710f5bae6f9c4d48b9be120fc625df6ac01a9e4750f50fb5a98c018f80" }, "downloads": -1, "filename": "awkward1-0.2.34-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "e6de5d745c86345e933782e2d38a0005", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9130122, "upload_time": "2020-08-25T19:10:47", "upload_time_iso_8601": "2020-08-25T19:10:47.140439Z", "url": "https://files.pythonhosted.org/packages/0a/79/1af854036276716f2e07f075a714167af5c94e34ecb4eb290a5b78c4ceb6/awkward1-0.2.34-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "76e2e175ee2c352584e315511c7dfe72", "sha256": "065565240de328dcecbe32efa8a63550e51508cd4bdd559051e9217863b6ad05" }, "downloads": -1, "filename": "awkward1-0.2.34-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "76e2e175ee2c352584e315511c7dfe72", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8995596, "upload_time": "2020-08-25T19:32:37", "upload_time_iso_8601": "2020-08-25T19:32:37.605929Z", "url": "https://files.pythonhosted.org/packages/8d/97/82b392f4738fc54f7dffff23b132dc8e96a7069d000f283be276d05795dc/awkward1-0.2.34-cp37-cp37m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3c392daa542485d13148ca6331bb3889", "sha256": "5a2269ceecee97a6ead4bdcf77c428e283f2534050d86e038712d792f359b610" }, "downloads": -1, "filename": "awkward1-0.2.34-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "3c392daa542485d13148ca6331bb3889", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8920852, "upload_time": "2020-08-25T19:31:43", "upload_time_iso_8601": "2020-08-25T19:31:43.473715Z", "url": "https://files.pythonhosted.org/packages/b5/99/b3b8b7a7b930ead5a4d867e16e9382cb6564f65d2c2db5c2c0230527e50a/awkward1-0.2.34-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "375d8da799be7f5b94622565443bff20", "sha256": "46ec5852b7b7e2a191c0081605ab03c411d667f191ff1914235d9af264207a9c" }, "downloads": -1, "filename": "awkward1-0.2.34-cp37-cp37m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "375d8da799be7f5b94622565443bff20", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9584528, "upload_time": "2020-08-25T19:36:55", "upload_time_iso_8601": "2020-08-25T19:36:55.675483Z", "url": "https://files.pythonhosted.org/packages/fd/08/e8310ac9beb7a597fb8046eed588cb07d23966a56ad07911c48543474ade/awkward1-0.2.34-cp37-cp37m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "13f6ac2db22f6ed74c7b5dc2bda74fec", "sha256": "842822b973c8123ca4562593f97eb3db3da2e2188cbf43d17a8cf5070f802b02" }, "downloads": -1, "filename": "awkward1-0.2.34-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "13f6ac2db22f6ed74c7b5dc2bda74fec", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9183240, "upload_time": "2020-08-25T19:26:16", "upload_time_iso_8601": "2020-08-25T19:26:16.266779Z", "url": "https://files.pythonhosted.org/packages/0f/56/40a00a5a4f271eea7e5c6d949224366c9e805a588070cc0b349d2c6ed5e8/awkward1-0.2.34-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bf312e3d55a51cc88db0e0415e9b6ba6", "sha256": "78c5c350a1eb1e29b98798b2325678b226edad725d5d319c9f2240ca86e64948" }, "downloads": -1, "filename": "awkward1-0.2.34-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "bf312e3d55a51cc88db0e0415e9b6ba6", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 12009931, "upload_time": "2020-08-25T19:28:16", "upload_time_iso_8601": "2020-08-25T19:28:16.982780Z", "url": "https://files.pythonhosted.org/packages/39/4d/7924fe9d9120f08135a1813628b45a7d341a8cc95cfc73a276c0ce4a8df0/awkward1-0.2.34-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2db3d4e54f3d22145df41d303be51f58", "sha256": "9dc2efddea5dc4cfa91c4abc1e0e4ba05be7ed66ea83061828388bc7d7ed5f1e" }, "downloads": -1, "filename": "awkward1-0.2.34-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "2db3d4e54f3d22145df41d303be51f58", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9224755, "upload_time": "2020-08-25T19:09:39", "upload_time_iso_8601": "2020-08-25T19:09:39.513096Z", "url": "https://files.pythonhosted.org/packages/4e/7f/e6cf1f1cccf2db3d150b964964a52bdebe0a70c4e22b9348d5be9f3c11b2/awkward1-0.2.34-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a76d3e1e08771d2db9faf0e504570bac", "sha256": "a7ecba1871275d093a7d20be72bcc4521e0c0764338bce2a8f160ed392dfdfa5" }, "downloads": -1, "filename": "awkward1-0.2.34-cp38-cp38-manylinux1_i686.whl", "has_sig": false, "md5_digest": "a76d3e1e08771d2db9faf0e504570bac", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8946851, "upload_time": "2020-08-25T19:32:41", "upload_time_iso_8601": "2020-08-25T19:32:41.138565Z", "url": "https://files.pythonhosted.org/packages/b2/91/c9cc0ce647fd6f710fdd327c80b9a54ed67377a28c7c7a5a49fe0eb1c054/awkward1-0.2.34-cp38-cp38-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4a7384cd71d7eaaa747b37dd2c654f6d", "sha256": "1b35741044b643540af8b1edb23c5cbad3c3c238536ab26eb7ce453c4505dc18" }, "downloads": -1, "filename": "awkward1-0.2.34-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "4a7384cd71d7eaaa747b37dd2c654f6d", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8862104, "upload_time": "2020-08-25T19:31:46", "upload_time_iso_8601": "2020-08-25T19:31:46.175820Z", "url": "https://files.pythonhosted.org/packages/d7/12/c789fba9c36be9a5f692327eb0c91704187bce9295f7a42431ad3bd59972/awkward1-0.2.34-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dee3caacca3a6be18e46211cdc228bd9", "sha256": "2f027c13276ea05e4900bbc28549a3e5f2f24f7100a0146dd441dd445f0641c5" }, "downloads": -1, "filename": "awkward1-0.2.34-cp38-cp38-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "dee3caacca3a6be18e46211cdc228bd9", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9579071, "upload_time": "2020-08-25T19:36:59", "upload_time_iso_8601": "2020-08-25T19:36:59.194780Z", "url": "https://files.pythonhosted.org/packages/d5/d6/f6f62110768f87871e40afd368a5144e8ee89cdb5c5989277fde5615ba50/awkward1-0.2.34-cp38-cp38-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0a03ce6d164f06d819644f6f82e50f1a", "sha256": "f392df593b81caef6492a7eaa90105c82b5d91f3c6cbe0d1d9d57ef1803ee6bf" }, "downloads": -1, "filename": "awkward1-0.2.34-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "0a03ce6d164f06d819644f6f82e50f1a", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9187840, "upload_time": "2020-08-25T19:29:26", "upload_time_iso_8601": "2020-08-25T19:29:26.050781Z", "url": "https://files.pythonhosted.org/packages/7a/e4/252c60e1dc6d5e6a29efb8c97ea01588b3c57d7dad1ffa2c0de068585239/awkward1-0.2.34-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7a4dae758eae209c0b79ff6a1786e09f", "sha256": "ba3a2f01ea18660d727e135520823638c64e79fe634c8040dec9af0c455346c0" }, "downloads": -1, "filename": "awkward1-0.2.34-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "7a4dae758eae209c0b79ff6a1786e09f", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 12017784, "upload_time": "2020-08-25T19:28:57", "upload_time_iso_8601": "2020-08-25T19:28:57.730781Z", "url": "https://files.pythonhosted.org/packages/41/26/2f4f72489794fdc1e307778b6fcc1b6ad0a07898d17e73e3b9efa86d7015/awkward1-0.2.34-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e3531953c5c11888af01f95165ddd7ca", "sha256": "de5c4f5f1f3811a58192b20f9d3873207056253d66008974dc974c56a8b63c27" }, "downloads": -1, "filename": "awkward1-0.2.34-cp39-cp39-manylinux1_i686.whl", "has_sig": false, "md5_digest": "e3531953c5c11888af01f95165ddd7ca", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8954721, "upload_time": "2020-08-25T19:32:44", "upload_time_iso_8601": "2020-08-25T19:32:44.326777Z", "url": "https://files.pythonhosted.org/packages/94/f9/78053c2fd9cb9ff4a32e873460e537b4d71e1af3b18268e2846d02044ee0/awkward1-0.2.34-cp39-cp39-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7c43907d6d7ca8633a293c6021cd17a5", "sha256": "a7aebadcaafe066757361a4d60e75fe9e9f4edb6c3ba0d1921a05c2b3cf1c50a" }, "downloads": -1, "filename": "awkward1-0.2.34-cp39-cp39-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "7c43907d6d7ca8633a293c6021cd17a5", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8864043, "upload_time": "2020-08-25T19:31:49", "upload_time_iso_8601": "2020-08-25T19:31:49.794779Z", "url": "https://files.pythonhosted.org/packages/59/1a/f80adcdf67bc4ac5a93ecc8194796ac1478680b40f075b7bb309ccd755a9/awkward1-0.2.34-cp39-cp39-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "06b96ed649dc728d1fae19716167410e", "sha256": "a428914a864d43a8bcfa4f2fa9a099046feffcacb150b5959016dee09f5a41b7" }, "downloads": -1, "filename": "awkward1-0.2.34-cp39-cp39-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "06b96ed649dc728d1fae19716167410e", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9579141, "upload_time": "2020-08-25T19:37:02", "upload_time_iso_8601": "2020-08-25T19:37:02.422541Z", "url": "https://files.pythonhosted.org/packages/9a/70/bee5818bb0d527e5a269b7520c264f0a8e6bc64a75c45195a87f0a25cccf/awkward1-0.2.34-cp39-cp39-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ded5df939502a22aaceeac32fa3ba01c", "sha256": "8ef68792081233bade6475cc45d570b01fb3473cc5df273fdd645c05b124371d" }, "downloads": -1, "filename": "awkward1-0.2.34.tar.gz", "has_sig": false, "md5_digest": "ded5df939502a22aaceeac32fa3ba01c", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 668871, "upload_time": "2020-08-25T19:37:06", "upload_time_iso_8601": "2020-08-25T19:37:06.058821Z", "url": "https://files.pythonhosted.org/packages/5a/0a/771766150012dd77f21c69c46fb6d56c61cb4c40d893a8378981acf139b4/awkward1-0.2.34.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.35": [ { "comment_text": "", "digests": { "md5": "b8a0a5fe0299de68670e81814bd9ea36", "sha256": "d74a45257c276a9a20a3c192c8f7abe611f8469c6f2d3ebda63a21767e59772b" }, "downloads": -1, "filename": "awkward1-0.2.35-cp27-cp27m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "b8a0a5fe0299de68670e81814bd9ea36", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9129766, "upload_time": "2020-08-26T15:54:00", "upload_time_iso_8601": "2020-08-26T15:54:00.613115Z", "url": "https://files.pythonhosted.org/packages/bb/21/0d66b6c3663fe735036536c5eb778fd3cb05d5becd40c616c6b0584c3d12/awkward1-0.2.35-cp27-cp27m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "31f6827ef48c7f43ee992f6920797609", "sha256": "d5d664a7b414d3ac661fb2c77780a7cad2bc40d9fa6e53e564c0d69027149053" }, "downloads": -1, "filename": "awkward1-0.2.35-cp27-cp27m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "31f6827ef48c7f43ee992f6920797609", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8997426, "upload_time": "2020-08-26T16:19:36", "upload_time_iso_8601": "2020-08-26T16:19:36.730085Z", "url": "https://files.pythonhosted.org/packages/d0/d4/ceb4b7641ad3aee446d70ae4c1e59faef3a919101f2c04048440a2bc874c/awkward1-0.2.35-cp27-cp27m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2acc838ff2cd3aa69e4d6d6c40987d20", "sha256": "6bac7729445c1197b1b0f2c0874e5b75dfba448a31fca7ba639adf3e719b9686" }, "downloads": -1, "filename": "awkward1-0.2.35-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "2acc838ff2cd3aa69e4d6d6c40987d20", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8918863, "upload_time": "2020-08-26T16:15:51", "upload_time_iso_8601": "2020-08-26T16:15:51.071862Z", "url": "https://files.pythonhosted.org/packages/47/f5/36bb6bfefa67b633fcc44ae6c4ef4a27eb8cfd85e3da130b47d7d5187097/awkward1-0.2.35-cp27-cp27m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "482d75ede424d2ce4a5df2d9c8757392", "sha256": "aa1f5ba73fed81b1f3adc65cda936b92b39079728887b77238711449acfc455c" }, "downloads": -1, "filename": "awkward1-0.2.35-cp27-cp27m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "482d75ede424d2ce4a5df2d9c8757392", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9587828, "upload_time": "2020-08-26T16:21:28", "upload_time_iso_8601": "2020-08-26T16:21:28.211942Z", "url": "https://files.pythonhosted.org/packages/d9/a8/352d5d815c3a2adb132be8e4da10c434d2af7906c4bebd3c2b0fb40a7440/awkward1-0.2.35-cp27-cp27m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "aa1acc41e60543c3e67072d0f36063f7", "sha256": "b86769c351394c069fc473c3c04ec9d9435d0fe802a9a79b209d7737f8c6c4f9" }, "downloads": -1, "filename": "awkward1-0.2.35-cp27-cp27mu-manylinux1_i686.whl", "has_sig": false, "md5_digest": "aa1acc41e60543c3e67072d0f36063f7", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8997500, "upload_time": "2020-08-26T16:19:38", "upload_time_iso_8601": "2020-08-26T16:19:38.846884Z", "url": "https://files.pythonhosted.org/packages/eb/25/83fb640f9e871c3b6ebbaf1ae2286ea3880b470e0470508fefb315c641fe/awkward1-0.2.35-cp27-cp27mu-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "895e87ae50a43c02c19324e369dbf097", "sha256": "95149eb614262d9862674d5eb94b9269a07a7e8ecb4749d5a7985cef444d6e87" }, "downloads": -1, "filename": "awkward1-0.2.35-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "895e87ae50a43c02c19324e369dbf097", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8918920, "upload_time": "2020-08-26T16:15:53", "upload_time_iso_8601": "2020-08-26T16:15:53.181535Z", "url": "https://files.pythonhosted.org/packages/5d/03/f68904edc4e10b00d4fd2772c8c5ef55181f749fde1f35bc43267ba252fc/awkward1-0.2.35-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7b590dd08b0e1b15fe32cc7df5fb98af", "sha256": "375d74e8fe95be141067e9065a66e8e06ee4862ee96dc2d466c15a2f323f650f" }, "downloads": -1, "filename": "awkward1-0.2.35-cp27-cp27mu-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "7b590dd08b0e1b15fe32cc7df5fb98af", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9587846, "upload_time": "2020-08-26T16:21:30", "upload_time_iso_8601": "2020-08-26T16:21:30.226782Z", "url": "https://files.pythonhosted.org/packages/ab/60/5d8a7a8accddf3b4c81c0e1e3ff4c0bfd87832070fe051f53c577c9297d9/awkward1-0.2.35-cp27-cp27mu-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9e087e72aa09298d78fc40bef7cee8b3", "sha256": "3345b17bf15c4d9ec484d75f65513e3afcdb763105be6887e04d5cae5a9688bb" }, "downloads": -1, "filename": "awkward1-0.2.35-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "9e087e72aa09298d78fc40bef7cee8b3", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9185138, "upload_time": "2020-08-26T16:03:29", "upload_time_iso_8601": "2020-08-26T16:03:29.008244Z", "url": "https://files.pythonhosted.org/packages/89/85/4eebf78fc4afc5f33afbd9a8c6237ca5ea54db618833005b34d2036107c1/awkward1-0.2.35-cp27-cp27m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "950f19b8f593bd9ca1f460bf035c46bc", "sha256": "c701b5aeb9a44ac74ef1ccccc55ba9c3f835495b72b33b456537c4c307e478e2" }, "downloads": -1, "filename": "awkward1-0.2.35-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "950f19b8f593bd9ca1f460bf035c46bc", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 12011644, "upload_time": "2020-08-26T16:02:38", "upload_time_iso_8601": "2020-08-26T16:02:38.950850Z", "url": "https://files.pythonhosted.org/packages/7e/4e/571d1b713d9d5f4acb52964a952bdf7cc326ed3a41473ec819c252ebc9b6/awkward1-0.2.35-cp27-cp27m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "07fa8e29774a55c4a117953c2599e359", "sha256": "a7872720407017514a1917af53a06cb8fa88ede1a853cbaff512aaee963ce48a" }, "downloads": -1, "filename": "awkward1-0.2.35-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "07fa8e29774a55c4a117953c2599e359", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8996477, "upload_time": "2020-08-26T16:19:40", "upload_time_iso_8601": "2020-08-26T16:19:40.725731Z", "url": "https://files.pythonhosted.org/packages/00/4f/907c4d658168776543dce6e324626a9df96d85f106796969ab10b29a130a/awkward1-0.2.35-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b96e7f2d8f14e77a0fdb3c561758ac20", "sha256": "ff83543ec4981679ebb22d58b26fe0872ed90a127d88590d423e33693ca4188e" }, "downloads": -1, "filename": "awkward1-0.2.35-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "b96e7f2d8f14e77a0fdb3c561758ac20", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8924063, "upload_time": "2020-08-26T16:15:55", "upload_time_iso_8601": "2020-08-26T16:15:55.509901Z", "url": "https://files.pythonhosted.org/packages/18/68/3f328fd61d038fc52be47b12e238c705f47d8fa17a344a2ccea3f9f842a8/awkward1-0.2.35-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a6c7eb513d28e642160a047190147a39", "sha256": "16055f62cfe6ecfaa6348cb347e108c3f7305e3cf80bef31f5eba04911608175" }, "downloads": -1, "filename": "awkward1-0.2.35-cp35-cp35m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "a6c7eb513d28e642160a047190147a39", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9587971, "upload_time": "2020-08-26T16:21:32", "upload_time_iso_8601": "2020-08-26T16:21:32.159486Z", "url": "https://files.pythonhosted.org/packages/f2/fd/0e99fbfd015058b5a787a5e7936de1cafe3066d2b2806d441f3160b9159b/awkward1-0.2.35-cp35-cp35m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6d39441514f1c230b572cf84d42f3861", "sha256": "9f14d994966800cab4d9c238ff49b6999ec53e7b5bcc7319444d9b50076e756e" }, "downloads": -1, "filename": "awkward1-0.2.35-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "6d39441514f1c230b572cf84d42f3861", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9182576, "upload_time": "2020-08-26T16:01:42", "upload_time_iso_8601": "2020-08-26T16:01:42.438785Z", "url": "https://files.pythonhosted.org/packages/6c/f0/25a7389cd42d8761165ae4b148a61649489589db05b1b175825cff44da87/awkward1-0.2.35-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "527edb8448a42d2696719afd5d67b8af", "sha256": "a6dc8b4d103fdf15daf3a4cc5f18301acce139533f71e42c1a202adbd6307e35" }, "downloads": -1, "filename": "awkward1-0.2.35-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "527edb8448a42d2696719afd5d67b8af", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 12009862, "upload_time": "2020-08-26T16:04:00", "upload_time_iso_8601": "2020-08-26T16:04:00.915480Z", "url": "https://files.pythonhosted.org/packages/71/99/ed381061dfaae4d8857854fdf4c729c2786ba28fc3d433f9d3c0754ca733/awkward1-0.2.35-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "321ce804a5f0a9070b5cb8de545d8169", "sha256": "8f53ed8159bc89bda778a7b21bc98b65ddf278db5733351554df1bcfe8b4c3fa" }, "downloads": -1, "filename": "awkward1-0.2.35-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "321ce804a5f0a9070b5cb8de545d8169", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9130136, "upload_time": "2020-08-26T15:53:47", "upload_time_iso_8601": "2020-08-26T15:53:47.226072Z", "url": "https://files.pythonhosted.org/packages/77/6e/7502babbbd01e7a2db77eef639ce533b0045ca98624b3767e74c77158f44/awkward1-0.2.35-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dfd42f1ce72038e9dba9f2d205d5b15d", "sha256": "83f26e4661173b4b284ea210e33d4c4a521f60b42c10ff009353e8cec462f4f7" }, "downloads": -1, "filename": "awkward1-0.2.35-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "dfd42f1ce72038e9dba9f2d205d5b15d", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8996471, "upload_time": "2020-08-26T16:19:42", "upload_time_iso_8601": "2020-08-26T16:19:42.871107Z", "url": "https://files.pythonhosted.org/packages/d0/fa/b85db714f2698add147d672283383b1bfddf14b60d229b64f82ad4a31da5/awkward1-0.2.35-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "361dda997ac5d244600d3afcb7cb5662", "sha256": "c0611e675e0af2d8f64354b3b4f0097af728e76b6d7b4d7b3fa4df03e26d8be4" }, "downloads": -1, "filename": "awkward1-0.2.35-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "361dda997ac5d244600d3afcb7cb5662", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8924041, "upload_time": "2020-08-26T16:15:57", "upload_time_iso_8601": "2020-08-26T16:15:57.199536Z", "url": "https://files.pythonhosted.org/packages/09/8b/b903ab45c02552e4c2268cf39f9f0720c20840b56be009813fffab0f5a9c/awkward1-0.2.35-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a1c9ffd856d3037656bc340f293efff2", "sha256": "083dcfbe6325d8c8e3b3d7e7bf986e4b50f92c2fab317b1fe4b64548916dae58" }, "downloads": -1, "filename": "awkward1-0.2.35-cp36-cp36m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "a1c9ffd856d3037656bc340f293efff2", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9587956, "upload_time": "2020-08-26T16:21:34", "upload_time_iso_8601": "2020-08-26T16:21:34.705111Z", "url": "https://files.pythonhosted.org/packages/48/21/335c8bcbd0ec5f9c39f5be1a0f7d169c64dbe7b2890f4048e6966fbffd8a/awkward1-0.2.35-cp36-cp36m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5f57c2758a8f17482edaf2e664599b05", "sha256": "941e9ba2b1e8ab4259ba1f2d01e172b43193826c88024d42db0f2b34dfbf466c" }, "downloads": -1, "filename": "awkward1-0.2.35-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "5f57c2758a8f17482edaf2e664599b05", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9182466, "upload_time": "2020-08-26T16:04:12", "upload_time_iso_8601": "2020-08-26T16:04:12.056349Z", "url": "https://files.pythonhosted.org/packages/f5/45/a547fdabc05c9eaaccaeb9e950e4c2f81e76d6547b3211708582e94366b0/awkward1-0.2.35-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "64c46e29c99b87f8fa313acd8d6d4f2d", "sha256": "ee1fa1b58fd0f6f3e0da37aaa86bdbcddbfe892a22ce20087220608269e0b882" }, "downloads": -1, "filename": "awkward1-0.2.35-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "64c46e29c99b87f8fa313acd8d6d4f2d", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 12009809, "upload_time": "2020-08-26T16:08:09", "upload_time_iso_8601": "2020-08-26T16:08:09.079146Z", "url": "https://files.pythonhosted.org/packages/e2/6a/c41c5d84a2e93464d0ca89140290279ae31ffa73834b006d4709028f84de/awkward1-0.2.35-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "43ff11f8ca1fb8034bc4c0e6f394f0f3", "sha256": "70562ace0256a196719764126fbbd8ecc92d5ff11ccada5bf6ca2d5603d2f519" }, "downloads": -1, "filename": "awkward1-0.2.35-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "43ff11f8ca1fb8034bc4c0e6f394f0f3", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9130152, "upload_time": "2020-08-26T15:54:21", "upload_time_iso_8601": "2020-08-26T15:54:21.995588Z", "url": "https://files.pythonhosted.org/packages/92/a2/88c00704654c848a230a6b9429868ae0df5daf18b010778ef7533cc6ae87/awkward1-0.2.35-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cd948096acaac38584f96a0004b0a45a", "sha256": "66f3a055c4869d1aa0fe099777ec0c0bf56955d974f8027ee348c591ecf36597" }, "downloads": -1, "filename": "awkward1-0.2.35-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "cd948096acaac38584f96a0004b0a45a", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8995671, "upload_time": "2020-08-26T16:19:45", "upload_time_iso_8601": "2020-08-26T16:19:45.202341Z", "url": "https://files.pythonhosted.org/packages/22/a2/200b9b6fbcad31bf30f642d8c0c924aee54aa9f9b1fc6998337107e762b4/awkward1-0.2.35-cp37-cp37m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a687b7ea138885577196b406660ce6ee", "sha256": "d56f59b2c0d1d9028142ab2e50b6c59944efbcdefe35738825826356ccc02124" }, "downloads": -1, "filename": "awkward1-0.2.35-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "a687b7ea138885577196b406660ce6ee", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8920909, "upload_time": "2020-08-26T16:15:59", "upload_time_iso_8601": "2020-08-26T16:15:59.288140Z", "url": "https://files.pythonhosted.org/packages/32/0a/3ed4a8552a01dd79a549495b1cc187aa266d42275f8509377eb477cc8920/awkward1-0.2.35-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "59e076297e18b44f86ef7bdcbe68cd3b", "sha256": "f10fe4933bf138a0d3704340d6f327c9d1f3722381ad0aa779b3befbbd6798d7" }, "downloads": -1, "filename": "awkward1-0.2.35-cp37-cp37m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "59e076297e18b44f86ef7bdcbe68cd3b", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9584543, "upload_time": "2020-08-26T16:21:36", "upload_time_iso_8601": "2020-08-26T16:21:36.963355Z", "url": "https://files.pythonhosted.org/packages/c6/0c/fd594a100f46edd27913b7e3854c3170e3302b6f24e54ff4f0868b6e5798/awkward1-0.2.35-cp37-cp37m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c2411abd52710eb70b29ab8d3f13bfe9", "sha256": "eb01e6cadcdea194138ed6f216051d178e359d09d490a9407139b8966c6cb6df" }, "downloads": -1, "filename": "awkward1-0.2.35-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "c2411abd52710eb70b29ab8d3f13bfe9", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9183396, "upload_time": "2020-08-26T16:10:35", "upload_time_iso_8601": "2020-08-26T16:10:35.908233Z", "url": "https://files.pythonhosted.org/packages/2f/b4/5e3fd39fc93159dbd7395ad33ccefe98161889126f82e8db8c72a9044327/awkward1-0.2.35-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f04e0efbc10a723b4998da7abe7261bf", "sha256": "cb7f7bc3dd2265a6dae9122c4b87bfa54254457af5d170aa4077ac7660418a9c" }, "downloads": -1, "filename": "awkward1-0.2.35-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "f04e0efbc10a723b4998da7abe7261bf", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 12010361, "upload_time": "2020-08-26T16:05:13", "upload_time_iso_8601": "2020-08-26T16:05:13.342312Z", "url": "https://files.pythonhosted.org/packages/e3/78/20a29b2b66083af231a413d4108670bb2e4b577df8840399e2eee0019ae8/awkward1-0.2.35-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e6a6509043adb4a7f09a5c1e10af8fb6", "sha256": "9e214358ad4752d101090df09d7d8b7f0225ef1c20d642202dca3781c4f06fb3" }, "downloads": -1, "filename": "awkward1-0.2.35-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "e6a6509043adb4a7f09a5c1e10af8fb6", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9224784, "upload_time": "2020-08-26T15:54:00", "upload_time_iso_8601": "2020-08-26T15:54:00.712144Z", "url": "https://files.pythonhosted.org/packages/8b/9d/b219d6c84cab420bdb41b3d5dff2cf2e4c359fd2c7a5bb6941011d8e7c11/awkward1-0.2.35-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "921a065c8bc330e81ffda4373381fc1a", "sha256": "b27bd3f052ea4fc5ec2b3b1ecb91d952537a30e6bb0563bafdfc5293c3bbc757" }, "downloads": -1, "filename": "awkward1-0.2.35-cp38-cp38-manylinux1_i686.whl", "has_sig": false, "md5_digest": "921a065c8bc330e81ffda4373381fc1a", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8946903, "upload_time": "2020-08-26T16:19:47", "upload_time_iso_8601": "2020-08-26T16:19:47.039147Z", "url": "https://files.pythonhosted.org/packages/d9/45/e8723a64fd0d84c061ced9c9b6d713c33720d0b35d60d9dc0eae354415ef/awkward1-0.2.35-cp38-cp38-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1cb303bfbf46dedcbf9eb0f3a2ad8d3d", "sha256": "5a939611b7615aa985f3f90f45c1e2e260b1edd63721ea541f597cf04d32b97d" }, "downloads": -1, "filename": "awkward1-0.2.35-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "1cb303bfbf46dedcbf9eb0f3a2ad8d3d", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8862097, "upload_time": "2020-08-26T16:16:00", "upload_time_iso_8601": "2020-08-26T16:16:00.991956Z", "url": "https://files.pythonhosted.org/packages/f3/fb/765bb0a2daab2b447dbc631893d6eb776b79a2e7c8b362db6957050304b4/awkward1-0.2.35-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8f9364bc20f861f78877c5f67a3c3b74", "sha256": "44d75f852bab74a8041ea2115184d10642d38d7cff4535cc20ea3c0cfa3b4e77" }, "downloads": -1, "filename": "awkward1-0.2.35-cp38-cp38-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "8f9364bc20f861f78877c5f67a3c3b74", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9579106, "upload_time": "2020-08-26T16:21:39", "upload_time_iso_8601": "2020-08-26T16:21:39.499330Z", "url": "https://files.pythonhosted.org/packages/0c/9b/3f3c984f0bfee37368de7222ede883d8aa365d7d76bb8daa13120022a4ce/awkward1-0.2.35-cp38-cp38-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "479d9e38eef6a06ff7144dca2cafea9a", "sha256": "7b260c9719029ca4d48edded7c3622a0b54902231fc6319160a5328010003f6d" }, "downloads": -1, "filename": "awkward1-0.2.35-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "479d9e38eef6a06ff7144dca2cafea9a", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9187959, "upload_time": "2020-08-26T16:17:16", "upload_time_iso_8601": "2020-08-26T16:17:16.668628Z", "url": "https://files.pythonhosted.org/packages/45/b5/c8e379930678ae5958854bcf59b1058dc28b34bd51f63401f98c92f9ad36/awkward1-0.2.35-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "246fa6ad0063bfb76cf939380a88a4ba", "sha256": "0d99bf99485aa8ecdc4335f6dfaf8f609578803715dc54932af9a0c1671d1f51" }, "downloads": -1, "filename": "awkward1-0.2.35-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "246fa6ad0063bfb76cf939380a88a4ba", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 12018196, "upload_time": "2020-08-26T16:16:51", "upload_time_iso_8601": "2020-08-26T16:16:51.362342Z", "url": "https://files.pythonhosted.org/packages/a8/a3/692dacf01b1af73777e58dde35569d7245e2e0f9a8e81b54048d05fd8272/awkward1-0.2.35-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d62af9d7e41682e7ca6aec368edee109", "sha256": "fd9b47c93a28129181d604ce53fc51405f94c31a0069f0fa68971146067e2cbc" }, "downloads": -1, "filename": "awkward1-0.2.35-cp39-cp39-manylinux1_i686.whl", "has_sig": false, "md5_digest": "d62af9d7e41682e7ca6aec368edee109", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8954776, "upload_time": "2020-08-26T16:19:49", "upload_time_iso_8601": "2020-08-26T16:19:49.040224Z", "url": "https://files.pythonhosted.org/packages/fd/7a/124cc8a5fe2a9c944dc86fc0dafdb94f5c26f6d66f4c09a52f695d34280c/awkward1-0.2.35-cp39-cp39-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d157f017b4f58dddedba0bf6090669f4", "sha256": "de0fc46aa3824b053052a26305f9b76284572f76e228c494044f40836879db8d" }, "downloads": -1, "filename": "awkward1-0.2.35-cp39-cp39-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "d157f017b4f58dddedba0bf6090669f4", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 8864068, "upload_time": "2020-08-26T16:16:02", "upload_time_iso_8601": "2020-08-26T16:16:02.809761Z", "url": "https://files.pythonhosted.org/packages/98/8c/5319efa1409522fa8f679b6132ad15236f5955d91c67de78dea681c99979/awkward1-0.2.35-cp39-cp39-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "417c4dc1c36c9379927ef9d53e129de7", "sha256": "8d26e7ea2b809a561bd5b28e1f4e0e5c606ebac6505c0ebe29e76b86532d2765" }, "downloads": -1, "filename": "awkward1-0.2.35-cp39-cp39-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "417c4dc1c36c9379927ef9d53e129de7", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9579207, "upload_time": "2020-08-26T16:21:41", "upload_time_iso_8601": "2020-08-26T16:21:41.629192Z", "url": "https://files.pythonhosted.org/packages/c7/73/e858258b7f9c2cfa55f861d795e7a3035fe31e7495420c83a4b958cca1aa/awkward1-0.2.35-cp39-cp39-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b6ba275860a9d397f6fea06d6f4c7626", "sha256": "563868f0f2d0cb398ce3616ee3f9734cc68cee9a612d35cab830ec5c728f1474" }, "downloads": -1, "filename": "awkward1-0.2.35.tar.gz", "has_sig": false, "md5_digest": "b6ba275860a9d397f6fea06d6f4c7626", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 668948, "upload_time": "2020-08-26T16:21:43", "upload_time_iso_8601": "2020-08-26T16:21:43.674589Z", "url": "https://files.pythonhosted.org/packages/74/3b/d3b84989504677ead139f68c040976dcaec319ed7154292556363e818f15/awkward1-0.2.35.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.36": [ { "comment_text": "", "digests": { "md5": "96113aa51cb9ca836f2c0ed55181bef1", "sha256": "b00bff972fb4a04d82e9c8f05e4df291eda6adf326adad6aef1ee1cb58da5ac2" }, "downloads": -1, "filename": "awkward1-0.2.36-cp27-cp27m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "96113aa51cb9ca836f2c0ed55181bef1", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5894350, "upload_time": "2020-09-08T02:04:54", "upload_time_iso_8601": "2020-09-08T02:04:54.428246Z", "url": "https://files.pythonhosted.org/packages/ef/ee/3731d04a4dc078989eaa8d692580b231223358e26bc2d6e18b9f2ef16cb5/awkward1-0.2.36-cp27-cp27m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f2515c25d25fa9b676b6bb70de3ad5e8", "sha256": "283617d3b0a433c28d41f31ed570aeebc09d346ae31168c90348b6389d32960f" }, "downloads": -1, "filename": "awkward1-0.2.36-cp27-cp27m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "f2515c25d25fa9b676b6bb70de3ad5e8", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5703174, "upload_time": "2020-09-08T02:27:59", "upload_time_iso_8601": "2020-09-08T02:27:59.971397Z", "url": "https://files.pythonhosted.org/packages/27/ab/5d64b2a4d41aae91fef0f03c342355178a73a873b4a59d823455660ce5a6/awkward1-0.2.36-cp27-cp27m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "416336d694e9191d5baca151d2ca6f19", "sha256": "65f56dfd0b2892300a83abf4c67b07d0eae2b3371dcecd40658b4cfcdb6ce7fe" }, "downloads": -1, "filename": "awkward1-0.2.36-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "416336d694e9191d5baca151d2ca6f19", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5646100, "upload_time": "2020-09-08T02:27:16", "upload_time_iso_8601": "2020-09-08T02:27:16.687027Z", "url": "https://files.pythonhosted.org/packages/28/49/4e981f526911ba093b797775a1e0d7a613e90646f00c98f68d03e06c763e/awkward1-0.2.36-cp27-cp27m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bc59168d07b41ee0705eb42218717846", "sha256": "92c999a2b1b2a227ef3e892ec855398688ad6aa30ca7d8cf1bca48c8c28fd566" }, "downloads": -1, "filename": "awkward1-0.2.36-cp27-cp27m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "bc59168d07b41ee0705eb42218717846", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6063917, "upload_time": "2020-09-08T02:28:09", "upload_time_iso_8601": "2020-09-08T02:28:09.141311Z", "url": "https://files.pythonhosted.org/packages/94/d2/d8aff3a08c3cdea2637f6c05e0f306412c7653d3bc4b286587086cd6c395/awkward1-0.2.36-cp27-cp27m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d77103bee27b67af8ad676d706c8d944", "sha256": "4c61dc89023cbb6acf300e8614e58ecce27dc6f03459d1b0b97d2528a162b724" }, "downloads": -1, "filename": "awkward1-0.2.36-cp27-cp27mu-manylinux1_i686.whl", "has_sig": false, "md5_digest": "d77103bee27b67af8ad676d706c8d944", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5703084, "upload_time": "2020-09-08T02:28:01", "upload_time_iso_8601": "2020-09-08T02:28:01.867050Z", "url": "https://files.pythonhosted.org/packages/50/2e/5ab37ddc55bbc22ed6815a7c51da75325aa81650a0c1a4dae8a932ff1350/awkward1-0.2.36-cp27-cp27mu-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "220a1ab6396b9f0196fac4c0bc5f35f9", "sha256": "45abfe6766a6f3fa67e359b48d51aa7d37e285bbafeb1a98bd441291dae328de" }, "downloads": -1, "filename": "awkward1-0.2.36-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "220a1ab6396b9f0196fac4c0bc5f35f9", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5646256, "upload_time": "2020-09-08T02:27:18", "upload_time_iso_8601": "2020-09-08T02:27:18.070024Z", "url": "https://files.pythonhosted.org/packages/d1/c3/be94ccc474be03ff4696ed13cea40664f9f14f44d004e9d4fba6fcf919dc/awkward1-0.2.36-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fb2297744a744ebb314160b13fc1f34f", "sha256": "66b010eb5a619c9b057ca53a1cd99ca6f96c846957cd804877d631040b84dff2" }, "downloads": -1, "filename": "awkward1-0.2.36-cp27-cp27mu-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "fb2297744a744ebb314160b13fc1f34f", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6063934, "upload_time": "2020-09-08T02:28:11", "upload_time_iso_8601": "2020-09-08T02:28:11.580675Z", "url": "https://files.pythonhosted.org/packages/91/b3/00297fa21e919b95df0030b6ef4eb3e4179f98d86654872a1339c73298d4/awkward1-0.2.36-cp27-cp27mu-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2ea126f1da4acfc0317c7c7e375281e7", "sha256": "ba9a24e5ec370f05afe697b853285a903b5cb82506d5e7da06237d8e5283e3fc" }, "downloads": -1, "filename": "awkward1-0.2.36-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "2ea126f1da4acfc0317c7c7e375281e7", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9194023, "upload_time": "2020-09-08T02:18:31", "upload_time_iso_8601": "2020-09-08T02:18:31.002012Z", "url": "https://files.pythonhosted.org/packages/3b/43/0d9ebb9c32db127c89ab4ffe9be41d6b6e145b1cc602c522c32713a60550/awkward1-0.2.36-cp27-cp27m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "152e56df3155ea83df58b20505d61f8b", "sha256": "cdbcc5a07e4eeccedd04eccdf5325211a0a780aa4ee45be7a8a7cd7111e0ddae" }, "downloads": -1, "filename": "awkward1-0.2.36-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "152e56df3155ea83df58b20505d61f8b", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 12004865, "upload_time": "2020-09-08T02:11:22", "upload_time_iso_8601": "2020-09-08T02:11:22.511003Z", "url": "https://files.pythonhosted.org/packages/25/bb/f8500dab8707876c43b89c1a06a3d495e7c34638e30b926388652acaa348/awkward1-0.2.36-cp27-cp27m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b1ed452d0695ba981b72884a17c4f067", "sha256": "4e2f49152e0add21f14afa8f933cab465cb8d7d6992daea2e2a5da7879af8e96" }, "downloads": -1, "filename": "awkward1-0.2.36-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "b1ed452d0695ba981b72884a17c4f067", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5699675, "upload_time": "2020-09-08T02:28:03", "upload_time_iso_8601": "2020-09-08T02:28:03.714178Z", "url": "https://files.pythonhosted.org/packages/ff/0f/64fe70760e154dfa11f05dedc92933cd6e7d5db3d937d0e47ec08c89d764/awkward1-0.2.36-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bba94013f0647f4bf9bb883042c928be", "sha256": "b5c65e40c345e580055e2c083fbfaced456121a9236727234513fe5f8b64b1a2" }, "downloads": -1, "filename": "awkward1-0.2.36-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "bba94013f0647f4bf9bb883042c928be", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5646552, "upload_time": "2020-09-08T02:27:19", "upload_time_iso_8601": "2020-09-08T02:27:19.755028Z", "url": "https://files.pythonhosted.org/packages/33/72/c898085520546b1a4a2fa46f05404d5f533736c6470c374e72a2b9074d4e/awkward1-0.2.36-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "63cb9dc7e37d0ade53e22e5f2ec1a09d", "sha256": "7f9b9352a5fd8e680a27dcce702f59d8552e4dbb4cb7b16fc1ed51ebfb310556" }, "downloads": -1, "filename": "awkward1-0.2.36-cp35-cp35m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "63cb9dc7e37d0ade53e22e5f2ec1a09d", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6057944, "upload_time": "2020-09-08T02:28:13", "upload_time_iso_8601": "2020-09-08T02:28:13.507732Z", "url": "https://files.pythonhosted.org/packages/c7/1d/b2d6816db104e5222750bc409d8c2bdf72a387d43a5303ed726747863aa4/awkward1-0.2.36-cp35-cp35m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1d4872233937ac056941629a93c7d840", "sha256": "d1add830b910de076f49e5765153721a7a70acd0e1d10667e71b518351dde0ca" }, "downloads": -1, "filename": "awkward1-0.2.36-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "1d4872233937ac056941629a93c7d840", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9191242, "upload_time": "2020-09-08T02:14:01", "upload_time_iso_8601": "2020-09-08T02:14:01.259832Z", "url": "https://files.pythonhosted.org/packages/84/e9/97585ac95b33ecc3a00589936fc129a7df63ae8626258c93464a7107ba03/awkward1-0.2.36-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "42f54dd631c7909206388a44679a7863", "sha256": "8ab6f77f92862598f0dd43f09ff572d4a618bff544c593678b9413e6bb4f5438" }, "downloads": -1, "filename": "awkward1-0.2.36-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "42f54dd631c7909206388a44679a7863", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 12004427, "upload_time": "2020-09-08T02:11:05", "upload_time_iso_8601": "2020-09-08T02:11:05.411142Z", "url": "https://files.pythonhosted.org/packages/e5/b5/fa9168ce29c2930f9c1156f8e319d20be0c0fe244865e28ed7dd1c1323a2/awkward1-0.2.36-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a0b88cf22e4caad87d9731de2d8e03c5", "sha256": "f20ab0a3ddee018b4d458524628d4a8a573ddc0f23b727dcdea89758238fceba" }, "downloads": -1, "filename": "awkward1-0.2.36-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "a0b88cf22e4caad87d9731de2d8e03c5", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5894339, "upload_time": "2020-09-08T02:05:10", "upload_time_iso_8601": "2020-09-08T02:05:10.959213Z", "url": "https://files.pythonhosted.org/packages/61/66/3f5ad0eeb89263fe1d71d0b01bb0ea3ffe7dbe8e27fe41dd2dd3d7859bcc/awkward1-0.2.36-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5bb0af8795a321bfe9bb77270b12558a", "sha256": "3f784c87d3fe158b78be5d3ef009a6cf064cc194fd4a271999f0c631be5a97b1" }, "downloads": -1, "filename": "awkward1-0.2.36-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "5bb0af8795a321bfe9bb77270b12558a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5699657, "upload_time": "2020-09-08T02:28:05", "upload_time_iso_8601": "2020-09-08T02:28:05.464637Z", "url": "https://files.pythonhosted.org/packages/f6/b7/981b02bea441e67fb2418e1ecd0d260016f6fb285a96f716ee400b8ea166/awkward1-0.2.36-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f4a2745d009e02faf16f1263b6ea2bfa", "sha256": "524e28a3f97d94067da549643e4def6f8cb02b1703acb35f93c34c0f5bb81237" }, "downloads": -1, "filename": "awkward1-0.2.36-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "f4a2745d009e02faf16f1263b6ea2bfa", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5646544, "upload_time": "2020-09-08T02:27:21", "upload_time_iso_8601": "2020-09-08T02:27:21.168149Z", "url": "https://files.pythonhosted.org/packages/f2/ae/68e9b7ead48b851c00fa9673b2be6da384ab3e0094d5e82c9354f4d20c7d/awkward1-0.2.36-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c39f8b65a5acdd2d369ffeac2f82c05f", "sha256": "1cebb929e61098ca0d9b423dcd42f4409afdfc7f81519456c17715b60005bd01" }, "downloads": -1, "filename": "awkward1-0.2.36-cp36-cp36m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "c39f8b65a5acdd2d369ffeac2f82c05f", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6057929, "upload_time": "2020-09-08T02:28:15", "upload_time_iso_8601": "2020-09-08T02:28:15.066569Z", "url": "https://files.pythonhosted.org/packages/4b/ba/2c06e6f11ba421c232a8e0fca5b03f915ed13ea70421ad366b80ffb0dadc/awkward1-0.2.36-cp36-cp36m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "74f16b22e5c29dcf80265c078a9af45f", "sha256": "dc79f0e7d42f06d50f037d6205da4460be73b002f9f01a8bdc82581c2119a7f0" }, "downloads": -1, "filename": "awkward1-0.2.36-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "74f16b22e5c29dcf80265c078a9af45f", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9191229, "upload_time": "2020-09-08T02:16:05", "upload_time_iso_8601": "2020-09-08T02:16:05.576073Z", "url": "https://files.pythonhosted.org/packages/ea/e6/841fa75503129a021c3d6979ab2fccb878e2856c1e0995f053b640d75e60/awkward1-0.2.36-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "eb0766b7a31027757fe0ef99f7d7730f", "sha256": "1a1d1a92a5c6e22978650bcfcdb97f4c8d95a39ddd5a5ca433896e78fd67cc26" }, "downloads": -1, "filename": "awkward1-0.2.36-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "eb0766b7a31027757fe0ef99f7d7730f", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 12004160, "upload_time": "2020-09-08T02:15:40", "upload_time_iso_8601": "2020-09-08T02:15:40.280859Z", "url": "https://files.pythonhosted.org/packages/90/f8/0004f991b513284ad1758c873feb37ea542bf6c410ecf7cade4bc19fc753/awkward1-0.2.36-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "be07b23924571097f9b49fcb02344617", "sha256": "8fcd1bdbe0f1f205cd9e191a0879bb53da1a0b1f5e227a6779b01ed5662d5d30" }, "downloads": -1, "filename": "awkward1-0.2.36-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "be07b23924571097f9b49fcb02344617", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5894445, "upload_time": "2020-09-08T02:04:57", "upload_time_iso_8601": "2020-09-08T02:04:57.850777Z", "url": "https://files.pythonhosted.org/packages/ba/c7/6b5f2942adf15d883752fbd41e317d85cb7b77181e93c657953cca9bf069/awkward1-0.2.36-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9c7d25bfb911bbb7e475d3cd267a4afa", "sha256": "13a37f36dfe23e4c45b2c918865aba0d88bee7d89d42cb12c81045e95b2dd37d" }, "downloads": -1, "filename": "awkward1-0.2.36-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "9c7d25bfb911bbb7e475d3cd267a4afa", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5700543, "upload_time": "2020-09-08T02:28:07", "upload_time_iso_8601": "2020-09-08T02:28:07.024741Z", "url": "https://files.pythonhosted.org/packages/5f/26/6c3bc2a7a621f743470fb5a9bff2cb9b76b5b80d7338de63f9ab869a946e/awkward1-0.2.36-cp37-cp37m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ba9f2989562a557109c344152b3b3e52", "sha256": "f2cd2599c7072f5e77944ccee3ddc5593417463555b4c291ea5f0311c32e738d" }, "downloads": -1, "filename": "awkward1-0.2.36-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "ba9f2989562a557109c344152b3b3e52", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5649545, "upload_time": "2020-09-08T02:27:22", "upload_time_iso_8601": "2020-09-08T02:27:22.507473Z", "url": "https://files.pythonhosted.org/packages/67/6c/b9f62b0faccea4943d89c7e2bd8159add2052fe043305def90c363290557/awkward1-0.2.36-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a7913c7745d0c3190ae8c307beed9ef2", "sha256": "9a787dbdb7c2f8ed0b17d229a460b18deb3dd9715bb61e4288d666b8067a27cb" }, "downloads": -1, "filename": "awkward1-0.2.36-cp37-cp37m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "a7913c7745d0c3190ae8c307beed9ef2", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6058162, "upload_time": "2020-09-08T02:28:16", "upload_time_iso_8601": "2020-09-08T02:28:16.566983Z", "url": "https://files.pythonhosted.org/packages/aa/9b/90482bf2890f73713c5a741dfc5786c8b9c30be88eeabad2ced4dc88469d/awkward1-0.2.36-cp37-cp37m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ec665ee76b7b8b91727e9bc8364dc199", "sha256": "543ddfff96721b188e286634e7afcb0f0923a0697a853db46ecd70f9f675ca13" }, "downloads": -1, "filename": "awkward1-0.2.36-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "ec665ee76b7b8b91727e9bc8364dc199", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9191365, "upload_time": "2020-09-08T02:14:43", "upload_time_iso_8601": "2020-09-08T02:14:43.723091Z", "url": "https://files.pythonhosted.org/packages/6f/94/95998f4278e84471239d464b619de5f63d830bee0af175f224a44695a750/awkward1-0.2.36-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9fb120594256b202aafcc0fe80cd78e0", "sha256": "3536f9916479afd444405813992802b0d7e653d946f06b14363e9364e55eda47" }, "downloads": -1, "filename": "awkward1-0.2.36-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "9fb120594256b202aafcc0fe80cd78e0", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 12004232, "upload_time": "2020-09-08T02:25:00", "upload_time_iso_8601": "2020-09-08T02:25:00.694587Z", "url": "https://files.pythonhosted.org/packages/fa/1d/bc22103614a2d1a9285db43100a8998ea75c87d2b324eb309033c8bd3536/awkward1-0.2.36-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bfc722baf712c4bf5c062e816bcf0e9d", "sha256": "193274138fbee4c5639096f858e75c3cf0fc36e075b5f093455a4790a2bc91f1" }, "downloads": -1, "filename": "awkward1-0.2.36-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "bfc722baf712c4bf5c062e816bcf0e9d", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5989395, "upload_time": "2020-09-08T02:04:48", "upload_time_iso_8601": "2020-09-08T02:04:48.564227Z", "url": "https://files.pythonhosted.org/packages/18/e0/c4efe9fd316c99792fa0d975a00db9e54b9948f7f3a917b2a429f63de372/awkward1-0.2.36-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3a62b9abb2a58f359986a269eaa75a54", "sha256": "200de0f9d763e1d867a931acb024164a3db6d3f935365f63925df2bf0fced72d" }, "downloads": -1, "filename": "awkward1-0.2.36-cp38-cp38-manylinux1_i686.whl", "has_sig": false, "md5_digest": "3a62b9abb2a58f359986a269eaa75a54", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5655184, "upload_time": "2020-09-08T02:28:08", "upload_time_iso_8601": "2020-09-08T02:28:08.854779Z", "url": "https://files.pythonhosted.org/packages/f1/fb/498e1209f6dd9ffb7f40a3047819e17034470027c616934dc9930183dabe/awkward1-0.2.36-cp38-cp38-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "66f276162479c9f46f9ef02b0129e8a3", "sha256": "092e76051dd7d69c7eab9f6211cc24e90dda581586d7042dfe1843f95fa510a9" }, "downloads": -1, "filename": "awkward1-0.2.36-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "66f276162479c9f46f9ef02b0129e8a3", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5593952, "upload_time": "2020-09-08T02:27:24", "upload_time_iso_8601": "2020-09-08T02:27:24.199266Z", "url": "https://files.pythonhosted.org/packages/37/7e/b89d64cec21162c12907fc8bbb7bcb35529d695749d001f74dbf25611677/awkward1-0.2.36-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2f297ad3baf7b6c72d2bea797fe4f414", "sha256": "5c815824c2a2decd92a3f08ef1f9b17032127ea8d1be76e59487f332d4f214f8" }, "downloads": -1, "filename": "awkward1-0.2.36-cp38-cp38-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "2f297ad3baf7b6c72d2bea797fe4f414", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6047455, "upload_time": "2020-09-08T02:28:17", "upload_time_iso_8601": "2020-09-08T02:28:17.981129Z", "url": "https://files.pythonhosted.org/packages/95/96/57d79897bf3dc8bbc2224ab768e14f6561a41974763b93206fabf7825146/awkward1-0.2.36-cp38-cp38-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0028bce11679803743921421b6cbc2bb", "sha256": "c93c533cfc871a446c9a4c45b4f81e38cb64461dbea840c015848cf567e71acf" }, "downloads": -1, "filename": "awkward1-0.2.36-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "0028bce11679803743921421b6cbc2bb", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9197342, "upload_time": "2020-09-08T02:24:18", "upload_time_iso_8601": "2020-09-08T02:24:18.931718Z", "url": "https://files.pythonhosted.org/packages/3b/4d/a87f5f40eb679a8b2a597b593a292789c0c256ce171b7f805e669ff95a79/awkward1-0.2.36-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "401140a865a2a0ae1747fb2e545ce81c", "sha256": "d80cd49031852227d3b9166796d815b7ddad4bd80a9f9eb9c68f9a1254fa4e86" }, "downloads": -1, "filename": "awkward1-0.2.36-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "401140a865a2a0ae1747fb2e545ce81c", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 12011307, "upload_time": "2020-09-08T02:22:59", "upload_time_iso_8601": "2020-09-08T02:22:59.688176Z", "url": "https://files.pythonhosted.org/packages/37/10/c6aa08d694e58fdeab271eab99195be2e8a4850cbce60745b399f6ca5130/awkward1-0.2.36-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "393d1bb65a372dcab32de9ce88f5fbb2", "sha256": "f872da72fc75467e23cf1884c533db9294ac6e0c09ba6b6cdda01d943d6f5e8e" }, "downloads": -1, "filename": "awkward1-0.2.36-cp39-cp39-manylinux1_i686.whl", "has_sig": false, "md5_digest": "393d1bb65a372dcab32de9ce88f5fbb2", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5657773, "upload_time": "2020-09-08T02:28:10", "upload_time_iso_8601": "2020-09-08T02:28:10.498781Z", "url": "https://files.pythonhosted.org/packages/21/b0/0c0f09477015cd1276ac4cb6462cc18ac0ea3aa6ad20722f54cac39ca54a/awkward1-0.2.36-cp39-cp39-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fa754cc968b5f2fa8023b91b3c093ab3", "sha256": "f2cd60d1d5a2c324ce6d1f0906075201b7d4cecac6ab0fc7024e23e9bbc41783" }, "downloads": -1, "filename": "awkward1-0.2.36-cp39-cp39-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "fa754cc968b5f2fa8023b91b3c093ab3", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5592429, "upload_time": "2020-09-08T02:27:25", "upload_time_iso_8601": "2020-09-08T02:27:25.855552Z", "url": "https://files.pythonhosted.org/packages/54/5f/67b7c1bb39269f9553be55d497c4a039ac0f28239d8e2791b1ef83d1c3f4/awkward1-0.2.36-cp39-cp39-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dc24527b85a719f6d1c4b659bd5309f8", "sha256": "ef91ebed108153ea08bb22584f0380dd6230353604c56f8182e0b3cc59b1ec22" }, "downloads": -1, "filename": "awkward1-0.2.36-cp39-cp39-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "dc24527b85a719f6d1c4b659bd5309f8", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6047909, "upload_time": "2020-09-08T02:28:19", "upload_time_iso_8601": "2020-09-08T02:28:19.421462Z", "url": "https://files.pythonhosted.org/packages/40/e2/e86a16db7d38cbc6eace1f169b45144a1e411ae1eba2ea6f8828154bdf66/awkward1-0.2.36-cp39-cp39-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ebde537e4c4647953ef444150de5d575", "sha256": "137b3d176107a8b27e9843da5f70d92fe728f8296f35299e94385e16c7f689ba" }, "downloads": -1, "filename": "awkward1-0.2.36.tar.gz", "has_sig": false, "md5_digest": "ebde537e4c4647953ef444150de5d575", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 785137, "upload_time": "2020-09-08T02:28:20", "upload_time_iso_8601": "2020-09-08T02:28:20.782782Z", "url": "https://files.pythonhosted.org/packages/76/57/4742ce88bf499f5fa19f9a9a92f03a76c014f59a92f4665a0a0445b1c658/awkward1-0.2.36.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.37": [ { "comment_text": "", "digests": { "md5": "ab713b449a2189ff1c72101d6e0ede78", "sha256": "17c2c45d9305870f4d2dfd4430b5dcdeb8d96d84ba264ed13ba9e84e0545add8" }, "downloads": -1, "filename": "awkward1-0.2.37-cp27-cp27m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "ab713b449a2189ff1c72101d6e0ede78", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5976022, "upload_time": "2020-09-12T14:05:57", "upload_time_iso_8601": "2020-09-12T14:05:57.765407Z", "url": "https://files.pythonhosted.org/packages/85/86/223a4a01dbc3c500fc13e19c3d274261df83a67aa93d420d6c3170374675/awkward1-0.2.37-cp27-cp27m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0c1b80333d872d67d3c1619143c65146", "sha256": "61e8a89f25a5ebd66f6db929ad47fc284e6a786f4b1513f854454a88309213d5" }, "downloads": -1, "filename": "awkward1-0.2.37-cp27-cp27m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "0c1b80333d872d67d3c1619143c65146", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5794217, "upload_time": "2020-09-12T14:25:40", "upload_time_iso_8601": "2020-09-12T14:25:40.131104Z", "url": "https://files.pythonhosted.org/packages/98/da/bdd5508804d2787daec69a2b3be7c5376966b54b4f5aa6f6fb6fd80c63eb/awkward1-0.2.37-cp27-cp27m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7d5dce698b9a39112287973a80df0f04", "sha256": "3c3a47077fb73488a2567923656320679d8b47fdb12860f010145d47b0c56eec" }, "downloads": -1, "filename": "awkward1-0.2.37-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "7d5dce698b9a39112287973a80df0f04", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5728229, "upload_time": "2020-09-12T14:28:39", "upload_time_iso_8601": "2020-09-12T14:28:39.661386Z", "url": "https://files.pythonhosted.org/packages/90/aa/42110fc3b1c9b7dadce00bdb97a5bb281f1284fb9e714f72fc346c637113/awkward1-0.2.37-cp27-cp27m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b99d20d6bc2e2db50c975693b789a6ec", "sha256": "8fc8953e9817d963f74c79f5d2a3247b137415b300d4235ec945ec41559fdb58" }, "downloads": -1, "filename": "awkward1-0.2.37-cp27-cp27m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "b99d20d6bc2e2db50c975693b789a6ec", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6103079, "upload_time": "2020-09-12T14:35:40", "upload_time_iso_8601": "2020-09-12T14:35:40.616578Z", "url": "https://files.pythonhosted.org/packages/52/89/f04f630801fbd17a7d9484d3629f08a2c4253a002f4ac870dd97f9790b9e/awkward1-0.2.37-cp27-cp27m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0d1f7c210b2d43635e7d6a247b30e227", "sha256": "906e50bbeb03e5bc3ce7efd09366b03b20fd9c65fb1c15420bdd75e5beb0f6cb" }, "downloads": -1, "filename": "awkward1-0.2.37-cp27-cp27mu-manylinux1_i686.whl", "has_sig": false, "md5_digest": "0d1f7c210b2d43635e7d6a247b30e227", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5794053, "upload_time": "2020-09-12T14:25:41", "upload_time_iso_8601": "2020-09-12T14:25:41.834851Z", "url": "https://files.pythonhosted.org/packages/43/15/7b6aa72a30d337cb11669b3f3e2b7bc5b154b6369a2346291912aff44043/awkward1-0.2.37-cp27-cp27mu-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "09ecba7eec035dbadb24a28be121f9e7", "sha256": "c23dc04cf83d8228c5212060c87309a1ec20892d9c54f3ba8fdad82e2be112dc" }, "downloads": -1, "filename": "awkward1-0.2.37-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "09ecba7eec035dbadb24a28be121f9e7", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5728284, "upload_time": "2020-09-12T14:28:41", "upload_time_iso_8601": "2020-09-12T14:28:41.458780Z", "url": "https://files.pythonhosted.org/packages/72/4e/1a983373e76c33bdfe3b16a6184334e451ec4a0f806c4fb5cceb21f2c399/awkward1-0.2.37-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "87635b3b42ccf358b15a113cdc420c53", "sha256": "48a72feea25458c4766254dfc5288468b99a6ec1ae4d901857d525809bfd766d" }, "downloads": -1, "filename": "awkward1-0.2.37-cp27-cp27mu-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "87635b3b42ccf358b15a113cdc420c53", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6103158, "upload_time": "2020-09-12T14:35:42", "upload_time_iso_8601": "2020-09-12T14:35:42.435263Z", "url": "https://files.pythonhosted.org/packages/f8/33/12d0c6b0e77d580f97c2d2e37d72b0e00f8d50ec8313ea4b32441374beb6/awkward1-0.2.37-cp27-cp27mu-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9e1e68453a1b7a0a06424369d955046b", "sha256": "afe9b2f67510bff4c65ac310b72e0b683726db41f7ee6ab060083dacdad4ba4f" }, "downloads": -1, "filename": "awkward1-0.2.37-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "9e1e68453a1b7a0a06424369d955046b", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9263653, "upload_time": "2020-09-12T14:18:13", "upload_time_iso_8601": "2020-09-12T14:18:13.434781Z", "url": "https://files.pythonhosted.org/packages/78/1a/8de2dbc69a022040cac0dbfcd9b0edba2047b0bb59eca640443447274f17/awkward1-0.2.37-cp27-cp27m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2c85f469a28fbfcc029088b251d0bef4", "sha256": "8e39de70bfe81e991118b79c84927d10ac05e80a85c7d39c8ce568d5e6a144ac" }, "downloads": -1, "filename": "awkward1-0.2.37-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "2c85f469a28fbfcc029088b251d0bef4", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 12111372, "upload_time": "2020-09-12T14:15:07", "upload_time_iso_8601": "2020-09-12T14:15:07.518034Z", "url": "https://files.pythonhosted.org/packages/66/f4/2c88d7603c7d5b54ac2da089743f85c3d2f703baa60430a6dac8058424f8/awkward1-0.2.37-cp27-cp27m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9cac82b0dc1bebf7275f309267956090", "sha256": "1c1d3f46fcd9089debd6a54b52401f6bc016c7489a45d44153c64eae088d3cb1" }, "downloads": -1, "filename": "awkward1-0.2.37-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "9cac82b0dc1bebf7275f309267956090", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5795648, "upload_time": "2020-09-12T14:25:43", "upload_time_iso_8601": "2020-09-12T14:25:43.557717Z", "url": "https://files.pythonhosted.org/packages/26/79/cfc2cdb2caf63e6382225489c54cf1b227c0098d224476a53020b4e04c65/awkward1-0.2.37-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d93d9e9b5a10d7df4e62007440a80a94", "sha256": "b69448188ab13ac291eabb9c51db2b641ef6d1dbccb435e11e95aa61d09a2bd0" }, "downloads": -1, "filename": "awkward1-0.2.37-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "d93d9e9b5a10d7df4e62007440a80a94", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5727607, "upload_time": "2020-09-12T14:28:43", "upload_time_iso_8601": "2020-09-12T14:28:43.015120Z", "url": "https://files.pythonhosted.org/packages/b0/de/b398560bb8ca559614e8ed5e85c73a1b08564fe0d9f9290200b8b60a9167/awkward1-0.2.37-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1fd1fbd6c4690f5f11c050a74fc70403", "sha256": "654739f0fedff324ef2f384170c45391c43284a9ce6994528d94cf9d7ff38860" }, "downloads": -1, "filename": "awkward1-0.2.37-cp35-cp35m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "1fd1fbd6c4690f5f11c050a74fc70403", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6097428, "upload_time": "2020-09-12T14:35:44", "upload_time_iso_8601": "2020-09-12T14:35:44.214587Z", "url": "https://files.pythonhosted.org/packages/c0/fe/f846218cfcc65255bd41f44e0f69ac91fd672a81c4f2ed66363cfe425f94/awkward1-0.2.37-cp35-cp35m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "71a781821ea2a33bfded92bd20b1a689", "sha256": "4509c524633dc271bcd0918fac0c7f12709ef216bc37d954ae438bb782bac989" }, "downloads": -1, "filename": "awkward1-0.2.37-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "71a781821ea2a33bfded92bd20b1a689", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9263565, "upload_time": "2020-09-12T14:13:26", "upload_time_iso_8601": "2020-09-12T14:13:26.787374Z", "url": "https://files.pythonhosted.org/packages/01/b6/620084f55785d2bb863551d1c6b22458263ea1925d40247fb26be9b0b789/awkward1-0.2.37-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9bf79cfad619b7e0125b8eb49f670bc5", "sha256": "ecfa017dc26fc3b8a690615c03a4b266cb48075d9574c93e47a3953e2a2cf881" }, "downloads": -1, "filename": "awkward1-0.2.37-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "9bf79cfad619b7e0125b8eb49f670bc5", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 12108894, "upload_time": "2020-09-12T14:15:07", "upload_time_iso_8601": "2020-09-12T14:15:07.969546Z", "url": "https://files.pythonhosted.org/packages/82/ac/e8046ea4b024564609bdddeac9a2824da67b11a5c30401abd91e0c1922cf/awkward1-0.2.37-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2d8ac0edba8c850094c35dc13f4d9946", "sha256": "fe49720917639a4aea7d92fc2f7750fe8b08ce56af302c5187daee9725cfca5d" }, "downloads": -1, "filename": "awkward1-0.2.37-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "2d8ac0edba8c850094c35dc13f4d9946", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5976346, "upload_time": "2020-09-12T14:06:07", "upload_time_iso_8601": "2020-09-12T14:06:07.186909Z", "url": "https://files.pythonhosted.org/packages/f2/f1/54fadb4a9f63b24dc1ec3e3ddf61546310ae0ff9eaeca2437014919cb952/awkward1-0.2.37-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c1751a4c7e96c50b5ac31c797e15b027", "sha256": "a5362d8151beba1ad024369ed210b2dba9dddbacefc673b97138fde8cdf57c49" }, "downloads": -1, "filename": "awkward1-0.2.37-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "c1751a4c7e96c50b5ac31c797e15b027", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5795619, "upload_time": "2020-09-12T14:25:45", "upload_time_iso_8601": "2020-09-12T14:25:45.223454Z", "url": "https://files.pythonhosted.org/packages/af/f5/2f39e342bcc0c2d2c91f9465f502ba81c23f6a5c02c1c76999c981b3c036/awkward1-0.2.37-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "98555d32c32649de31b8ce1bfff2261e", "sha256": "5dbd3cabc9212c3dcfd82d862882af5a68bff4a21e1d530cf9878763475e2e5e" }, "downloads": -1, "filename": "awkward1-0.2.37-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "98555d32c32649de31b8ce1bfff2261e", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5727592, "upload_time": "2020-09-12T14:28:44", "upload_time_iso_8601": "2020-09-12T14:28:44.781225Z", "url": "https://files.pythonhosted.org/packages/1e/a1/0713fccb357fc5ac6ba7b127d096a5e485b761ad31dd5a6c5cba99912114/awkward1-0.2.37-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "04b79de1cab1b419b92ac0b689b12787", "sha256": "edf164c75459927e75f4f065ec7e7c567b171671af3854286113c92d51c16c19" }, "downloads": -1, "filename": "awkward1-0.2.37-cp36-cp36m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "04b79de1cab1b419b92ac0b689b12787", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6097433, "upload_time": "2020-09-12T14:35:46", "upload_time_iso_8601": "2020-09-12T14:35:46.033580Z", "url": "https://files.pythonhosted.org/packages/9e/93/195904bfcecdf75ceea28837444f0ba43fd3a6a4bcbea4f3c5ce928fbc7a/awkward1-0.2.37-cp36-cp36m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2d9302540cf7b99c09ce7fd0cb9fc164", "sha256": "7632bb63ce6c4bde8eac762337666c24f130073d1ac0401502022f242ad84cbb" }, "downloads": -1, "filename": "awkward1-0.2.37-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "2d9302540cf7b99c09ce7fd0cb9fc164", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9263523, "upload_time": "2020-09-12T14:16:03", "upload_time_iso_8601": "2020-09-12T14:16:03.282504Z", "url": "https://files.pythonhosted.org/packages/28/c4/fc274b54faec01b59740b2ad6ce3aa73f653a2e0b014def8d9cab2df0122/awkward1-0.2.37-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6e88749be6e7219a29b040ad59009069", "sha256": "3959dc83e19f9dbd291e77bc96d00522c647de16dc5a4aefe27140a95f247fb7" }, "downloads": -1, "filename": "awkward1-0.2.37-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "6e88749be6e7219a29b040ad59009069", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 12108767, "upload_time": "2020-09-12T14:17:08", "upload_time_iso_8601": "2020-09-12T14:17:08.439260Z", "url": "https://files.pythonhosted.org/packages/e7/97/14743e33714dfd5fdd5a805c9022c89fd8ef3f8de025c7dda59ee62f3e89/awkward1-0.2.37-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d718c4298c0dbdc25b7eebe5c0f2f890", "sha256": "fc8b48740fc0118407d762e0dbb664d918170b5949205cbfaae2860902e94c33" }, "downloads": -1, "filename": "awkward1-0.2.37-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "d718c4298c0dbdc25b7eebe5c0f2f890", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5976038, "upload_time": "2020-09-12T14:05:53", "upload_time_iso_8601": "2020-09-12T14:05:53.626791Z", "url": "https://files.pythonhosted.org/packages/c2/b2/6ee514804b0ee659d3de8b5041b04e7f960ecdf3eb70c20d50f9e8ce1def/awkward1-0.2.37-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "759f2083c1ed252e53be2d240207ad0d", "sha256": "7569c6ebcb7f385634ad29732c7591dc9a626f8747790a6a0c54beaed4cf1c97" }, "downloads": -1, "filename": "awkward1-0.2.37-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "759f2083c1ed252e53be2d240207ad0d", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5794778, "upload_time": "2020-09-12T14:25:46", "upload_time_iso_8601": "2020-09-12T14:25:46.665285Z", "url": "https://files.pythonhosted.org/packages/9a/a6/b4636a5a164788358190352fbd8414bfa273d58e36d6bb37fe247e331e53/awkward1-0.2.37-cp37-cp37m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "adde7a9e9ed6499ba8f595afc554d2a4", "sha256": "d4d9b6d2477d030e16405b2d9d536edc41db7c13fa25b77b74afeae60bdd9031" }, "downloads": -1, "filename": "awkward1-0.2.37-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "adde7a9e9ed6499ba8f595afc554d2a4", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5728827, "upload_time": "2020-09-12T14:28:46", "upload_time_iso_8601": "2020-09-12T14:28:46.660144Z", "url": "https://files.pythonhosted.org/packages/3e/17/e55bb744ff5ad7e4cc71f64e41d182728eff5828ad9a8e4072e49d06b79f/awkward1-0.2.37-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "59e3c07a0d97e4b779c3eb66ad2346ae", "sha256": "e363eb2476002e4125e8b93d553bfead69cfe4e091b78bbde3f519a2a8980d0e" }, "downloads": -1, "filename": "awkward1-0.2.37-cp37-cp37m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "59e3c07a0d97e4b779c3eb66ad2346ae", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6098615, "upload_time": "2020-09-12T14:35:47", "upload_time_iso_8601": "2020-09-12T14:35:47.594002Z", "url": "https://files.pythonhosted.org/packages/2c/2d/50ba520d0be0bb9b5c20e3703ccfb14577593ca4c65fc5c523e7769689dc/awkward1-0.2.37-cp37-cp37m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4795bd6b98e917cdce10f68f7530e9e3", "sha256": "de2ff69be9dbc48ff95afdc3017b3265c7a0ea930d3e40eaa7253d50b79fd4de" }, "downloads": -1, "filename": "awkward1-0.2.37-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "4795bd6b98e917cdce10f68f7530e9e3", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9262659, "upload_time": "2020-09-12T14:24:39", "upload_time_iso_8601": "2020-09-12T14:24:39.833199Z", "url": "https://files.pythonhosted.org/packages/21/7d/0fe37865ee4f7bb60c3c8b1962a55b3336de19e9c9f2985ea0e9fb03810a/awkward1-0.2.37-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "def8ad7e5543a92fb671fa6e8be96d71", "sha256": "0e2b7d3c8c07984a619dd0c1988d6a9bf792a4dd21ddf1d41f1bc3e703b00cc6" }, "downloads": -1, "filename": "awkward1-0.2.37-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "def8ad7e5543a92fb671fa6e8be96d71", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 12108731, "upload_time": "2020-09-12T14:16:22", "upload_time_iso_8601": "2020-09-12T14:16:22.354992Z", "url": "https://files.pythonhosted.org/packages/b5/e1/97dac84f3af2430cc50e5eb147824d17ec84970321a60f84a8e4ddcc2fd9/awkward1-0.2.37-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "69fe75127c93d5a7cd250ba8b7a2519d", "sha256": "54a1ea939990d4b83854211bebeab5f4964d30cf29c96009cce463df4543f8d1" }, "downloads": -1, "filename": "awkward1-0.2.37-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "69fe75127c93d5a7cd250ba8b7a2519d", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6072070, "upload_time": "2020-09-12T14:05:54", "upload_time_iso_8601": "2020-09-12T14:05:54.021646Z", "url": "https://files.pythonhosted.org/packages/99/97/66ce3c8bb9d8ef9ae4faed46f4573e19989ece1c9380a244e28545ba1765/awkward1-0.2.37-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "15e72c120ccb0779e6a6bea471597365", "sha256": "63798035dfe542459b0e837170e7d6dec30bc62ad1633064da230f5108db5c32" }, "downloads": -1, "filename": "awkward1-0.2.37-cp38-cp38-manylinux1_i686.whl", "has_sig": false, "md5_digest": "15e72c120ccb0779e6a6bea471597365", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5745792, "upload_time": "2020-09-12T14:25:48", "upload_time_iso_8601": "2020-09-12T14:25:48.490094Z", "url": "https://files.pythonhosted.org/packages/8c/a8/f41f133020590c8d789eb8adb46e2aae071fb9c735b55c7ee72c33cfd19d/awkward1-0.2.37-cp38-cp38-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7025eee0b83a36e3671712f5f4aa4a6d", "sha256": "eb6f0f3327783fc074beb27118a0f1c816e43851d9e9535329a809415abea8d0" }, "downloads": -1, "filename": "awkward1-0.2.37-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "7025eee0b83a36e3671712f5f4aa4a6d", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5662709, "upload_time": "2020-09-12T14:28:48", "upload_time_iso_8601": "2020-09-12T14:28:48.565762Z", "url": "https://files.pythonhosted.org/packages/64/e7/5abd8aa351b6cc2142f3865b5e471ee2ebcc88caba7eb4193db519620082/awkward1-0.2.37-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fca0b498095a8232eda8a0502b4525bd", "sha256": "563d6382cc7996b181f787865e5b5c90e43a94355440fd41562d4d79c0f65b99" }, "downloads": -1, "filename": "awkward1-0.2.37-cp38-cp38-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "fca0b498095a8232eda8a0502b4525bd", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6095001, "upload_time": "2020-09-12T14:35:49", "upload_time_iso_8601": "2020-09-12T14:35:49.372817Z", "url": "https://files.pythonhosted.org/packages/86/8f/3effaf707b9c924d255884438195c5c9b3fde64dbc99dc8593272978c191/awkward1-0.2.37-cp38-cp38-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "eb216bf0774b19df6a0d7db0f04c82f9", "sha256": "ad61f0a8acb813ab5197a243a96474f0515c57442125485abdb2ef9e123a02b4" }, "downloads": -1, "filename": "awkward1-0.2.37-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "eb216bf0774b19df6a0d7db0f04c82f9", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9268106, "upload_time": "2020-09-12T14:25:26", "upload_time_iso_8601": "2020-09-12T14:25:26.345426Z", "url": "https://files.pythonhosted.org/packages/40/77/4cc974c9e4400998d32493ac038be78d666b2b9f989aa42ee7719d6a7aff/awkward1-0.2.37-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b0d67b60a6b43b99c62f66e7ce9cc101", "sha256": "77bb629c65616c055cd045e0090d28014fd87cfaf2056a577b308e5da9f2d9bf" }, "downloads": -1, "filename": "awkward1-0.2.37-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "b0d67b60a6b43b99c62f66e7ce9cc101", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 12113317, "upload_time": "2020-09-12T14:26:50", "upload_time_iso_8601": "2020-09-12T14:26:50.397743Z", "url": "https://files.pythonhosted.org/packages/76/46/457ac29a1bcfe8d228b82c399b14f05839036b3c90a65f8ce9ebc8fb4af8/awkward1-0.2.37-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d2a6e7c7283e7faa5706b12a0d826f9c", "sha256": "1da50c775c134fd0f78a7315fe8101ea591a80d764445a649c618602856d2214" }, "downloads": -1, "filename": "awkward1-0.2.37-cp39-cp39-manylinux1_i686.whl", "has_sig": false, "md5_digest": "d2a6e7c7283e7faa5706b12a0d826f9c", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5740613, "upload_time": "2020-09-12T14:25:50", "upload_time_iso_8601": "2020-09-12T14:25:50.100297Z", "url": "https://files.pythonhosted.org/packages/1a/cf/0606a719404b55cda3901be658bf84f1bf32107dbe9346e50f057025999c/awkward1-0.2.37-cp39-cp39-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e2fabaf14ccdc754e5677dbaf83f7165", "sha256": "d3873aa2ad4908b6abb8f2646579c941373f7d2a7ee73c2d3c8d2ad85dd828d4" }, "downloads": -1, "filename": "awkward1-0.2.37-cp39-cp39-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "e2fabaf14ccdc754e5677dbaf83f7165", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5661970, "upload_time": "2020-09-12T14:28:50", "upload_time_iso_8601": "2020-09-12T14:28:50.068372Z", "url": "https://files.pythonhosted.org/packages/32/74/f6044e3458a424b246506e3edb7666c57ee60c2b118e430dcaafcb6c96cc/awkward1-0.2.37-cp39-cp39-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ea4d1cdcaac121c50b58be2d8066be53", "sha256": "e16466a38a3618ab48967dfd5d19b409b8af6a6fb9f8fd87724f898145a7410c" }, "downloads": -1, "filename": "awkward1-0.2.37-cp39-cp39-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "ea4d1cdcaac121c50b58be2d8066be53", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6095334, "upload_time": "2020-09-12T14:35:50", "upload_time_iso_8601": "2020-09-12T14:35:50.993637Z", "url": "https://files.pythonhosted.org/packages/b0/36/edde89d4c3a9ef82382ba856dfcdfdc7a09699d4e9de8e9fe3580578e958/awkward1-0.2.37-cp39-cp39-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f44fe23948789c6d14d751719deb7670", "sha256": "69a470abe5ac8f9106b90b3753f964ff4654391aecb23ceecac6fffe55c8458b" }, "downloads": -1, "filename": "awkward1-0.2.37.tar.gz", "has_sig": false, "md5_digest": "f44fe23948789c6d14d751719deb7670", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 789761, "upload_time": "2020-09-12T14:35:52", "upload_time_iso_8601": "2020-09-12T14:35:52.239383Z", "url": "https://files.pythonhosted.org/packages/73/fb/281886cd59742e65a2cff8a3b1292b948867d90dfcd1ac920c84db52ee00/awkward1-0.2.37.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.38": [ { "comment_text": "", "digests": { "md5": "407b63f22ecfcfe9157f02ba2e120ab9", "sha256": "2a7296f0bab609eecfc6745d23a46b95d13029822e0d28fde98fce6c0d271f15" }, "downloads": -1, "filename": "awkward1-0.2.38-cp27-cp27m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "407b63f22ecfcfe9157f02ba2e120ab9", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5976085, "upload_time": "2020-09-18T15:50:59", "upload_time_iso_8601": "2020-09-18T15:50:59.399336Z", "url": "https://files.pythonhosted.org/packages/a4/12/fe4a5f47b5abb07557cc05dfdef5634fd22a62f48f8d412ae79489281fa4/awkward1-0.2.38-cp27-cp27m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dfefec86ded231ca0df6aac8a07ccfe3", "sha256": "5387ad8b24915873edb1f648a054e8a36fc6101b3573d78b7fb516c872d7b864" }, "downloads": -1, "filename": "awkward1-0.2.38-cp27-cp27m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "dfefec86ded231ca0df6aac8a07ccfe3", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5794286, "upload_time": "2020-09-18T16:13:12", "upload_time_iso_8601": "2020-09-18T16:13:12.556809Z", "url": "https://files.pythonhosted.org/packages/cd/b4/17137066acc4bd78ae867a5115d972cd8e4362f188285b64ec11ae911fa2/awkward1-0.2.38-cp27-cp27m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "848b3b312754149d47e74fb6d157ebbd", "sha256": "e462e9f3137c057a31c8a7c77a666adf6cbb822b2b31c23ac1dbc83ab4841129" }, "downloads": -1, "filename": "awkward1-0.2.38-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "848b3b312754149d47e74fb6d157ebbd", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5728300, "upload_time": "2020-09-18T16:12:24", "upload_time_iso_8601": "2020-09-18T16:12:24.719136Z", "url": "https://files.pythonhosted.org/packages/ee/cb/bb9c2e3e982f3e4e0f55fdaef5bc9abb14b336ed75eb21faabb468bce512/awkward1-0.2.38-cp27-cp27m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ad38056a7e1731921318c451b0b1d22e", "sha256": "f276961418fffbed643c8f29f11371d32ad7ce4f13f05ee698bf96e1fbbffa2c" }, "downloads": -1, "filename": "awkward1-0.2.38-cp27-cp27m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "ad38056a7e1731921318c451b0b1d22e", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6103133, "upload_time": "2020-09-18T16:15:41", "upload_time_iso_8601": "2020-09-18T16:15:41.778790Z", "url": "https://files.pythonhosted.org/packages/79/e8/98594e4df1ae8fa44a4c07c7aff51b16f5b256c66464a249fa94caf947e7/awkward1-0.2.38-cp27-cp27m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b742e7a0570b4e45477daf003df8de3d", "sha256": "b58779aec6a917b3b6b202ce91fe066200f084349e8a488423d1462fbeaa10d0" }, "downloads": -1, "filename": "awkward1-0.2.38-cp27-cp27mu-manylinux1_i686.whl", "has_sig": false, "md5_digest": "b742e7a0570b4e45477daf003df8de3d", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5794114, "upload_time": "2020-09-18T16:13:14", "upload_time_iso_8601": "2020-09-18T16:13:14.394783Z", "url": "https://files.pythonhosted.org/packages/fe/35/de721cf82083717bf98e7110255815c4553e8f608c60d873c16f730dadc2/awkward1-0.2.38-cp27-cp27mu-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4e4d8cf9d837afdc042c8f03ce0e784b", "sha256": "daa51a05e518ed87867e4dafbba33e557b16dcdd6c929c8223d17d7a2184bc45" }, "downloads": -1, "filename": "awkward1-0.2.38-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "4e4d8cf9d837afdc042c8f03ce0e784b", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5728356, "upload_time": "2020-09-18T16:12:26", "upload_time_iso_8601": "2020-09-18T16:12:26.849299Z", "url": "https://files.pythonhosted.org/packages/a9/db/7a2c70173a089f2ab468e541e0bb74f72930acfc54ecebdb4f5c39592a73/awkward1-0.2.38-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8680eee3c6dfb00885408520eaec62d0", "sha256": "1e54f9fc08af72e09c7853da70a95aec268a0dca817fecc8834b35c6a2c6d1f5" }, "downloads": -1, "filename": "awkward1-0.2.38-cp27-cp27mu-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "8680eee3c6dfb00885408520eaec62d0", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6103196, "upload_time": "2020-09-18T16:15:44", "upload_time_iso_8601": "2020-09-18T16:15:44.149559Z", "url": "https://files.pythonhosted.org/packages/4f/93/ecabf76986d6241bbc275f3e2a5093698fc40a25f9989b4581114a404310/awkward1-0.2.38-cp27-cp27mu-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "41cd2df26ff9640a66b1f9282ebe5689", "sha256": "9a69999662fcb82b170457db99403a154ae90102cf5801da8921dea77b8b736b" }, "downloads": -1, "filename": "awkward1-0.2.38-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "41cd2df26ff9640a66b1f9282ebe5689", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9594729, "upload_time": "2020-09-18T15:57:02", "upload_time_iso_8601": "2020-09-18T15:57:02.070519Z", "url": "https://files.pythonhosted.org/packages/b7/59/64600a5c3ab40b4e27932dd6ef4297c4f33737088ef97db08e3b4b536c81/awkward1-0.2.38-cp27-cp27m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d3949c9c357585c31085e933a325fafc", "sha256": "2b464404fefc9341bcfc19317ec5da7dcdc7a77bc95b73fb0927819f5b5878d3" }, "downloads": -1, "filename": "awkward1-0.2.38-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "d3949c9c357585c31085e933a325fafc", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 12443162, "upload_time": "2020-09-18T16:03:17", "upload_time_iso_8601": "2020-09-18T16:03:17.713840Z", "url": "https://files.pythonhosted.org/packages/a5/12/db826ca46f68f97e76eb37f0e3d1c82e9b3006dc9efa5b8dce1ee1abe540/awkward1-0.2.38-cp27-cp27m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "aa4ead088debe1f42dcb1c16e956e0c1", "sha256": "ef84e96fc4ce82dad52d6288e48d8815288533ad11b5cfea490ebb5161530a06" }, "downloads": -1, "filename": "awkward1-0.2.38-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "aa4ead088debe1f42dcb1c16e956e0c1", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5795580, "upload_time": "2020-09-18T16:13:16", "upload_time_iso_8601": "2020-09-18T16:13:16.928016Z", "url": "https://files.pythonhosted.org/packages/42/24/9de62b999fefca692badf1d7bbf9de1e85c29db9d42001e78af3859fc6aa/awkward1-0.2.38-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5ba20e0db7b5da6520ed730d3237c7ff", "sha256": "1ee7ef5c97ac40ebe1559dadeeefa665ce8223fd56708869cc03e33bf395480a" }, "downloads": -1, "filename": "awkward1-0.2.38-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "5ba20e0db7b5da6520ed730d3237c7ff", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5727610, "upload_time": "2020-09-18T16:12:28", "upload_time_iso_8601": "2020-09-18T16:12:28.890783Z", "url": "https://files.pythonhosted.org/packages/fa/70/c008536ed7c3952ae4d32c2a77e8f5493fcac8b94e4003c68ceacb83cb9b/awkward1-0.2.38-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "95b2fce4fbe60cf5c4e67eea53641a90", "sha256": "dd3233fcdf05d0bb8858684bab535a8fbc774da2fdf3c7948aaadb4dffa53456" }, "downloads": -1, "filename": "awkward1-0.2.38-cp35-cp35m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "95b2fce4fbe60cf5c4e67eea53641a90", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6097450, "upload_time": "2020-09-18T16:15:45", "upload_time_iso_8601": "2020-09-18T16:15:45.974176Z", "url": "https://files.pythonhosted.org/packages/84/fc/80cdd837f7571d4d0a14789283a162ea6b2e8d09874e45a4c0dc2fd7b322/awkward1-0.2.38-cp35-cp35m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "39460a6a263289510d60c5407208089c", "sha256": "49aa3373e2ca3628090faf2288fd0a11bda252ae4d0d3f56146bdf94913ec53e" }, "downloads": -1, "filename": "awkward1-0.2.38-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "39460a6a263289510d60c5407208089c", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9595398, "upload_time": "2020-09-18T16:28:28", "upload_time_iso_8601": "2020-09-18T16:28:28.833082Z", "url": "https://files.pythonhosted.org/packages/f0/a0/72c408edbcd6453b5bae9d441612d717e0a21077fcff896553de4a87dfd3/awkward1-0.2.38-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "552d2f5b31fc74b4b12b41ae408ab5d3", "sha256": "e2a730932aca85fbcf8a6cbe8ff5ee6e705aaa1d4f2b4336db4ae4e84ac44d8f" }, "downloads": -1, "filename": "awkward1-0.2.38-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "552d2f5b31fc74b4b12b41ae408ab5d3", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 12441841, "upload_time": "2020-09-18T15:55:52", "upload_time_iso_8601": "2020-09-18T15:55:52.451388Z", "url": "https://files.pythonhosted.org/packages/8d/3c/be41c68839055c9db739f0181a20909cbabcd803eb7d5092fa58b3a08b35/awkward1-0.2.38-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0505ebc5ee177d9d55b3eaad6841454f", "sha256": "91f2a554d916b38aea25f9a0f7a7c353a6dbb1b0afa34bc916475a9a2d5c275a" }, "downloads": -1, "filename": "awkward1-0.2.38-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "0505ebc5ee177d9d55b3eaad6841454f", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5976403, "upload_time": "2020-09-18T15:49:54", "upload_time_iso_8601": "2020-09-18T15:49:54.507137Z", "url": "https://files.pythonhosted.org/packages/f4/7a/bf3f044cfdecda3626b9db11f74734acbbe1a84ab040e0c2c4fde9deee73/awkward1-0.2.38-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e20d5c69772c6d50e65f483e82f2f396", "sha256": "399c36e07667059a6e891d096d71ef4de7fe58efa121473abbd04cfa4ce4a681" }, "downloads": -1, "filename": "awkward1-0.2.38-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "e20d5c69772c6d50e65f483e82f2f396", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5795722, "upload_time": "2020-09-18T16:13:18", "upload_time_iso_8601": "2020-09-18T16:13:18.646856Z", "url": "https://files.pythonhosted.org/packages/28/0e/282b21ad6d243c9e4673bfc4f1b6ce8c9532b86692f75987236512b1f4a9/awkward1-0.2.38-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2693a6dc318d9bb4123cd8bd7675fb83", "sha256": "c3c01b7fb0314436f6678fa0f9ff9aff1c132a9cbf1c539d0936ee971dfc0efe" }, "downloads": -1, "filename": "awkward1-0.2.38-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "2693a6dc318d9bb4123cd8bd7675fb83", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5727676, "upload_time": "2020-09-18T16:12:31", "upload_time_iso_8601": "2020-09-18T16:12:31.126099Z", "url": "https://files.pythonhosted.org/packages/fa/ee/09fe5db3f49cb031700066db0391e2d330ad92ce4f6313492fc022c03b13/awkward1-0.2.38-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "38139f6679378077fda7fbdb16cba29f", "sha256": "b5e90ce1c1a037c5d6b28466003ad8b9f13fb04a23ed0dfb349bcdcafc9b6d88" }, "downloads": -1, "filename": "awkward1-0.2.38-cp36-cp36m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "38139f6679378077fda7fbdb16cba29f", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6097489, "upload_time": "2020-09-18T16:15:48", "upload_time_iso_8601": "2020-09-18T16:15:48.105579Z", "url": "https://files.pythonhosted.org/packages/d2/84/8eddc8e63311ded854ea57ecf689eef25d827e3c74fc7c9d0608a53c9579/awkward1-0.2.38-cp36-cp36m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5929db23a2211c4bc246daa77fce1480", "sha256": "4e78d791962cf7d6e0ad404992e720c025a276662735f4f38a5b22d0bf9c1a3d" }, "downloads": -1, "filename": "awkward1-0.2.38-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "5929db23a2211c4bc246daa77fce1480", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9595160, "upload_time": "2020-09-18T15:58:34", "upload_time_iso_8601": "2020-09-18T15:58:34.004104Z", "url": "https://files.pythonhosted.org/packages/1f/51/0ac6394e8bbea308202303e18d2a6ed4691c9c2ebfa7b81e8a2f6d5e20c1/awkward1-0.2.38-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "80e23b62dd2b7ee6499a34d1b73ffe1a", "sha256": "f4fa668101dcbd51b86ce1d7ebc050568683c8862971ae289fb713edfa2a63a1" }, "downloads": -1, "filename": "awkward1-0.2.38-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "80e23b62dd2b7ee6499a34d1b73ffe1a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 12441728, "upload_time": "2020-09-18T16:07:38", "upload_time_iso_8601": "2020-09-18T16:07:38.697274Z", "url": "https://files.pythonhosted.org/packages/0b/39/f80baf6650025695826153a5abb56eaf32853f391065366d75203faa21ce/awkward1-0.2.38-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "50b000372ac9958775d2dbafb4f4949a", "sha256": "9752d5606bd21c518a94036b0ada677b2ce2774b051f453cf87c6e2167b112be" }, "downloads": -1, "filename": "awkward1-0.2.38-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "50b000372ac9958775d2dbafb4f4949a", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5976118, "upload_time": "2020-09-18T15:50:26", "upload_time_iso_8601": "2020-09-18T15:50:26.881330Z", "url": "https://files.pythonhosted.org/packages/08/ac/2ca02bb556460ebd191e585c8f7eccd3f291b9437641400d01f8190d9c27/awkward1-0.2.38-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d4819da201fe9d37125f745f934e3401", "sha256": "f37b0588af1b8db95f346ca6e142eabfbcc18ba516636b4b9cc5dd1f2def4c7b" }, "downloads": -1, "filename": "awkward1-0.2.38-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "d4819da201fe9d37125f745f934e3401", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5794869, "upload_time": "2020-09-18T16:13:20", "upload_time_iso_8601": "2020-09-18T16:13:20.426982Z", "url": "https://files.pythonhosted.org/packages/bf/2d/dc5d5116542764260f94cdb98dc3f48bde78af7ecf74adc6b9badbb0546f/awkward1-0.2.38-cp37-cp37m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "995783d15f3d45228d6be4ac63db80da", "sha256": "d0b7dc71e12a6e318d5dcc6689f11255b020410a4c4aaf2ab035224f00e958c6" }, "downloads": -1, "filename": "awkward1-0.2.38-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "995783d15f3d45228d6be4ac63db80da", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5728915, "upload_time": "2020-09-18T16:12:32", "upload_time_iso_8601": "2020-09-18T16:12:32.917827Z", "url": "https://files.pythonhosted.org/packages/e4/21/294242869564c134c2f86e074430dc1221836e5ed2aae51ae8d40cb7cd05/awkward1-0.2.38-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "db91d072b8c03f2054d642a051b557c6", "sha256": "6afe5926d4ded66ab2281e86e02e6fe34207cc600291d1e761cabbae511447c6" }, "downloads": -1, "filename": "awkward1-0.2.38-cp37-cp37m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "db91d072b8c03f2054d642a051b557c6", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6098629, "upload_time": "2020-09-18T16:15:49", "upload_time_iso_8601": "2020-09-18T16:15:49.972437Z", "url": "https://files.pythonhosted.org/packages/fe/8c/8aa19d4749eb3d743a0de8ec853e6c8d31362f3ecea8cf669b572f56a7a8/awkward1-0.2.38-cp37-cp37m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f419864f855541b394dd4bbb6de63c56", "sha256": "18ca17b766b8024eea6cc343c26b8d5f7c4b4dea7431469f4385bebddac78ea1" }, "downloads": -1, "filename": "awkward1-0.2.38-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "f419864f855541b394dd4bbb6de63c56", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9594398, "upload_time": "2020-09-18T16:04:00", "upload_time_iso_8601": "2020-09-18T16:04:00.219902Z", "url": "https://files.pythonhosted.org/packages/42/72/c5159f68e3b4a3383df30a2e5c66e7ee90c8ba0fa58528157714d5668a99/awkward1-0.2.38-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "785a6f0b2d3c7d2bf48bdf9064048200", "sha256": "b5efcb157f10f299842e63c56d7875dedb75d26a4ffa6a4188218c083da7fde4" }, "downloads": -1, "filename": "awkward1-0.2.38-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "785a6f0b2d3c7d2bf48bdf9064048200", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 12441691, "upload_time": "2020-09-18T16:07:56", "upload_time_iso_8601": "2020-09-18T16:07:56.264649Z", "url": "https://files.pythonhosted.org/packages/87/31/eddea75b37ea2156805a8532d793d2a7c39d205941f3994ed92b756e9c46/awkward1-0.2.38-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4a7e36edc49e7d109380968c498ff10c", "sha256": "2b9069853d9da035b690efd47da4743285daa63c091949564216ad7394ee4f45" }, "downloads": -1, "filename": "awkward1-0.2.38-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "4a7e36edc49e7d109380968c498ff10c", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6072146, "upload_time": "2020-09-18T15:50:35", "upload_time_iso_8601": "2020-09-18T15:50:35.742529Z", "url": "https://files.pythonhosted.org/packages/07/9f/4e5cb65331a43094a6a4fb79c7c98fec2beb2ac910daef7ea77f22ac55a5/awkward1-0.2.38-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a0e2ccf22f349f9c6b119fefdc25fe94", "sha256": "78fe4adeb242134c1176559a6274f4afe447ccb9fc7b5fa5303277918ebb5d88" }, "downloads": -1, "filename": "awkward1-0.2.38-cp38-cp38-manylinux1_i686.whl", "has_sig": false, "md5_digest": "a0e2ccf22f349f9c6b119fefdc25fe94", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5745867, "upload_time": "2020-09-18T16:13:22", "upload_time_iso_8601": "2020-09-18T16:13:22.435143Z", "url": "https://files.pythonhosted.org/packages/91/26/cce54d0c4b1bee1bcfcb19dc221e1f38f71246c2fa5d7a557cdd1bc1bb18/awkward1-0.2.38-cp38-cp38-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "08c7e1d952c2d43d8a3e8d286f13f829", "sha256": "70b9b832898d7c3b1269e144a034e198a60be4918c632328130bd8a25ab6148b" }, "downloads": -1, "filename": "awkward1-0.2.38-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "08c7e1d952c2d43d8a3e8d286f13f829", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5662775, "upload_time": "2020-09-18T16:12:34", "upload_time_iso_8601": "2020-09-18T16:12:34.991197Z", "url": "https://files.pythonhosted.org/packages/56/87/b2ab83ad3fc7d725039ef1b5b57de5dadf3debf006e9147517a2938571c8/awkward1-0.2.38-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2369f04e1334885b11a824ce65f13155", "sha256": "87af175855a0ee6b3bc8f247e8ed3e556c1eab8a732a54146d885eca4ee489c8" }, "downloads": -1, "filename": "awkward1-0.2.38-cp38-cp38-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "2369f04e1334885b11a824ce65f13155", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6095053, "upload_time": "2020-09-18T16:15:51", "upload_time_iso_8601": "2020-09-18T16:15:51.777768Z", "url": "https://files.pythonhosted.org/packages/f3/30/173e3331fa951c9bbf2276c041234e4282a6eaf117c3eeba314d3f25b7fd/awkward1-0.2.38-cp38-cp38-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9be0935009b7f09f63212d3e30116aaf", "sha256": "5d2f6682f21655dfa93a150823e029dc640ca41085ab0061f5144a32f9c52d51" }, "downloads": -1, "filename": "awkward1-0.2.38-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "9be0935009b7f09f63212d3e30116aaf", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9599945, "upload_time": "2020-09-18T16:07:14", "upload_time_iso_8601": "2020-09-18T16:07:14.688690Z", "url": "https://files.pythonhosted.org/packages/88/73/5d6c6497b95f2fbece0b56416b1d26b3c913cffa7f95d6ad47d2d4c02946/awkward1-0.2.38-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "934e0a396668a6de627e39080a5a0fa6", "sha256": "6b77ab7ba0c427e0de81cdf220daf32abb510e673c6e15db17754823a36a4ed5" }, "downloads": -1, "filename": "awkward1-0.2.38-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "934e0a396668a6de627e39080a5a0fa6", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 12446176, "upload_time": "2020-09-18T16:04:31", "upload_time_iso_8601": "2020-09-18T16:04:31.584525Z", "url": "https://files.pythonhosted.org/packages/21/15/8b710df9cdd88be9fbace2a1b85c6453da60d6574d352a295353c2614c12/awkward1-0.2.38-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6488ac763a971a3691fcb69fab357a95", "sha256": "31f2dda3821e7ef9a7d7846bbaf44f17adbcbc82210452cff18e72df19805d24" }, "downloads": -1, "filename": "awkward1-0.2.38-cp39-cp39-manylinux1_i686.whl", "has_sig": false, "md5_digest": "6488ac763a971a3691fcb69fab357a95", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5740695, "upload_time": "2020-09-18T16:13:24", "upload_time_iso_8601": "2020-09-18T16:13:24.223668Z", "url": "https://files.pythonhosted.org/packages/98/04/55566c0eee4ab5a0b1b776ca138f25ff637e01ddd418c207cd7ffc89e05e/awkward1-0.2.38-cp39-cp39-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "45bc363ed20c18040de26f66ffe124d2", "sha256": "21468d2d64045d0546289528793cae7370ebe8a4daa6ac334a14fa4b8ad57d65" }, "downloads": -1, "filename": "awkward1-0.2.38-cp39-cp39-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "45bc363ed20c18040de26f66ffe124d2", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5662055, "upload_time": "2020-09-18T16:12:36", "upload_time_iso_8601": "2020-09-18T16:12:36.766970Z", "url": "https://files.pythonhosted.org/packages/35/2a/dcedce2c2caa5ec158b362b2f70a7111f41f095d568961f342177addd6cc/awkward1-0.2.38-cp39-cp39-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5f926bcb8e5ed0e539fb4954b3fffb78", "sha256": "67ee6aa1da2ee0b68f850aadab56ccb349131880a6eeea83c9ed2b64f0c75635" }, "downloads": -1, "filename": "awkward1-0.2.38-cp39-cp39-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "5f926bcb8e5ed0e539fb4954b3fffb78", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6095398, "upload_time": "2020-09-18T16:15:53", "upload_time_iso_8601": "2020-09-18T16:15:53.924715Z", "url": "https://files.pythonhosted.org/packages/6c/3c/98787a0ef3060fcb01a7924bcd416929da3d2043703998f0edca6cd1b97b/awkward1-0.2.38-cp39-cp39-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "804143781b99372e1bc06562a255bcd4", "sha256": "f25db4920677029a92e92b994f1056902724b6a947549254c1446bdc6e388671" }, "downloads": -1, "filename": "awkward1-0.2.38.tar.gz", "has_sig": false, "md5_digest": "804143781b99372e1bc06562a255bcd4", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 789923, "upload_time": "2020-09-18T16:15:56", "upload_time_iso_8601": "2020-09-18T16:15:56.313346Z", "url": "https://files.pythonhosted.org/packages/ab/d3/d89317454e00c5a57b59c7c07b156def606a73fbb0c0bae1c0879cbf2140/awkward1-0.2.38.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "45357e0770c7e0f0d083af5a9bf85f45", "sha256": "fdd93dfe4ba6cf91ae166d3e3d50ce3f285d58b468b55151ff4d10ac79065ebe" }, "downloads": -1, "filename": "awkward1-0.3.0-cp27-cp27m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "45357e0770c7e0f0d083af5a9bf85f45", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5973205, "upload_time": "2020-09-21T19:18:14", "upload_time_iso_8601": "2020-09-21T19:18:14.016603Z", "url": "https://files.pythonhosted.org/packages/83/e9/1ce3f7b1a302f7c1ecd6d9baba2d889ad158cf0399845bc6ebc6a23fa112/awkward1-0.3.0-cp27-cp27m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0d89661783744e37535126de915839bb", "sha256": "4cb54f20af843de8b6e0223b8b2459dd7803b80a3dcd136c92e0cf7d0603f87f" }, "downloads": -1, "filename": "awkward1-0.3.0-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "0d89661783744e37535126de915839bb", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5725548, "upload_time": "2020-09-21T19:38:31", "upload_time_iso_8601": "2020-09-21T19:38:31.601476Z", "url": "https://files.pythonhosted.org/packages/01/0a/132bf520635e34ebee54a8e73beed199829c4fb7056ece0db99304eac103/awkward1-0.3.0-cp27-cp27m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f245cc100b5daab645315a405c259b8c", "sha256": "29ddf5f759a5dd566033d2b0e73deb8268a7eca2f9c5a48ed64539cfca46a898" }, "downloads": -1, "filename": "awkward1-0.3.0-cp27-cp27m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "f245cc100b5daab645315a405c259b8c", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6100379, "upload_time": "2020-09-21T20:43:17", "upload_time_iso_8601": "2020-09-21T20:43:17.361682Z", "url": "https://files.pythonhosted.org/packages/a7/7a/f49ceedecf21eb5116057ee4effdc48de1f09af0f248e855d1df41b4f927/awkward1-0.3.0-cp27-cp27m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ca56ed77271432ad086096fadc567f6e", "sha256": "22a0708da65002ffffdd1e9b52bbcacb771b3ecd2a523fa9542a69c39124df10" }, "downloads": -1, "filename": "awkward1-0.3.0-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "ca56ed77271432ad086096fadc567f6e", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5725591, "upload_time": "2020-09-21T19:38:33", "upload_time_iso_8601": "2020-09-21T19:38:33.901719Z", "url": "https://files.pythonhosted.org/packages/a7/07/295e078589be566fe49ebc79db032d6c04bcb0188b1129887708829048eb/awkward1-0.3.0-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e02b19b3134d039c98993bc583ff426e", "sha256": "3921bff055bdf9dd127f9938f13ca585d7fca6c6d50847d110f439b123e437a3" }, "downloads": -1, "filename": "awkward1-0.3.0-cp27-cp27mu-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "e02b19b3134d039c98993bc583ff426e", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6100442, "upload_time": "2020-09-21T20:43:19", "upload_time_iso_8601": "2020-09-21T20:43:19.366963Z", "url": "https://files.pythonhosted.org/packages/0f/49/54d40e03f6728c3ea5d61167972edf51c2560bf69d93edff85354bc2dd55/awkward1-0.3.0-cp27-cp27mu-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "98ec012cb98ec038ccdeb068ea1a9e30", "sha256": "97b0f30db0aed27f6c664178e2462e4e4a89758ce13957ff6046044301113b3d" }, "downloads": -1, "filename": "awkward1-0.3.0-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "98ec012cb98ec038ccdeb068ea1a9e30", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7193052, "upload_time": "2020-09-21T19:23:11", "upload_time_iso_8601": "2020-09-21T19:23:11.938949Z", "url": "https://files.pythonhosted.org/packages/00/06/c60c65b92d71b922f8e22fd6b437c4f6eb8f7cb364d93fd05103ffc50913/awkward1-0.3.0-cp27-cp27m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "652247b5409c187c7051674052c979b1", "sha256": "29c2dad004a9a6958445b4c0072390d730a3424bbc71d75be9f60db419c22a51" }, "downloads": -1, "filename": "awkward1-0.3.0-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "652247b5409c187c7051674052c979b1", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9707913, "upload_time": "2020-09-21T19:23:17", "upload_time_iso_8601": "2020-09-21T19:23:17.486634Z", "url": "https://files.pythonhosted.org/packages/5e/da/6460523935c61c48e90eff3883f3d951f2265c698601ae3be0cdff4fb096/awkward1-0.3.0-cp27-cp27m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b4019268bd168b0745d93109bc6d5fd5", "sha256": "4c7c3329294e83e47af8bd6ae715b10b844f66d80903a3ebde3cfe102365ec1b" }, "downloads": -1, "filename": "awkward1-0.3.0-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "b4019268bd168b0745d93109bc6d5fd5", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5724896, "upload_time": "2020-09-21T19:38:36", "upload_time_iso_8601": "2020-09-21T19:38:36.500762Z", "url": "https://files.pythonhosted.org/packages/32/7b/faa30cbf8d4456c30c9d6a0ce626a75cefb07c7bea1d7f0e55b3df88cb89/awkward1-0.3.0-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c651d1f1601b7c03e7b4a7ce23a0a0fb", "sha256": "acd4dbab80b5858f041ceb80fe600378d7a42ffb0dd5ce0de80f1fa2a1d931ab" }, "downloads": -1, "filename": "awkward1-0.3.0-cp35-cp35m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "c651d1f1601b7c03e7b4a7ce23a0a0fb", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6094776, "upload_time": "2020-09-21T20:43:21", "upload_time_iso_8601": "2020-09-21T20:43:21.409505Z", "url": "https://files.pythonhosted.org/packages/06/48/b0f76e7373ac728b2843c2f462d36369e3376d8e9b5bc60900a259d879cf/awkward1-0.3.0-cp35-cp35m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "931e7052174a69516ea590e1280f83ea", "sha256": "2cc5c7f1ddb1b78a105a952b88220d30df038431c0b8703c8c5bb06bf9056504" }, "downloads": -1, "filename": "awkward1-0.3.0-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "931e7052174a69516ea590e1280f83ea", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7193972, "upload_time": "2020-09-21T19:32:05", "upload_time_iso_8601": "2020-09-21T19:32:05.267924Z", "url": "https://files.pythonhosted.org/packages/18/b5/d1c2227afc4ead91572092086fc2c67f410748c9ad26093157e8b128e666/awkward1-0.3.0-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "96ac44d468226b0c51740ef197412262", "sha256": "2a579f0b69b134c162cbeeff995bff869ad40b24ce9b7216b3dce746f1231e67" }, "downloads": -1, "filename": "awkward1-0.3.0-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "96ac44d468226b0c51740ef197412262", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9704662, "upload_time": "2020-09-21T19:28:25", "upload_time_iso_8601": "2020-09-21T19:28:25.363461Z", "url": "https://files.pythonhosted.org/packages/71/25/2909609bc3e465ca9f929987136e9baf7ead4fec7323dc13b9687cd78c51/awkward1-0.3.0-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "05d48d7d8c0035de0adbe85d199c998c", "sha256": "a1e361ba35f8ae913820984973b80cb345d5a3ffa86ae4d8128c4ccc65437557" }, "downloads": -1, "filename": "awkward1-0.3.0-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "05d48d7d8c0035de0adbe85d199c998c", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5973432, "upload_time": "2020-09-21T19:18:21", "upload_time_iso_8601": "2020-09-21T19:18:21.571137Z", "url": "https://files.pythonhosted.org/packages/3c/0c/e9b6f6559bb4cd0e4b1f3843cdc85f06ca1609d60803142bea5556d68ef7/awkward1-0.3.0-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "27949d72b86c6e508cbb939f19785ff3", "sha256": "d89cd42c9cd9d1cb26999ac1b5aab5ccb85cebeb39778f3f1a134ca1102bf1cc" }, "downloads": -1, "filename": "awkward1-0.3.0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "27949d72b86c6e508cbb939f19785ff3", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5724934, "upload_time": "2020-09-21T19:38:38", "upload_time_iso_8601": "2020-09-21T19:38:38.200387Z", "url": "https://files.pythonhosted.org/packages/80/0d/cb8f9225ad6b3eeecc9d4fa793cea8c48ac167dbde8fac7772b8b9a9f6d4/awkward1-0.3.0-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0f028c51b4f47a222f949ec8278443ef", "sha256": "f8c751a80ddb0597a646a4de858d485506afd636e2ec7b67c424e163567e6788" }, "downloads": -1, "filename": "awkward1-0.3.0-cp36-cp36m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "0f028c51b4f47a222f949ec8278443ef", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6094753, "upload_time": "2020-09-21T20:43:23", "upload_time_iso_8601": "2020-09-21T20:43:23.102779Z", "url": "https://files.pythonhosted.org/packages/7f/1c/630d3034d120218486840a246d98750c3601fd6abc3db287aa45c2063079/awkward1-0.3.0-cp36-cp36m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "995b73b29f5c4f363f4fe0c119c920c6", "sha256": "83607498cbdba144cd2f42c16f67479192d4e933075ba0312861260ab4568295" }, "downloads": -1, "filename": "awkward1-0.3.0-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "995b73b29f5c4f363f4fe0c119c920c6", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7193980, "upload_time": "2020-09-21T19:30:54", "upload_time_iso_8601": "2020-09-21T19:30:54.591452Z", "url": "https://files.pythonhosted.org/packages/15/2d/ef35433e9a14f3de90abc11888cd8b6c840484b029eac7af9560607e21be/awkward1-0.3.0-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ed61170cec891b363245d8cff71ae6df", "sha256": "830c733f3bb447ea5aba08e2f208a47df5a6f6797f9db979be9870f262cd7ff1" }, "downloads": -1, "filename": "awkward1-0.3.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "ed61170cec891b363245d8cff71ae6df", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9704503, "upload_time": "2020-09-21T19:24:16", "upload_time_iso_8601": "2020-09-21T19:24:16.617302Z", "url": "https://files.pythonhosted.org/packages/af/49/fbd2267badf4258489d25e1a3d8f06968d24b9c4c91121ac75a7cb1a8a78/awkward1-0.3.0-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c728dc686a4ca1ed04c14158fbdf025a", "sha256": "3fee63f8d4e7035705c8c0da5b6b23e6df479f4900c54ac79961185ee0c6ca39" }, "downloads": -1, "filename": "awkward1-0.3.0-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "c728dc686a4ca1ed04c14158fbdf025a", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5973262, "upload_time": "2020-09-21T19:18:05", "upload_time_iso_8601": "2020-09-21T19:18:05.907204Z", "url": "https://files.pythonhosted.org/packages/68/91/2256b27c0be15c3bb04b3b61fd5ac11a888d135e8e49c3fb733d63f5cd99/awkward1-0.3.0-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5541008ff3aa491a78d5572ca4ecb1dd", "sha256": "642d19e2d2300dfd80750d8e5c0ea52ad2d48b1187461f6b3e6fbc78eeb803fb" }, "downloads": -1, "filename": "awkward1-0.3.0-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "5541008ff3aa491a78d5572ca4ecb1dd", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5726279, "upload_time": "2020-09-21T19:38:40", "upload_time_iso_8601": "2020-09-21T19:38:40.064020Z", "url": "https://files.pythonhosted.org/packages/84/aa/2fd61aef82b3f81d1aedfb700298dee3a68512941179abea4303c9427a1b/awkward1-0.3.0-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "913d16b4df5007e01bc7144edabf62ea", "sha256": "79610a3a89a1174f54c2afbfae0cf9525dc8daa4e737646b2b97e3be7035d018" }, "downloads": -1, "filename": "awkward1-0.3.0-cp37-cp37m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "913d16b4df5007e01bc7144edabf62ea", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6095806, "upload_time": "2020-09-21T20:43:24", "upload_time_iso_8601": "2020-09-21T20:43:24.983163Z", "url": "https://files.pythonhosted.org/packages/c2/da/fc7451cf7ef228b720ea5f8a2c0e408c7ffc489e10dea6a1a22dad6fa38f/awkward1-0.3.0-cp37-cp37m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6385ac842c5b005fa16e11c79a163cdb", "sha256": "6f4839cffb6daba1e0c57aa4c4f171863de9c6309fa1aadb4c3ebcd879e0f679" }, "downloads": -1, "filename": "awkward1-0.3.0-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "6385ac842c5b005fa16e11c79a163cdb", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7193912, "upload_time": "2020-09-21T19:27:40", "upload_time_iso_8601": "2020-09-21T19:27:40.400458Z", "url": "https://files.pythonhosted.org/packages/97/d6/8885794934e7adfd15f034c0d849f0418c9f7af7a84ac50ff60e756497dc/awkward1-0.3.0-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "011e1b61c74253894c642caeaf92d463", "sha256": "96bab6a84c913aba53883984ffb1648221e73d89f7ffad836127d4452a487700" }, "downloads": -1, "filename": "awkward1-0.3.0-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "011e1b61c74253894c642caeaf92d463", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9704534, "upload_time": "2020-09-21T19:25:59", "upload_time_iso_8601": "2020-09-21T19:25:59.603766Z", "url": "https://files.pythonhosted.org/packages/df/48/edf8286dc3e21bfea7d311dffa5422403baa1097f0b7cffcad17b72088d7/awkward1-0.3.0-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0765ab67401d4eb285d0a378325dfb0a", "sha256": "39c46b73948305cdd59d586b5165c591073bc70af79773967778ec22d940f15c" }, "downloads": -1, "filename": "awkward1-0.3.0-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "0765ab67401d4eb285d0a378325dfb0a", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6069405, "upload_time": "2020-09-21T19:19:18", "upload_time_iso_8601": "2020-09-21T19:19:18.656451Z", "url": "https://files.pythonhosted.org/packages/32/c9/0df9af2a4ed420bcd7360aa7d0cf20da9e5e2fc3e1e28ed90f9b8b8f2bda/awkward1-0.3.0-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d21f9d81d9b496ad51002461e0647333", "sha256": "61beacad99f4e1cf95c6932f310e4751313342459f47d928af0a17dc02bccff9" }, "downloads": -1, "filename": "awkward1-0.3.0-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "d21f9d81d9b496ad51002461e0647333", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5660086, "upload_time": "2020-09-21T19:38:42", "upload_time_iso_8601": "2020-09-21T19:38:42.033781Z", "url": "https://files.pythonhosted.org/packages/30/58/e6822d455b4a30d4b66e5d9ef2c0a460a7461289313db9cb733d835beaa3/awkward1-0.3.0-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b27f2d6e7a5cd4cabb4c8f0a59e706d4", "sha256": "3c33133eae78d615254556760c46bed22f070ced2f959f81d40c14f7bef96c65" }, "downloads": -1, "filename": "awkward1-0.3.0-cp38-cp38-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "b27f2d6e7a5cd4cabb4c8f0a59e706d4", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6092282, "upload_time": "2020-09-21T20:43:26", "upload_time_iso_8601": "2020-09-21T20:43:26.658886Z", "url": "https://files.pythonhosted.org/packages/e8/a1/ac88825dd31f2f77342cab70586746e347cd201d657ea14470b23da4ad63/awkward1-0.3.0-cp38-cp38-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "24bcc273f520246d7a68ff7d7098826e", "sha256": "30f96a647a747783f22253c30ab3fe2449ee87f6073d8f1c55e97a15e265027c" }, "downloads": -1, "filename": "awkward1-0.3.0-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "24bcc273f520246d7a68ff7d7098826e", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7189710, "upload_time": "2020-09-21T19:28:31", "upload_time_iso_8601": "2020-09-21T19:28:31.227111Z", "url": "https://files.pythonhosted.org/packages/9b/5e/20e73ac3ea64dfc59e0caf3ec26494fb79c88b68c593b77eec78311159a3/awkward1-0.3.0-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3da5e82069782390c2ebe2638a1708e3", "sha256": "b0f4276203b4c9cd073118e3b7704024ff93718e8cdb6c389c82e338e0e71f0c" }, "downloads": -1, "filename": "awkward1-0.3.0-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "3da5e82069782390c2ebe2638a1708e3", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9693635, "upload_time": "2020-09-21T19:31:43", "upload_time_iso_8601": "2020-09-21T19:31:43.835099Z", "url": "https://files.pythonhosted.org/packages/53/b8/68414db14d9c76c11f68ea3652a05a20b72c0a7eac976e8472d624d0c911/awkward1-0.3.0-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d0fb3009fd043d48c8b6a102ec49296d", "sha256": "92c57b8c892d2576cd9c9f4aeebfe017cd288320b32c45908f19bb6b33e91956" }, "downloads": -1, "filename": "awkward1-0.3.0-cp39-cp39-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "d0fb3009fd043d48c8b6a102ec49296d", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5659282, "upload_time": "2020-09-21T19:38:44", "upload_time_iso_8601": "2020-09-21T19:38:44.705483Z", "url": "https://files.pythonhosted.org/packages/e4/a1/c3b54abaaae9918c66c67c08e4cd0fac274e13f1c0684d65bc26a23a3e94/awkward1-0.3.0-cp39-cp39-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b87fd891fcf00893990a2b6c6d54f882", "sha256": "992f0526da7d08d758ebc762e8b605a3deecf12227e03286d5235b7375cf649a" }, "downloads": -1, "filename": "awkward1-0.3.0-cp39-cp39-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "b87fd891fcf00893990a2b6c6d54f882", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6092603, "upload_time": "2020-09-21T20:43:28", "upload_time_iso_8601": "2020-09-21T20:43:28.979578Z", "url": "https://files.pythonhosted.org/packages/ca/e2/35565e193adc6f1689860764d8836f5d51109b95f6bb440d10cd50c62015/awkward1-0.3.0-cp39-cp39-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a642077f4b42f180b1d3e8aaa4240990", "sha256": "90ca112e7390cc6918b7e76abca5a69ba2440b6e654c979f1d6573e64e93f862" }, "downloads": -1, "filename": "awkward1-0.3.0.tar.gz", "has_sig": false, "md5_digest": "a642077f4b42f180b1d3e8aaa4240990", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 787924, "upload_time": "2020-09-21T20:43:30", "upload_time_iso_8601": "2020-09-21T20:43:30.834785Z", "url": "https://files.pythonhosted.org/packages/ee/d7/61bbb94143b55b79a8d0ac17ad00dd84616cff80f806387702037cacd348/awkward1-0.3.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "7cd7283029bb206f376a1069df25a407", "sha256": "f76446e7dd61a79a541d5a5493c60f4a7cbe3312636a70c418a4564de8413fb9" }, "downloads": -1, "filename": "awkward1-0.3.1-cp27-cp27m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "7cd7283029bb206f376a1069df25a407", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5973312, "upload_time": "2020-09-21T22:02:57", "upload_time_iso_8601": "2020-09-21T22:02:57.896880Z", "url": "https://files.pythonhosted.org/packages/40/31/668de7aa68ec14b449c2516238e2366ba98e2358b9149722125a3b706acf/awkward1-0.3.1-cp27-cp27m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4a3d4ececce3803eef3a07c730b98a5c", "sha256": "bd5a127bcdbd732c61b874d933a7b22e0b46a38df8798a6e1337374553cc3601" }, "downloads": -1, "filename": "awkward1-0.3.1-cp27-cp27m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "4a3d4ececce3803eef3a07c730b98a5c", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5791642, "upload_time": "2020-09-21T22:19:35", "upload_time_iso_8601": "2020-09-21T22:19:35.545931Z", "url": "https://files.pythonhosted.org/packages/d5/be/47a40d278f0dee37b9fba370a8b75e3a7bcf7a95a753ea5facaaea89d85b/awkward1-0.3.1-cp27-cp27m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "34fb2faeba2d16354393e9aa86a6a578", "sha256": "7021e08c9675df4e0f13a9601ba0fb54798e7f873ceccfbb787f027b2e61a219" }, "downloads": -1, "filename": "awkward1-0.3.1-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "34fb2faeba2d16354393e9aa86a6a578", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5725584, "upload_time": "2020-09-21T22:20:54", "upload_time_iso_8601": "2020-09-21T22:20:54.031253Z", "url": "https://files.pythonhosted.org/packages/3d/a6/21dd92f86d7a50d30aaa1495b5190dd58583f8d51ab96a91aac349cd1a14/awkward1-0.3.1-cp27-cp27m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "68432ff06edb882c066c77fe7a36e153", "sha256": "88220437bb2064008b2e1f06d92b765df04bedcb407692dcdca791889ed60e21" }, "downloads": -1, "filename": "awkward1-0.3.1-cp27-cp27m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "68432ff06edb882c066c77fe7a36e153", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6100436, "upload_time": "2020-09-21T22:26:45", "upload_time_iso_8601": "2020-09-21T22:26:45.553833Z", "url": "https://files.pythonhosted.org/packages/e5/30/6a2d71ab90b18448e278737a540e630cafe88aca5647a55bf032744bb37c/awkward1-0.3.1-cp27-cp27m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3d4b69db14c253460aea6c1785f05fa4", "sha256": "e69bfa6c4f013b7c03534ea0a49f8de7ce546dffdcfb8d7518f73f37c874d1d6" }, "downloads": -1, "filename": "awkward1-0.3.1-cp27-cp27mu-manylinux1_i686.whl", "has_sig": false, "md5_digest": "3d4b69db14c253460aea6c1785f05fa4", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5791442, "upload_time": "2020-09-21T22:19:37", "upload_time_iso_8601": "2020-09-21T22:19:37.354778Z", "url": "https://files.pythonhosted.org/packages/a0/12/4fbd7521accdf082e8ed2f7ce854d458696ea0d36adcd0bb1af36348a8ac/awkward1-0.3.1-cp27-cp27mu-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b87d36244a4c3821a5985ac00e472fc3", "sha256": "25ce5d8e45697c641013bcc10699f6a3cbb4a1ec28c642fab377b62544d94d24" }, "downloads": -1, "filename": "awkward1-0.3.1-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "b87d36244a4c3821a5985ac00e472fc3", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5725644, "upload_time": "2020-09-21T22:20:56", "upload_time_iso_8601": "2020-09-21T22:20:56.405943Z", "url": "https://files.pythonhosted.org/packages/88/af/10fe23a957b4ea2b06320ee52ce1d5fce849ef397ff750d27a566f71e0ad/awkward1-0.3.1-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fafa6afd2318cf8cf58320d211aa272e", "sha256": "87b38d31f824aa69657c716c253ca4941933174abb2dd144780c773e3fd57c4f" }, "downloads": -1, "filename": "awkward1-0.3.1-cp27-cp27mu-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "fafa6afd2318cf8cf58320d211aa272e", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6100480, "upload_time": "2020-09-21T22:26:47", "upload_time_iso_8601": "2020-09-21T22:26:47.997585Z", "url": "https://files.pythonhosted.org/packages/d0/f7/4aede2937f294a84562e32a55cc1ebde522f4492261240b0cfd256aee9e0/awkward1-0.3.1-cp27-cp27mu-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a19b3c965cdfc5ef3d641e4312aed289", "sha256": "e9b1cbfcbe5d6380c77837f22a9ff31825bb8eea287b589001e953934914d9bb" }, "downloads": -1, "filename": "awkward1-0.3.1-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "a19b3c965cdfc5ef3d641e4312aed289", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7193290, "upload_time": "2020-09-21T22:10:45", "upload_time_iso_8601": "2020-09-21T22:10:45.487161Z", "url": "https://files.pythonhosted.org/packages/09/4f/91a4c3a2ade97258fb92c5b3f003e8099b076fb836d143412748d2cd7dce/awkward1-0.3.1-cp27-cp27m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c78950f35199df9b54955ac4b208f25a", "sha256": "c5bcd4d195ec2cb3469adf46cb7ce6d77792ffd0ced9e2f0214ceeeb262668d4" }, "downloads": -1, "filename": "awkward1-0.3.1-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "c78950f35199df9b54955ac4b208f25a", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9708095, "upload_time": "2020-09-21T22:10:02", "upload_time_iso_8601": "2020-09-21T22:10:02.550057Z", "url": "https://files.pythonhosted.org/packages/d4/83/92ed1290237c6c6b12111ff50a601a6cd05af4cbf55fadd0dd8e7f4a3b5e/awkward1-0.3.1-cp27-cp27m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ee3821d0cc95b9786deca99c619b8e77", "sha256": "9bf54b7e99ad04585cdddccc7fd7df7a6b894a928fb8441bc2a746dca6f37df2" }, "downloads": -1, "filename": "awkward1-0.3.1-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "ee3821d0cc95b9786deca99c619b8e77", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5793020, "upload_time": "2020-09-21T22:19:39", "upload_time_iso_8601": "2020-09-21T22:19:39.744178Z", "url": "https://files.pythonhosted.org/packages/89/4d/3397ce5774bcb9a59105aba0d121e21b215a5bd3c2eff4c0ed77e2aa172a/awkward1-0.3.1-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "888cad612e0a5d62e3d06322c2b27102", "sha256": "64891914cd07e43f13f4dad483457eaeabf5d9f6040a2b649d2eec5c537a3145" }, "downloads": -1, "filename": "awkward1-0.3.1-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "888cad612e0a5d62e3d06322c2b27102", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5724990, "upload_time": "2020-09-21T22:20:58", "upload_time_iso_8601": "2020-09-21T22:20:58.405966Z", "url": "https://files.pythonhosted.org/packages/bb/b2/4f674ed874556e1896e6fe3fc64adf98054e6110bfb9cbcaed5602574e77/awkward1-0.3.1-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1d3c40e41983fbe66b958fc54cdb29cd", "sha256": "298148229bbc1626aaa75490edfbc649653db78b8fd02cdce2d00a15b1f7d338" }, "downloads": -1, "filename": "awkward1-0.3.1-cp35-cp35m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "1d3c40e41983fbe66b958fc54cdb29cd", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6094821, "upload_time": "2020-09-21T22:26:50", "upload_time_iso_8601": "2020-09-21T22:26:50.026186Z", "url": "https://files.pythonhosted.org/packages/bc/c7/f7d446f7a6d56d10468f5314d808aeb89389282f2b39e81a09beb8a41996/awkward1-0.3.1-cp35-cp35m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5a11a7235452aa5e3de5fe60dedf1428", "sha256": "d4004b23a6419e7ed6540260e41c4e94de58e3398441f1ba6001c9b12cfd1548" }, "downloads": -1, "filename": "awkward1-0.3.1-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "5a11a7235452aa5e3de5fe60dedf1428", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7194251, "upload_time": "2020-09-21T22:05:08", "upload_time_iso_8601": "2020-09-21T22:05:08.701708Z", "url": "https://files.pythonhosted.org/packages/45/d1/45b8a251c73e5fdca88527ab17fd01e5cc30a407b0503f09c0c1f2706bd4/awkward1-0.3.1-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9a8cd8c372ba2fb10f78ba1e876df4da", "sha256": "3e2c5861ced0d5d599466819b497070892b05b7c343a257800aec6138be86e7b" }, "downloads": -1, "filename": "awkward1-0.3.1-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "9a8cd8c372ba2fb10f78ba1e876df4da", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9704800, "upload_time": "2020-09-21T22:04:25", "upload_time_iso_8601": "2020-09-21T22:04:25.750779Z", "url": "https://files.pythonhosted.org/packages/af/8a/1f032d53150854ddf7f6f9ac61bff403942ce0663ef24a80b803ba53aac1/awkward1-0.3.1-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9e5be38c79be9196192675c24542dcf9", "sha256": "93714d45ed7ffb496b86a9a6978b39b05bcbd672b13bf7a4ed9b6bf050f9b41d" }, "downloads": -1, "filename": "awkward1-0.3.1-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "9e5be38c79be9196192675c24542dcf9", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5973519, "upload_time": "2020-09-21T22:00:31", "upload_time_iso_8601": "2020-09-21T22:00:31.957100Z", "url": "https://files.pythonhosted.org/packages/4b/64/f338404743530f5a1217c57abaf30c3b85fdf5cb8e7231e6dfe1a04b7a6c/awkward1-0.3.1-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1205a13423450a732d1fede074ad0f47", "sha256": "46c5a686a86231649364e65ad360c399405e59b2968de9129ceb51119222001a" }, "downloads": -1, "filename": "awkward1-0.3.1-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "1205a13423450a732d1fede074ad0f47", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5793046, "upload_time": "2020-09-21T22:19:41", "upload_time_iso_8601": "2020-09-21T22:19:41.874273Z", "url": "https://files.pythonhosted.org/packages/55/10/fb546ee9a8013b4380c1913e77c233b571fdb1399f3327c2f0e655a336f3/awkward1-0.3.1-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f4e1c7b26b445c89b46b5fe72ba69225", "sha256": "0d39aad9d95933b6ae000c4188353d277e8cf09c320a0ac7480aa7428b455015" }, "downloads": -1, "filename": "awkward1-0.3.1-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "f4e1c7b26b445c89b46b5fe72ba69225", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5724964, "upload_time": "2020-09-21T22:21:00", "upload_time_iso_8601": "2020-09-21T22:21:00.402171Z", "url": "https://files.pythonhosted.org/packages/d8/3b/b037fd1cb3c3e6ff611068bd11e99f741731ab762f605b0658779be1f1e3/awkward1-0.3.1-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9c10b9c1f703f531ad133175fec798d6", "sha256": "c14d9cc6b7fac8efeb2a84964c4f05ee944eba26549e97848b96954341772fa9" }, "downloads": -1, "filename": "awkward1-0.3.1-cp36-cp36m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "9c10b9c1f703f531ad133175fec798d6", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6094816, "upload_time": "2020-09-21T22:26:52", "upload_time_iso_8601": "2020-09-21T22:26:52.316804Z", "url": "https://files.pythonhosted.org/packages/59/5a/cc2ab296a00dce1ea5cf4ae6f21690bbc0ed2c568cfeb92d4cfc6f3b24fa/awkward1-0.3.1-cp36-cp36m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "29a272783ddf69e8a7ea3e6d44e1c69e", "sha256": "be0348a043449de9d2b81567cec4910e12ed7655706165071548aca5345bbc38" }, "downloads": -1, "filename": "awkward1-0.3.1-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "29a272783ddf69e8a7ea3e6d44e1c69e", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7194310, "upload_time": "2020-09-21T22:09:05", "upload_time_iso_8601": "2020-09-21T22:09:05.749998Z", "url": "https://files.pythonhosted.org/packages/94/fd/4768adae35173116ed6deee893c551161218f358f66a3f1eacee7dd05e6f/awkward1-0.3.1-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3d9ee4f45ac684d45acb4168e661af3d", "sha256": "8bfa94e85aaeebf1d156211c54c73706e43f7f3c657c7895b457b0cc940b10d8" }, "downloads": -1, "filename": "awkward1-0.3.1-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "3d9ee4f45ac684d45acb4168e661af3d", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9704703, "upload_time": "2020-09-21T22:11:55", "upload_time_iso_8601": "2020-09-21T22:11:55.873372Z", "url": "https://files.pythonhosted.org/packages/94/d5/56a6d9d6d6942443847e0f035d8247bb2070e4202e181778a8200b850b47/awkward1-0.3.1-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "85cc2d0b6a31f2b92a733447a2222353", "sha256": "22d38e015a71be66efd863ef0aef19f80459aeb40c332f69c6214b6c33dbc6a0" }, "downloads": -1, "filename": "awkward1-0.3.1-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "85cc2d0b6a31f2b92a733447a2222353", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5973360, "upload_time": "2020-09-21T22:00:24", "upload_time_iso_8601": "2020-09-21T22:00:24.822126Z", "url": "https://files.pythonhosted.org/packages/31/c4/859b516d7d8e6721c4c07b4ff1c9799deec6fe0f4a729192114d895859dc/awkward1-0.3.1-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f298e131b64067932a75a4680cedc54b", "sha256": "51a3df6aa2cf452d332f708367b4bc3423ee40f2e316c04b1394ac65fc22901e" }, "downloads": -1, "filename": "awkward1-0.3.1-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "f298e131b64067932a75a4680cedc54b", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5792072, "upload_time": "2020-09-21T22:19:44", "upload_time_iso_8601": "2020-09-21T22:19:44.085064Z", "url": "https://files.pythonhosted.org/packages/4d/82/1fb523bdd3cd7d55a0e5059cb7156198a2a095fd0575de4e0e54e5055b3d/awkward1-0.3.1-cp37-cp37m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "609591f11d231590e6a9bc07b8654c19", "sha256": "3a5d4f1f0facd673c56549f8be34d29214d7889014b990f11ec3a45eeb6ddcca" }, "downloads": -1, "filename": "awkward1-0.3.1-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "609591f11d231590e6a9bc07b8654c19", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5726330, "upload_time": "2020-09-21T22:21:02", "upload_time_iso_8601": "2020-09-21T22:21:02.182199Z", "url": "https://files.pythonhosted.org/packages/d4/01/9e7ef3783826c5050218806ebd49d3da2f3f84535d0a0390aef4d5743fce/awkward1-0.3.1-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c32dc628ee3da718702fddb84b70ba41", "sha256": "4482c90ff1cd5a988a23fb7f5d7ef1783c1562d9d58901ccb232ae6e0122a810" }, "downloads": -1, "filename": "awkward1-0.3.1-cp37-cp37m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "c32dc628ee3da718702fddb84b70ba41", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6095886, "upload_time": "2020-09-21T22:26:54", "upload_time_iso_8601": "2020-09-21T22:26:54.127883Z", "url": "https://files.pythonhosted.org/packages/01/88/d6b8b1fbbe6cbeb69c6bcc75e2797f7827689cbbf6ae7fb4e3c4a728dbb1/awkward1-0.3.1-cp37-cp37m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b12f988ce090ce28ca410a1c6f4d5e53", "sha256": "ff49f5c338d716e7d6eb28d06c38c58f47383f9d66a2fcdd74b43d4f97a5f97d" }, "downloads": -1, "filename": "awkward1-0.3.1-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "b12f988ce090ce28ca410a1c6f4d5e53", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7194217, "upload_time": "2020-09-21T22:12:50", "upload_time_iso_8601": "2020-09-21T22:12:50.001745Z", "url": "https://files.pythonhosted.org/packages/15/74/7e55032d014e7a6337e258c4a06f7a035d645e8c3154b25c26a064683f9b/awkward1-0.3.1-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5abbb22943e5ee86e56c7092513faae2", "sha256": "34c6cde84a4649be05fe214bf6a899339e104570d2530bbd8020ea75702da01d" }, "downloads": -1, "filename": "awkward1-0.3.1-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "5abbb22943e5ee86e56c7092513faae2", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9704721, "upload_time": "2020-09-21T22:12:05", "upload_time_iso_8601": "2020-09-21T22:12:05.688550Z", "url": "https://files.pythonhosted.org/packages/0a/c1/79c6d97dc079caedac04a526d9096b7fb9bc66213cf363653774f1fc303f/awkward1-0.3.1-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "40a46a1fd192e3aabe40a5ec826adaad", "sha256": "68bb58bc62ee0c9f3270b446cc627f3b435abd956bd92e02e2bb6fd6e6d9ca44" }, "downloads": -1, "filename": "awkward1-0.3.1-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "40a46a1fd192e3aabe40a5ec826adaad", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6069473, "upload_time": "2020-09-21T22:00:18", "upload_time_iso_8601": "2020-09-21T22:00:18.580692Z", "url": "https://files.pythonhosted.org/packages/80/84/309002f847be45bc4bbffc26724daded5b5ac3b81a8734a76ec2c7af2b99/awkward1-0.3.1-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "963eb34828925a6792bb29a3045bbdea", "sha256": "89ec7cc83b14687c530e0937b343f758f59fd83fc16473ee68a7694bc8408e47" }, "downloads": -1, "filename": "awkward1-0.3.1-cp38-cp38-manylinux1_i686.whl", "has_sig": false, "md5_digest": "963eb34828925a6792bb29a3045bbdea", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5743006, "upload_time": "2020-09-21T22:19:45", "upload_time_iso_8601": "2020-09-21T22:19:45.817687Z", "url": "https://files.pythonhosted.org/packages/b4/13/9617974f07d27a2e1db41f2d29d2e61f998e98b0398ee1a0e98767d39919/awkward1-0.3.1-cp38-cp38-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "932d7f3f538aac6e3a8292eb25134b01", "sha256": "283056f459ff8379386ac6bb46e9f93b336db6b239ed2d632ad90421ba4a69dd" }, "downloads": -1, "filename": "awkward1-0.3.1-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "932d7f3f538aac6e3a8292eb25134b01", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5660129, "upload_time": "2020-09-21T22:21:04", "upload_time_iso_8601": "2020-09-21T22:21:04.202781Z", "url": "https://files.pythonhosted.org/packages/65/cc/a0eed1479c3e4d434b8abdcd04c29a45f5a8821cb96d05cc31fff1a0d4f6/awkward1-0.3.1-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "66d0b5920b7457f1629512bedb0a64b9", "sha256": "6a185f10c047ba9010b99f80b4d7e9c1feb8c55b00efec536400cd8cdbc4f615" }, "downloads": -1, "filename": "awkward1-0.3.1-cp38-cp38-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "66d0b5920b7457f1629512bedb0a64b9", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6092337, "upload_time": "2020-09-21T22:26:56", "upload_time_iso_8601": "2020-09-21T22:26:56.547746Z", "url": "https://files.pythonhosted.org/packages/6c/3c/34a002456ff9d0bb9c224db8b4c4197002abf4333f31503c758048d075d3/awkward1-0.3.1-cp38-cp38-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "32d7e7556f0a6890c4ae639b60d53ffd", "sha256": "2a9d73b9e51cc1d947ec65d66910896484c40a1b2ee4216278f10dafac86ac52" }, "downloads": -1, "filename": "awkward1-0.3.1-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "32d7e7556f0a6890c4ae639b60d53ffd", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7190030, "upload_time": "2020-09-21T22:17:09", "upload_time_iso_8601": "2020-09-21T22:17:09.517343Z", "url": "https://files.pythonhosted.org/packages/32/48/631bbeac546ca7e44966f93b6a5a7b01d127224fb7b83973930df71d0926/awkward1-0.3.1-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "380829dfb350363e9ac2097c2a0495e2", "sha256": "856168eb8a541243a8b383715bbaf9f0dcf5bfa88a22283c32f87159f3a3ec0f" }, "downloads": -1, "filename": "awkward1-0.3.1-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "380829dfb350363e9ac2097c2a0495e2", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9693758, "upload_time": "2020-09-21T22:15:32", "upload_time_iso_8601": "2020-09-21T22:15:32.697406Z", "url": "https://files.pythonhosted.org/packages/34/4c/b753836fd15d1cecbde2b003f01ee5adecea73a1e717843d848b4ef414bc/awkward1-0.3.1-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7620996ccd8f5788cc69f7eefa17b00f", "sha256": "1c206dac86131b31f448aaa6ab0489cd75452d1aa8d27b53e86e17f176f9e812" }, "downloads": -1, "filename": "awkward1-0.3.1-cp39-cp39-manylinux1_i686.whl", "has_sig": false, "md5_digest": "7620996ccd8f5788cc69f7eefa17b00f", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5737939, "upload_time": "2020-09-21T22:19:47", "upload_time_iso_8601": "2020-09-21T22:19:47.574776Z", "url": "https://files.pythonhosted.org/packages/0d/75/417636f5cf3bcc1a3f946f7f353587d16c2ec18ff6a29d0fbf4697f1dd09/awkward1-0.3.1-cp39-cp39-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "50e4f9dfbe55f6b45acda49b7d0207fa", "sha256": "42dd7f421bcae199e063c294ef62a0968c236e036ab8d74105c681bb130043d2" }, "downloads": -1, "filename": "awkward1-0.3.1-cp39-cp39-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "50e4f9dfbe55f6b45acda49b7d0207fa", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5659345, "upload_time": "2020-09-21T22:21:06", "upload_time_iso_8601": "2020-09-21T22:21:06.301452Z", "url": "https://files.pythonhosted.org/packages/bc/c8/7e8c9b756014a330d9c3fd32aa6674f7851e03b2a1170b46db48ba56aeda/awkward1-0.3.1-cp39-cp39-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "011e8d7304683086e366bfbe3decd95d", "sha256": "84e9eae5ac237f0574dda8d446236b65dcc9b7497e947f940e47507ee9c3731c" }, "downloads": -1, "filename": "awkward1-0.3.1-cp39-cp39-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "011e8d7304683086e366bfbe3decd95d", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6092664, "upload_time": "2020-09-21T22:26:58", "upload_time_iso_8601": "2020-09-21T22:26:58.167433Z", "url": "https://files.pythonhosted.org/packages/62/79/e9bc03e2b4e8b4c9bc67fe88cacba7a834178a432deac5ff5ccdffffdd76/awkward1-0.3.1-cp39-cp39-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7a185e48c5fd7d1fdc84086014d10860", "sha256": "87a85942613c9767a87e9c9ab9796b6a908f0eaf6a587f142a9fbb8c608564cb" }, "downloads": -1, "filename": "awkward1-0.3.1.tar.gz", "has_sig": false, "md5_digest": "7a185e48c5fd7d1fdc84086014d10860", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 787969, "upload_time": "2020-09-21T22:27:00", "upload_time_iso_8601": "2020-09-21T22:27:00.409274Z", "url": "https://files.pythonhosted.org/packages/66/c5/d93dde2bc5ab469ce9f36f85100364bb80d79f60e0f77ec7ea39e83ad4f7/awkward1-0.3.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "7cfa7703c44e8f4373f09f4d59de7a3a", "sha256": "036c7c13b6bf73653447741eeeef660179808cf5c57bf46c4a7bcfbb2681a0a0" }, "downloads": -1, "filename": "awkward1-0.4.0-cp27-cp27m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "7cfa7703c44e8f4373f09f4d59de7a3a", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5746853, "upload_time": "2020-10-29T20:27:47", "upload_time_iso_8601": "2020-10-29T20:27:47.245751Z", "url": "https://files.pythonhosted.org/packages/e8/1f/f132c37951907e2386d150075ca39bd7488b5c41dafecbdbdc146398d204/awkward1-0.4.0-cp27-cp27m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "688ef1df22c64ea10419735cd23aa59f", "sha256": "9dc9a94a46da881a73e7f13e7c2bec08820b2a4dae48d2bcc050ff7d4877c448" }, "downloads": -1, "filename": "awkward1-0.4.0-cp27-cp27m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "688ef1df22c64ea10419735cd23aa59f", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5870915, "upload_time": "2020-10-29T20:23:17", "upload_time_iso_8601": "2020-10-29T20:23:17.093610Z", "url": "https://files.pythonhosted.org/packages/65/e6/2fa15b84a901e73439f35a50bb0e14349d1730c3521f7df1d3636e107de7/awkward1-0.4.0-cp27-cp27m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e8155b27ea4e57ef4f525b8f1efcfbcc", "sha256": "5fc01f90727aa7c71781b03e4871390c6a753d472edefd3ea7c9e7e17755efd2" }, "downloads": -1, "filename": "awkward1-0.4.0-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "e8155b27ea4e57ef4f525b8f1efcfbcc", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5783956, "upload_time": "2020-10-29T20:21:14", "upload_time_iso_8601": "2020-10-29T20:21:14.226790Z", "url": "https://files.pythonhosted.org/packages/22/b6/2282cdc313dbe2faede8b682d0ced8b7c7d58bd80d7a4ef0ea8f2e6e996e/awkward1-0.4.0-cp27-cp27m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7c84c0f12493561d3fb8c06def77abd2", "sha256": "6ef58454ad96f67dbfab9629dd4dc0e448a747f60ccb28fac065ae026e129a78" }, "downloads": -1, "filename": "awkward1-0.4.0-cp27-cp27m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "7c84c0f12493561d3fb8c06def77abd2", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6122378, "upload_time": "2020-10-29T20:30:25", "upload_time_iso_8601": "2020-10-29T20:30:25.006572Z", "url": "https://files.pythonhosted.org/packages/ef/1b/bdfc29fee61401e5cc012365c193c0392e16cf5a59509faf082280d0164e/awkward1-0.4.0-cp27-cp27m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5ff262a80776571b59d79e24ccc6f4a2", "sha256": "c516d06e7170d93117983ea39a6d579593939043e790d924dfb39385f4a53eda" }, "downloads": -1, "filename": "awkward1-0.4.0-cp27-cp27mu-manylinux1_i686.whl", "has_sig": false, "md5_digest": "5ff262a80776571b59d79e24ccc6f4a2", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5870818, "upload_time": "2020-10-29T20:23:18", "upload_time_iso_8601": "2020-10-29T20:23:18.551193Z", "url": "https://files.pythonhosted.org/packages/a5/d4/a3deaf9009154b699616b03eed2b5b5bc52a3fea8b013add9cdb622f50b0/awkward1-0.4.0-cp27-cp27mu-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "63e712ad97a641ae9f65e0694d31e583", "sha256": "34b9cf8a4580abc12a32b39f486e07eb0bff88b3e2e77f981d919603a81d439f" }, "downloads": -1, "filename": "awkward1-0.4.0-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "63e712ad97a641ae9f65e0694d31e583", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5783960, "upload_time": "2020-10-29T20:21:15", "upload_time_iso_8601": "2020-10-29T20:21:15.835178Z", "url": "https://files.pythonhosted.org/packages/c1/a0/4267f5d6beb111ecc9f9f15122eb96a0777492b81f8a272b66e587ea363a/awkward1-0.4.0-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9c3791d27b456de6c229ba21be84b9ff", "sha256": "bdca30f93af22f6080142f1084abb1ea1ead5b0098f4d6405b8a836ce2842f7c" }, "downloads": -1, "filename": "awkward1-0.4.0-cp27-cp27mu-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "9c3791d27b456de6c229ba21be84b9ff", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6122342, "upload_time": "2020-10-29T20:30:26", "upload_time_iso_8601": "2020-10-29T20:30:26.687080Z", "url": "https://files.pythonhosted.org/packages/9b/74/fa7c8d4f7521b8faa86d7b9ed2f4bcd93d89fac9ee9d74cdcd3564277eb4/awkward1-0.4.0-cp27-cp27mu-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2b753f53f404bd64ab70963dd1482bb6", "sha256": "589692556e1b4df781c6d47a1b3f6ee3db538f9bf20b4b6006c869ee4643e982" }, "downloads": -1, "filename": "awkward1-0.4.0-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "2b753f53f404bd64ab70963dd1482bb6", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7234163, "upload_time": "2020-10-29T20:07:39", "upload_time_iso_8601": "2020-10-29T20:07:39.481452Z", "url": "https://files.pythonhosted.org/packages/95/55/b3f5d1c5d27807a51697db7b40a97870c8ec77d12194cfe339f5a79754e3/awkward1-0.4.0-cp27-cp27m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1d99f505770565dbd2a4e58eb541549a", "sha256": "d985c16603c8c3bba57dc0fec38389746c91842ebd411e80f90d9714752ad2d1" }, "downloads": -1, "filename": "awkward1-0.4.0-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "1d99f505770565dbd2a4e58eb541549a", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9699152, "upload_time": "2020-10-29T20:09:57", "upload_time_iso_8601": "2020-10-29T20:09:57.232270Z", "url": "https://files.pythonhosted.org/packages/d0/e8/ebcbd4f7c8b9b62ce579bbab7df34b88d54558f377399306e53f652a29c9/awkward1-0.4.0-cp27-cp27m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "994edde911b63eea07ba75398d56e486", "sha256": "56edbc3683a17077b09075cee41f4b392d17f43afc4bb792a30ea7a9623f1abd" }, "downloads": -1, "filename": "awkward1-0.4.0-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "994edde911b63eea07ba75398d56e486", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5867021, "upload_time": "2020-10-29T20:23:20", "upload_time_iso_8601": "2020-10-29T20:23:20.210516Z", "url": "https://files.pythonhosted.org/packages/a1/b3/3a1519219656e90e929eb004eb44277ca9aeb25864c7f40a80229c558f08/awkward1-0.4.0-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6330b0cfb53e709ebc8f4d31d12d61ac", "sha256": "dc400c8cf2846c94e91fb21b7aa7797ca4d89382be5737ac09a885ebb52b4d50" }, "downloads": -1, "filename": "awkward1-0.4.0-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "6330b0cfb53e709ebc8f4d31d12d61ac", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5785140, "upload_time": "2020-10-29T20:21:17", "upload_time_iso_8601": "2020-10-29T20:21:17.648859Z", "url": "https://files.pythonhosted.org/packages/42/3c/428cd479a0f48330b37a2d2f917c5b91f91bb7bf967a6953d1914d2febc5/awkward1-0.4.0-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "89d5f6c15b1e16275464d534c3fd87bd", "sha256": "99474371d0ebdf06e74afa6b4744f11664f370adf1a2e0901189822eef0970c8" }, "downloads": -1, "filename": "awkward1-0.4.0-cp35-cp35m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "89d5f6c15b1e16275464d534c3fd87bd", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6120362, "upload_time": "2020-10-29T20:30:28", "upload_time_iso_8601": "2020-10-29T20:30:28.347067Z", "url": "https://files.pythonhosted.org/packages/d8/8f/9bcb5793d75ed838f4d40ceeeae4c454722d15002633e573795be08db81a/awkward1-0.4.0-cp35-cp35m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b9545af57153dd8a37fd30e1c059f0cf", "sha256": "45b69971c071cbea604bc23a7160c01f729c4b789e8c3ec4ca1847d9edf3041d" }, "downloads": -1, "filename": "awkward1-0.4.0-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "b9545af57153dd8a37fd30e1c059f0cf", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7233666, "upload_time": "2020-10-29T20:21:24", "upload_time_iso_8601": "2020-10-29T20:21:24.510054Z", "url": "https://files.pythonhosted.org/packages/44/8b/930ed2b314590a08aae70e3d851eee1531846dde50eaaf04cf9cb9161f42/awkward1-0.4.0-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "521c95a26254a41d0c4ba8ade5fb95a8", "sha256": "94675d011730232a9a3d0f98fa6edcdbb22393ab745c2e6e04daefa283be81a4" }, "downloads": -1, "filename": "awkward1-0.4.0-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "521c95a26254a41d0c4ba8ade5fb95a8", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9697060, "upload_time": "2020-10-29T20:08:44", "upload_time_iso_8601": "2020-10-29T20:08:44.068513Z", "url": "https://files.pythonhosted.org/packages/3d/72/20f1bc6cf38d76cf91209a6933f4a91c6ce29f9c235c487d8a37a2e9aec2/awkward1-0.4.0-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f12a36132abf4ca17037f04dbc3dc4d1", "sha256": "75c188d5630e74037fbeea4249ff6652aa5f3bf5e9bf1b7bf9a464771d583573" }, "downloads": -1, "filename": "awkward1-0.4.0-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "f12a36132abf4ca17037f04dbc3dc4d1", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5867054, "upload_time": "2020-10-29T20:23:22", "upload_time_iso_8601": "2020-10-29T20:23:22.193706Z", "url": "https://files.pythonhosted.org/packages/b3/f5/b6ef4cd8e95c538ec10173b6db091968f07dd2120c6c6e88237581ec925d/awkward1-0.4.0-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7f679650f42c2b1706c7db9003afed3a", "sha256": "86934b4317fb518892e5abdb9b4a1b8f7b35573f5d991eb8bef5f90c83fe9663" }, "downloads": -1, "filename": "awkward1-0.4.0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "7f679650f42c2b1706c7db9003afed3a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5785149, "upload_time": "2020-10-29T20:21:19", "upload_time_iso_8601": "2020-10-29T20:21:19.299252Z", "url": "https://files.pythonhosted.org/packages/e1/57/494626b81fcee506b0249e6ed37f114256a204034a42b4878f6b9d06e14e/awkward1-0.4.0-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "eaabb1a9e8904b873c225761d1cc0abb", "sha256": "4db807823b5b238103b29e64b4db0d66f2288413618ff8d9e9b8f980d3826852" }, "downloads": -1, "filename": "awkward1-0.4.0-cp36-cp36m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "eaabb1a9e8904b873c225761d1cc0abb", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6120364, "upload_time": "2020-10-29T20:30:31", "upload_time_iso_8601": "2020-10-29T20:30:31.361362Z", "url": "https://files.pythonhosted.org/packages/55/90/592f20f82c06e9af3bc7ed354f5f664bd2e75f8ee01a05816367b49b917b/awkward1-0.4.0-cp36-cp36m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "53c00633ea923befaa3f0af420e21279", "sha256": "dafbc686e87732b5f5023ab2ab3119eea9e7955a5b2a26d24ddbdb9df7c891e1" }, "downloads": -1, "filename": "awkward1-0.4.0-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "53c00633ea923befaa3f0af420e21279", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7233797, "upload_time": "2020-10-29T20:20:40", "upload_time_iso_8601": "2020-10-29T20:20:40.761037Z", "url": "https://files.pythonhosted.org/packages/3f/f1/914b4f6a2bfc26055f49cb074af05ec12eb556cecccd56f3935074c47356/awkward1-0.4.0-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "13637f64b7afe55468950c1b9289eea6", "sha256": "c0101e5e61c73d2fba7f069dcdd1434de49566d757aaa9cda3f090554774e894" }, "downloads": -1, "filename": "awkward1-0.4.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "13637f64b7afe55468950c1b9289eea6", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9697132, "upload_time": "2020-10-29T20:29:32", "upload_time_iso_8601": "2020-10-29T20:29:32.092223Z", "url": "https://files.pythonhosted.org/packages/af/65/3ed687214982cfe11c6dd153eb8d4711bc52807aac15f819b9072ddc501b/awkward1-0.4.0-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "54ecf3608dc01006e71d5b3e716e6013", "sha256": "265307f37f5e89945a79f9e75a1385e4c0444b54c964ec0a5887c74d5ab41c04" }, "downloads": -1, "filename": "awkward1-0.4.0-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "54ecf3608dc01006e71d5b3e716e6013", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5746015, "upload_time": "2020-10-29T20:31:12", "upload_time_iso_8601": "2020-10-29T20:31:12.542920Z", "url": "https://files.pythonhosted.org/packages/c8/ec/d50d0ea25c2fdb9b86a7e07d93b73824a12134de188600e6f5574c4f1f1d/awkward1-0.4.0-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8641b2be391ce4d94b652264d287a700", "sha256": "bf40c54571112bac4003fc5ba17ea30e2cfbfdc7a1accd37104906786d58ec92" }, "downloads": -1, "filename": "awkward1-0.4.0-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "8641b2be391ce4d94b652264d287a700", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5873681, "upload_time": "2020-10-29T20:23:23", "upload_time_iso_8601": "2020-10-29T20:23:23.584069Z", "url": "https://files.pythonhosted.org/packages/43/ee/3be9f9b9f4ab0aaf1c582a7429abce3ac7eb4d45987e41a610826c4c5cac/awkward1-0.4.0-cp37-cp37m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "83136711f7ae231e85b3262063d826ce", "sha256": "c0feaf91264999479a3226f4b2fe7668f30f5df7381582bd5e6b33bf7dd13410" }, "downloads": -1, "filename": "awkward1-0.4.0-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "83136711f7ae231e85b3262063d826ce", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5778777, "upload_time": "2020-10-29T20:21:21", "upload_time_iso_8601": "2020-10-29T20:21:21.206149Z", "url": "https://files.pythonhosted.org/packages/e5/c9/25fe7d7ce35ebd8ada15b6a88342136a904e09448e2c36b5493681c5c08d/awkward1-0.4.0-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fbb2cc989f5ef6ba8fdd3f84428329d8", "sha256": "d47a609d6bfc76b988a7afe8556306fc850af51efcfffdd0eeba1f44a203a58f" }, "downloads": -1, "filename": "awkward1-0.4.0-cp37-cp37m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "fbb2cc989f5ef6ba8fdd3f84428329d8", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6120431, "upload_time": "2020-10-29T20:30:32", "upload_time_iso_8601": "2020-10-29T20:30:32.925941Z", "url": "https://files.pythonhosted.org/packages/e5/67/1edfbda4c2be50ad3ce73dafc478ab2aab86c79e118d8e6035d4859d677e/awkward1-0.4.0-cp37-cp37m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fdaa5fbe77dbfa8f43047b2eaf895e3e", "sha256": "e6e324df621b7ba9278211ec528c7aab59cd5dd7713d1a6ae81183e914e0489d" }, "downloads": -1, "filename": "awkward1-0.4.0-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "fdaa5fbe77dbfa8f43047b2eaf895e3e", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7233833, "upload_time": "2020-10-29T20:19:36", "upload_time_iso_8601": "2020-10-29T20:19:36.190864Z", "url": "https://files.pythonhosted.org/packages/9b/64/1db9a4bbc0f31b55553a1db3962389ba7db99d09254f64fe4378b9ee3539/awkward1-0.4.0-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "34fe6c9c2a0eea28d6a5ce5c128f4517", "sha256": "428bb073ecceda57ffa14db813bd059e3d46e7c974345dd9ca42dd5bab0595fe" }, "downloads": -1, "filename": "awkward1-0.4.0-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "34fe6c9c2a0eea28d6a5ce5c128f4517", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9697212, "upload_time": "2020-10-29T20:31:05", "upload_time_iso_8601": "2020-10-29T20:31:05.221155Z", "url": "https://files.pythonhosted.org/packages/8f/0a/bdbbf1cb968b70a9ffae02a54dc2f96e77245b18d30b0cdbbdfb3402a969/awkward1-0.4.0-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "76722cb62d10dc59612e4a7479951406", "sha256": "434e52d695abac6f9d97158799789c494d47ab1a710103717c89a69eb5149753" }, "downloads": -1, "filename": "awkward1-0.4.0-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "76722cb62d10dc59612e4a7479951406", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5825269, "upload_time": "2020-10-29T20:31:25", "upload_time_iso_8601": "2020-10-29T20:31:25.615062Z", "url": "https://files.pythonhosted.org/packages/4f/a3/3aee7c48495d061fc439831d3a57d6b780ccc4ad883e42ec63cbd1e8ce7e/awkward1-0.4.0-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4a9e751214dbe9aa1899223f0c6c5fa7", "sha256": "0485290cd01c75f26b4cdf8a611e4343e9d152ade3ee371aa75577a6505c1457" }, "downloads": -1, "filename": "awkward1-0.4.0-cp38-cp38-manylinux1_i686.whl", "has_sig": false, "md5_digest": "4a9e751214dbe9aa1899223f0c6c5fa7", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5820440, "upload_time": "2020-10-29T20:23:25", "upload_time_iso_8601": "2020-10-29T20:23:25.113410Z", "url": "https://files.pythonhosted.org/packages/23/5e/13c4e24af2361363b47f6d44edcfe2bc5e6b8bb2b89c8fd293ba6038faae/awkward1-0.4.0-cp38-cp38-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c0048c5a8092e4decc4d9ad6571e0819", "sha256": "0835e7487a64cd2e0c3e5a796daa0957e7edcf43294076246dfc445cefebc324" }, "downloads": -1, "filename": "awkward1-0.4.0-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "c0048c5a8092e4decc4d9ad6571e0819", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5724408, "upload_time": "2020-10-29T20:21:22", "upload_time_iso_8601": "2020-10-29T20:21:22.838782Z", "url": "https://files.pythonhosted.org/packages/4f/c7/ce8d1e90befc5c3ec07795fb19f652f39428ca6f4bd142ce1e707c6c5e70/awkward1-0.4.0-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f620b8e416efd063f4f14f281d371b4b", "sha256": "18876b1e0ab9cc791d7737518b72026de94232c6f3082ebd2b8bf14a1bb3edf0" }, "downloads": -1, "filename": "awkward1-0.4.0-cp38-cp38-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "f620b8e416efd063f4f14f281d371b4b", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6149277, "upload_time": "2020-10-29T20:30:35", "upload_time_iso_8601": "2020-10-29T20:30:35.128077Z", "url": "https://files.pythonhosted.org/packages/19/0c/bb77551a1a29c16b47af42dceabe1496eb7781f7829f95e7792665dd873f/awkward1-0.4.0-cp38-cp38-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c1550da43e1a0e09f40d7f640a8ebffc", "sha256": "9bf551c481cb0eed8be68b2784c96aab53d21dd9ff5b72c812d0a24bae8f98e3" }, "downloads": -1, "filename": "awkward1-0.4.0-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "c1550da43e1a0e09f40d7f640a8ebffc", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7224373, "upload_time": "2020-10-29T20:30:28", "upload_time_iso_8601": "2020-10-29T20:30:28.325123Z", "url": "https://files.pythonhosted.org/packages/02/46/ffa875cacd5b9f6c29c92dcd9636914e00d3e880357b5d75d97502de52f3/awkward1-0.4.0-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5e368dc23a37a44a6f03aaaeb38b1e40", "sha256": "dec5b26e1848340270745a1d7238afb5ed129e45a485ce05c4525daa743f28a7" }, "downloads": -1, "filename": "awkward1-0.4.0-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "5e368dc23a37a44a6f03aaaeb38b1e40", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9670948, "upload_time": "2020-10-29T20:31:24", "upload_time_iso_8601": "2020-10-29T20:31:24.542913Z", "url": "https://files.pythonhosted.org/packages/95/23/471c1631ec4b7657b01a3c13f58fadbf6d17b3b4a19ebc918eb7226dc75f/awkward1-0.4.0-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "567a13abdd1ddee644de1498a6bee284", "sha256": "c9a46304a58d2fe9f6bade916040acf75d4cdd75a6a3987260ca768f05222de8" }, "downloads": -1, "filename": "awkward1-0.4.0-cp39-cp39-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "567a13abdd1ddee644de1498a6bee284", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5825478, "upload_time": "2020-10-29T20:28:41", "upload_time_iso_8601": "2020-10-29T20:28:41.746782Z", "url": "https://files.pythonhosted.org/packages/00/c9/514fe20af2837bf9d1e51789f41f4a0ec4a19c3c7dc309d8b0dc10910ef0/awkward1-0.4.0-cp39-cp39-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "780b78c42c5c734c4fc2f70b4d49a545", "sha256": "8b416d3d9a48a3ee60872492a815d123fb486124cfbc57e13be015b13590a446" }, "downloads": -1, "filename": "awkward1-0.4.0-cp39-cp39-manylinux1_i686.whl", "has_sig": false, "md5_digest": "780b78c42c5c734c4fc2f70b4d49a545", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5819111, "upload_time": "2020-10-29T20:23:26", "upload_time_iso_8601": "2020-10-29T20:23:26.755048Z", "url": "https://files.pythonhosted.org/packages/4c/b6/7a7b92cbd30c8f61e9bd42f9f75d143a5332c9f23475bd99145c53640a7b/awkward1-0.4.0-cp39-cp39-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6a89766ef50a5e5ddf3c826ea576987e", "sha256": "8649e3dcfb70bff9df6f5a48c28b614b8ede0c079f1e9c395530f762585e2279" }, "downloads": -1, "filename": "awkward1-0.4.0-cp39-cp39-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "6a89766ef50a5e5ddf3c826ea576987e", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5730430, "upload_time": "2020-10-29T20:21:24", "upload_time_iso_8601": "2020-10-29T20:21:24.903331Z", "url": "https://files.pythonhosted.org/packages/5b/2f/364804d36b1feb97adc22ba89c654bc42397b739e2d01a42de0c94f41ee7/awkward1-0.4.0-cp39-cp39-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ad9fdc49cac2e88504f9724ffa51049c", "sha256": "e4c41256d675cfce64164f30f93a77e049a5068df51c6c4393261faa0cea76bf" }, "downloads": -1, "filename": "awkward1-0.4.0-cp39-cp39-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "ad9fdc49cac2e88504f9724ffa51049c", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6148160, "upload_time": "2020-10-29T20:30:37", "upload_time_iso_8601": "2020-10-29T20:30:37.152622Z", "url": "https://files.pythonhosted.org/packages/48/2c/397ed1767e3068841bdc71d2b1f8d030b11e395ef929dbae74ee58a0d5ea/awkward1-0.4.0-cp39-cp39-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2d49503502ab8d482c0a13d6035e42db", "sha256": "23aa30ccb156e2908b952ab0107783618f16d38aa2308085e3c9eb34d6b542af" }, "downloads": -1, "filename": "awkward1-0.4.0-cp39-cp39-win32.whl", "has_sig": false, "md5_digest": "2d49503502ab8d482c0a13d6035e42db", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7224741, "upload_time": "2020-10-29T20:32:58", "upload_time_iso_8601": "2020-10-29T20:32:58.946473Z", "url": "https://files.pythonhosted.org/packages/1b/e7/7fa0be27538fbc891b518577b27831129bda8d8cc6647b2b286919688c45/awkward1-0.4.0-cp39-cp39-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2ec86981d137a4141e6f680ac5e4054b", "sha256": "b2ba044d9f6b878d592ee605e5c959b8781046f660d25dafd75af707d5305c8a" }, "downloads": -1, "filename": "awkward1-0.4.0-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "2ec86981d137a4141e6f680ac5e4054b", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9671277, "upload_time": "2020-10-29T20:41:57", "upload_time_iso_8601": "2020-10-29T20:41:57.661215Z", "url": "https://files.pythonhosted.org/packages/b1/dd/fe9b6357a641bbc09419ad0afff4e159fa4a66e6b70b8fad1bc9e948feb9/awkward1-0.4.0-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "701a74b3bc2b05606fc7976228104429", "sha256": "ef81ccf7ccc82bb6cfd116c4a38470490f8275443d50d89af9c63eb3ebf76092" }, "downloads": -1, "filename": "awkward1-0.4.0.tar.gz", "has_sig": false, "md5_digest": "701a74b3bc2b05606fc7976228104429", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 771713, "upload_time": "2020-10-29T20:30:38", "upload_time_iso_8601": "2020-10-29T20:30:38.747672Z", "url": "https://files.pythonhosted.org/packages/6b/e8/6247bbe1c84b154135bb8331ff4d1fa854e64cd3490a4dcf0b71879d3b3e/awkward1-0.4.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "4c6ab91f5fdac59746b6c8bfa37239bd", "sha256": "d3e85a0d44d73a5710517ed37ff3d3d039d1c162bad5371f0562e33e307f26e6" }, "downloads": -1, "filename": "awkward1-0.4.1-cp27-cp27m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "4c6ab91f5fdac59746b6c8bfa37239bd", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5748114, "upload_time": "2020-11-03T21:50:46", "upload_time_iso_8601": "2020-11-03T21:50:46.019997Z", "url": "https://files.pythonhosted.org/packages/4c/ca/5bf11fbee91a35be0331b945b09d5b783b5bfc05d258fd091f0ebf72e1d4/awkward1-0.4.1-cp27-cp27m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3ef876fe058120a4ca3a98325c1d9a04", "sha256": "7866560ad8a07ec96a27048a28f24f9b3775e949d27ac45b1dda0dea0b82ea69" }, "downloads": -1, "filename": "awkward1-0.4.1-cp27-cp27m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "3ef876fe058120a4ca3a98325c1d9a04", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5867539, "upload_time": "2020-11-03T22:11:02", "upload_time_iso_8601": "2020-11-03T22:11:02.602339Z", "url": "https://files.pythonhosted.org/packages/23/7f/8f846a3d1811562bb23ce3737ed3fe2fb1b3615c6c03b8c454adca571acd/awkward1-0.4.1-cp27-cp27m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8eea03bac1545e93e713eb9e68c69192", "sha256": "d17fcc5bb5d9b125ba05851e02e1c8e3f84de95ad06083043ae5fea0f5bf80c3" }, "downloads": -1, "filename": "awkward1-0.4.1-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "8eea03bac1545e93e713eb9e68c69192", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5782548, "upload_time": "2020-11-03T22:09:50", "upload_time_iso_8601": "2020-11-03T22:09:50.943829Z", "url": "https://files.pythonhosted.org/packages/27/44/c9fff8626aa64dea18cdb81aea3f2bb776d0d1a35c37cfcdedad173e4db9/awkward1-0.4.1-cp27-cp27m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4487459e1c74bd906e6c2b29fe1084ee", "sha256": "08812908e2ab1bad7b9e95b661d4e4624c27e37ea84a02affd3222e665524555" }, "downloads": -1, "filename": "awkward1-0.4.1-cp27-cp27m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "4487459e1c74bd906e6c2b29fe1084ee", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6123618, "upload_time": "2020-11-03T22:14:25", "upload_time_iso_8601": "2020-11-03T22:14:25.274849Z", "url": "https://files.pythonhosted.org/packages/71/fb/536c5ea338e1622c9e476e8e2126422e23b82b2ab0446139873b70643622/awkward1-0.4.1-cp27-cp27m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a40c4d79086630f8fd83a61348e5df90", "sha256": "7f47c273c589b26371319464c2a54686a73065695acf56801526d4d1dfb11558" }, "downloads": -1, "filename": "awkward1-0.4.1-cp27-cp27mu-manylinux1_i686.whl", "has_sig": false, "md5_digest": "a40c4d79086630f8fd83a61348e5df90", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5867462, "upload_time": "2020-11-03T22:11:04", "upload_time_iso_8601": "2020-11-03T22:11:04.175700Z", "url": "https://files.pythonhosted.org/packages/88/9a/486892f49b3a962642fcffaa52430776075178e907d0d08c4af0a4339b11/awkward1-0.4.1-cp27-cp27mu-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "707b7742680e5fc1946b4a317c4b45d2", "sha256": "f98bb1b902ab695f733402e6e5c37494c0767235746ebae2ba99f31c42b8fa79" }, "downloads": -1, "filename": "awkward1-0.4.1-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "707b7742680e5fc1946b4a317c4b45d2", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5782580, "upload_time": "2020-11-03T22:09:53", "upload_time_iso_8601": "2020-11-03T22:09:53.077988Z", "url": "https://files.pythonhosted.org/packages/97/6c/1eac2d8692d998a1a90a94edf5b1b458b3a32e53a571304a74456bac3be4/awkward1-0.4.1-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "22215f3b5af01df063307e7003708ddf", "sha256": "7ca72319c4a727fd06751b155b89aeff6530e46b5e7c929c37ea14bcaa22a383" }, "downloads": -1, "filename": "awkward1-0.4.1-cp27-cp27mu-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "22215f3b5af01df063307e7003708ddf", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6123584, "upload_time": "2020-11-03T22:14:27", "upload_time_iso_8601": "2020-11-03T22:14:27.069287Z", "url": "https://files.pythonhosted.org/packages/b1/d6/5a15b86d4e52ede93fddcf8cf4922529ef7d1f0bcb14ab9adfd36c918993/awkward1-0.4.1-cp27-cp27mu-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "429ec88590becf764ae107f39e5eb5e6", "sha256": "1d223f980af429b5d453474646e6aa6ff521cb040f71b620d1f72609f511e4d4" }, "downloads": -1, "filename": "awkward1-0.4.1-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "429ec88590becf764ae107f39e5eb5e6", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7234430, "upload_time": "2020-11-03T21:59:16", "upload_time_iso_8601": "2020-11-03T21:59:16.265556Z", "url": "https://files.pythonhosted.org/packages/94/2a/981c8131cb334758e5d9d9cfe8c728540c4e00abed1e581602b6bab6aefe/awkward1-0.4.1-cp27-cp27m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "996ef032c49c1c5908e2c728564fcbce", "sha256": "44b76abdfec6c2bbe57c6d0e211e7ae6a9cfa07a7300f8698c5ab2ac0e6c1106" }, "downloads": -1, "filename": "awkward1-0.4.1-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "996ef032c49c1c5908e2c728564fcbce", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9700589, "upload_time": "2020-11-03T21:57:40", "upload_time_iso_8601": "2020-11-03T21:57:40.230018Z", "url": "https://files.pythonhosted.org/packages/b8/f6/8cc108000bddfdcdabb60a717e6615da2a63447a6511ed7f84288df4f271/awkward1-0.4.1-cp27-cp27m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a11cb0eb796c6ddf14ad8eb17862295d", "sha256": "9e5fcc42bb00809e20707dfc9d14fa67c799b6971ffab26323851414ab4f804a" }, "downloads": -1, "filename": "awkward1-0.4.1-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "a11cb0eb796c6ddf14ad8eb17862295d", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5863922, "upload_time": "2020-11-03T22:11:06", "upload_time_iso_8601": "2020-11-03T22:11:06.255113Z", "url": "https://files.pythonhosted.org/packages/cc/e3/c7e262d44314da997287b55d878205c7fdf5dc8ff0822042ec40278aa4d4/awkward1-0.4.1-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0132779213d645eff21883bfb351571f", "sha256": "077ec40bade2fb257bd10b7ccc6c3f19ff3dd0455e57a0f8ac7edf9b5d8c57bb" }, "downloads": -1, "filename": "awkward1-0.4.1-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "0132779213d645eff21883bfb351571f", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5783820, "upload_time": "2020-11-03T22:09:54", "upload_time_iso_8601": "2020-11-03T22:09:54.952521Z", "url": "https://files.pythonhosted.org/packages/4d/f6/a0d1110fa34496dfbd16f720a3dd53e44c87a84686adbb7846b19e142f1d/awkward1-0.4.1-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b0754d7d947fbc33e19478d3f30c8f2b", "sha256": "9ba6ebb38f9d6a62039ff8a7d4419e58c793460d2db2f1a3fed98c4d8a075506" }, "downloads": -1, "filename": "awkward1-0.4.1-cp35-cp35m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "b0754d7d947fbc33e19478d3f30c8f2b", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6121749, "upload_time": "2020-11-03T22:14:28", "upload_time_iso_8601": "2020-11-03T22:14:28.878784Z", "url": "https://files.pythonhosted.org/packages/98/0f/937cf76435ece021160d4fe943f25c9ece07b4e35cad389530ff0c8614de/awkward1-0.4.1-cp35-cp35m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4f93708bbe46810454312aff08cd68ba", "sha256": "13a3105103c0d942f4604ac3d2ad6a06fc345a80edc66d8ff5bb922b4bdc047d" }, "downloads": -1, "filename": "awkward1-0.4.1-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "4f93708bbe46810454312aff08cd68ba", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7233980, "upload_time": "2020-11-03T21:54:12", "upload_time_iso_8601": "2020-11-03T21:54:12.311149Z", "url": "https://files.pythonhosted.org/packages/01/a6/ab07f354d4924dc983f56d66d37babb2e0c7b848f0c62cff5add18d6d9d9/awkward1-0.4.1-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b3d6be5438136cca7afd9fa91a1646c0", "sha256": "0e4aca535c4cf0f86adddbf92543878e0c1a29961cbcc452547ff9ff86b21960" }, "downloads": -1, "filename": "awkward1-0.4.1-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "b3d6be5438136cca7afd9fa91a1646c0", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9698456, "upload_time": "2020-11-03T22:05:33", "upload_time_iso_8601": "2020-11-03T22:05:33.740347Z", "url": "https://files.pythonhosted.org/packages/27/81/6eba95bbb7eb2c30be7a9113ebb4a5f084403639738bf13b96cb8cd511d0/awkward1-0.4.1-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "52e10d6b7925cb686565520817d8b18a", "sha256": "53272aaf930e9d25096aa2ce6b103262ef9967334dd9fd0f0a5a6913885aa6d7" }, "downloads": -1, "filename": "awkward1-0.4.1-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "52e10d6b7925cb686565520817d8b18a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5863926, "upload_time": "2020-11-03T22:11:08", "upload_time_iso_8601": "2020-11-03T22:11:08.146793Z", "url": "https://files.pythonhosted.org/packages/27/60/6aa1bc1a6a98be57c1e4a48c7c9b2d26117583dc5e54519964bc1242798e/awkward1-0.4.1-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "47728c51f6d0365f80451fb7fe71ee79", "sha256": "1661d241db55ff7fd74ef7b1bfbcf9adc273366cc85ee960bf621bd6af20ffd9" }, "downloads": -1, "filename": "awkward1-0.4.1-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "47728c51f6d0365f80451fb7fe71ee79", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5783832, "upload_time": "2020-11-03T22:09:56", "upload_time_iso_8601": "2020-11-03T22:09:56.736024Z", "url": "https://files.pythonhosted.org/packages/84/19/e4e110104a1754a9e55ba488bf84eff04024865bec71e4d441f4826b474b/awkward1-0.4.1-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9fe1fad554b59889444dad80482a6189", "sha256": "79268976902545d03cd1e23c13f9e92c95199162bb83722b02b0f05defb69238" }, "downloads": -1, "filename": "awkward1-0.4.1-cp36-cp36m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "9fe1fad554b59889444dad80482a6189", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6121755, "upload_time": "2020-11-03T22:14:30", "upload_time_iso_8601": "2020-11-03T22:14:30.632562Z", "url": "https://files.pythonhosted.org/packages/40/56/e53ca9b7e7b2f041bcadbd36c8f8cbae88817848990c6259349460ee68bb/awkward1-0.4.1-cp36-cp36m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d47190a0b24d2373c049e927ffa5863c", "sha256": "ec8f8eb90d2df9855d36b229d7aa729944c3658d24023299acde8c598716417e" }, "downloads": -1, "filename": "awkward1-0.4.1-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "d47190a0b24d2373c049e927ffa5863c", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7234178, "upload_time": "2020-11-03T22:00:23", "upload_time_iso_8601": "2020-11-03T22:00:23.018610Z", "url": "https://files.pythonhosted.org/packages/56/81/87c98b2d217b31122c114080ed516a91e5f2113f110ad936e19cff16fb86/awkward1-0.4.1-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5ed77dbc91aac3785e599a0f6e6c158d", "sha256": "a2653c7f7b083625522fb9bc6a5262efae6c7b944c7688d8b9be2870139e8c32" }, "downloads": -1, "filename": "awkward1-0.4.1-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "5ed77dbc91aac3785e599a0f6e6c158d", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9698420, "upload_time": "2020-11-03T22:08:37", "upload_time_iso_8601": "2020-11-03T22:08:37.191831Z", "url": "https://files.pythonhosted.org/packages/0d/c4/e3eb1b1d05a6e089a365d8d62691052c873c162e2e414c00683f581194d4/awkward1-0.4.1-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "82ae1d0ec6662d5563c6a0ec35cd3a13", "sha256": "882a68ed1387ef678bf48a6394e2499f45b0d74cf568f495193849fb69f45e19" }, "downloads": -1, "filename": "awkward1-0.4.1-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "82ae1d0ec6662d5563c6a0ec35cd3a13", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5747713, "upload_time": "2020-11-03T21:53:32", "upload_time_iso_8601": "2020-11-03T21:53:32.208358Z", "url": "https://files.pythonhosted.org/packages/b6/7c/a4356fc3e29bb9b9bf64533e5e8454c119a006653d404353bfcfa0da5b1e/awkward1-0.4.1-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "593a4a0026fdb1d2fb86841922abd074", "sha256": "0137c56817dd0af77994546d01cdce16f2a7fd1b4daa103cf182198e9fccd245" }, "downloads": -1, "filename": "awkward1-0.4.1-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "593a4a0026fdb1d2fb86841922abd074", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5870516, "upload_time": "2020-11-03T22:11:09", "upload_time_iso_8601": "2020-11-03T22:11:09.905968Z", "url": "https://files.pythonhosted.org/packages/09/b4/8e5e96b014a178483fc45c1fbc4b2a9d046bfb25f450f1f1e7d9379ca590/awkward1-0.4.1-cp37-cp37m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "347bcb3510030e7e53fe4b87729c9fbc", "sha256": "9c5948e9e0031cc95d2587aa14d96ea491e155c83bb7321b633afb709ecf816e" }, "downloads": -1, "filename": "awkward1-0.4.1-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "347bcb3510030e7e53fe4b87729c9fbc", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5777303, "upload_time": "2020-11-03T22:09:58", "upload_time_iso_8601": "2020-11-03T22:09:58.465411Z", "url": "https://files.pythonhosted.org/packages/eb/ca/9a24ee434d5d1c0709b29d14f97da9f75e6109b1b518c59421b3f08af981/awkward1-0.4.1-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "25003836f531f883a514157e4957ff7b", "sha256": "87cf794c3198465200ac30f7447899f0093384123e018cf0639db564ae558814" }, "downloads": -1, "filename": "awkward1-0.4.1-cp37-cp37m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "25003836f531f883a514157e4957ff7b", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6121715, "upload_time": "2020-11-03T22:14:32", "upload_time_iso_8601": "2020-11-03T22:14:32.696055Z", "url": "https://files.pythonhosted.org/packages/1d/c7/9543c17c8c472cbe671857953135d68996392c8023c27b941e65532464a1/awkward1-0.4.1-cp37-cp37m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c296556c69cfb1da5b95c3a217a71fe5", "sha256": "b04480b10c50339244c595865ec727475a416f59e48d3db4b90d487e7e53c7d7" }, "downloads": -1, "filename": "awkward1-0.4.1-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "c296556c69cfb1da5b95c3a217a71fe5", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7234281, "upload_time": "2020-11-03T22:08:15", "upload_time_iso_8601": "2020-11-03T22:08:15.011401Z", "url": "https://files.pythonhosted.org/packages/d5/59/8dfd75eb9e96fbab51597c389b0267f43071aa4eca24b86c8773dff2524c/awkward1-0.4.1-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "67df944a38be3d2da22b273240fa57c9", "sha256": "69aa4b2b53234303452222d6ad9bebbaf179bbfa609d306705f741ebc4c0b878" }, "downloads": -1, "filename": "awkward1-0.4.1-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "67df944a38be3d2da22b273240fa57c9", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9698505, "upload_time": "2020-11-03T22:06:35", "upload_time_iso_8601": "2020-11-03T22:06:35.278451Z", "url": "https://files.pythonhosted.org/packages/96/ff/32bde53bca2ed348abeb8206c46a201d6b283d7517c4342fdfc23718a4e7/awkward1-0.4.1-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "81d0409f19c1b359dc21225e905cf7c7", "sha256": "e51559c41f88ca302e422e8f1a881d108a123a160516d86b878e374a8e194f36" }, "downloads": -1, "filename": "awkward1-0.4.1-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "81d0409f19c1b359dc21225e905cf7c7", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5826894, "upload_time": "2020-11-03T21:53:23", "upload_time_iso_8601": "2020-11-03T21:53:23.362761Z", "url": "https://files.pythonhosted.org/packages/0a/30/a93983e85d4fa444ec4aa5cd750a6f94ad83d81dafc9137115fb0fde719e/awkward1-0.4.1-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6747621029c2ee591b003a7d20821634", "sha256": "5178bd150885f0b129aa13fe88ba05aabfad6ce4da2103ae9d6039cf87ab7ccd" }, "downloads": -1, "filename": "awkward1-0.4.1-cp38-cp38-manylinux1_i686.whl", "has_sig": false, "md5_digest": "6747621029c2ee591b003a7d20821634", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5817318, "upload_time": "2020-11-03T22:11:11", "upload_time_iso_8601": "2020-11-03T22:11:11.762288Z", "url": "https://files.pythonhosted.org/packages/68/5c/8825f8ef2ccacf33faea5024671ceaa4af0638f57581bf4cf62d644dee87/awkward1-0.4.1-cp38-cp38-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e594e8737ba5c8dde2ae442676530f77", "sha256": "727f2c1355ba48d32030876ae1e59d620258dd2703edc1b71c9559d946eaf34e" }, "downloads": -1, "filename": "awkward1-0.4.1-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "e594e8737ba5c8dde2ae442676530f77", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5723003, "upload_time": "2020-11-03T22:10:00", "upload_time_iso_8601": "2020-11-03T22:10:00.594779Z", "url": "https://files.pythonhosted.org/packages/da/23/a6a5aaaaf57ac6f83b8f354a1e11e929d5d38c8d02cbaf44c2b28e712f39/awkward1-0.4.1-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3ac978bdc5461109a0139e2e229f3a10", "sha256": "78af893a8514244511d3b729833c8cf9641c1a3318ff0cd65319173dd739487c" }, "downloads": -1, "filename": "awkward1-0.4.1-cp38-cp38-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "3ac978bdc5461109a0139e2e229f3a10", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6150823, "upload_time": "2020-11-03T22:14:34", "upload_time_iso_8601": "2020-11-03T22:14:34.834973Z", "url": "https://files.pythonhosted.org/packages/7d/25/fd388e6de9608d0ec72332d4ed13a7fd5e17bc554f052f8fba9442e12eee/awkward1-0.4.1-cp38-cp38-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "aeac7f62247adfe16f46c331542c2bfe", "sha256": "2a110ccd3e99731a8b78e39e8ab53a0eb69ac2d9a392f90a7a19153f1f030232" }, "downloads": -1, "filename": "awkward1-0.4.1-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "aeac7f62247adfe16f46c331542c2bfe", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7225282, "upload_time": "2020-11-03T22:11:29", "upload_time_iso_8601": "2020-11-03T22:11:29.188697Z", "url": "https://files.pythonhosted.org/packages/8e/71/bfe5c87a29291046becc022476394833e61a03b831901336c29909c7830a/awkward1-0.4.1-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "24ebeac4150f0b6b3265f9dff18d68f6", "sha256": "4fb8265fe623200a6fd72696ee424770ad5be8e1c7e8e49d65112c4d4d95665d" }, "downloads": -1, "filename": "awkward1-0.4.1-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "24ebeac4150f0b6b3265f9dff18d68f6", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9672166, "upload_time": "2020-11-03T22:09:25", "upload_time_iso_8601": "2020-11-03T22:09:25.387509Z", "url": "https://files.pythonhosted.org/packages/0b/50/f75876d372624024d8234cfe74a72644b0fab170d61db50a14a23429cb42/awkward1-0.4.1-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "af8c36bba7e59521b41d969c70a20c4f", "sha256": "2a2b94677fef183b6cbc9677f22e4025bc6854de5b15660b85902a4c54cb0d4a" }, "downloads": -1, "filename": "awkward1-0.4.1-cp39-cp39-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "af8c36bba7e59521b41d969c70a20c4f", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5827005, "upload_time": "2020-11-03T21:49:33", "upload_time_iso_8601": "2020-11-03T21:49:33.304009Z", "url": "https://files.pythonhosted.org/packages/bb/95/7086b5eb9468601d7efb089ed8c8c1e314ffebcecd2e617f272f5c33640c/awkward1-0.4.1-cp39-cp39-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "427f95c3799bcf3b7001946afdd45bc1", "sha256": "93a5e45c97f27d65e13c58102dff992fa29021e002ade2a5c583b6205e67dee7" }, "downloads": -1, "filename": "awkward1-0.4.1-cp39-cp39-manylinux1_i686.whl", "has_sig": false, "md5_digest": "427f95c3799bcf3b7001946afdd45bc1", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5816239, "upload_time": "2020-11-03T22:11:13", "upload_time_iso_8601": "2020-11-03T22:11:13.744649Z", "url": "https://files.pythonhosted.org/packages/98/75/8e2f59ac426834ba7b8d0b325b542cf95ad7608390616ce338201e9cb2f2/awkward1-0.4.1-cp39-cp39-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ff671f6e8e3a4c5aafabeb0c1e24d6dc", "sha256": "41ece068bae850f3c5883dbdda79e369f3f82c17f9ebe9a5bf6452796b9c596d" }, "downloads": -1, "filename": "awkward1-0.4.1-cp39-cp39-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "ff671f6e8e3a4c5aafabeb0c1e24d6dc", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5729335, "upload_time": "2020-11-03T22:10:02", "upload_time_iso_8601": "2020-11-03T22:10:02.382790Z", "url": "https://files.pythonhosted.org/packages/3e/fc/3eb2b9678245c4d9e367652877956f6e067df34c42cc2209882b3eb89e2b/awkward1-0.4.1-cp39-cp39-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6590391442487e62a4a141872cfb41db", "sha256": "4b75eda59bec11a7d990c5ca29165fc99af3fbd5c4d65b00bed254eb1c9a0500" }, "downloads": -1, "filename": "awkward1-0.4.1-cp39-cp39-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "6590391442487e62a4a141872cfb41db", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6149564, "upload_time": "2020-11-03T22:14:36", "upload_time_iso_8601": "2020-11-03T22:14:36.952547Z", "url": "https://files.pythonhosted.org/packages/69/5c/356a29410d86d21bd87832d7b89d834323b01c4e1e482c300b551bc775ec/awkward1-0.4.1-cp39-cp39-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "df7b60cb18d2a31f255029f6608c05f5", "sha256": "28c7e3ccbac967c1e317d9a1ded0c01c3ca95db3b32fb8072cafb332229af6f0" }, "downloads": -1, "filename": "awkward1-0.4.1-cp39-cp39-win32.whl", "has_sig": false, "md5_digest": "df7b60cb18d2a31f255029f6608c05f5", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7225458, "upload_time": "2020-11-03T22:10:04", "upload_time_iso_8601": "2020-11-03T22:10:04.099007Z", "url": "https://files.pythonhosted.org/packages/af/08/d93129bab3a8680a5b8734e80a053ef52a0f8d74201324019896747307ce/awkward1-0.4.1-cp39-cp39-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d3ef4dcfcaa0b3e85db6d0cd23d29217", "sha256": "673a2b066cfa40585abce639cfc7f77d0379d386a1611919ffc2f79961ad96c4" }, "downloads": -1, "filename": "awkward1-0.4.1-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "d3ef4dcfcaa0b3e85db6d0cd23d29217", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9672431, "upload_time": "2020-11-03T22:16:41", "upload_time_iso_8601": "2020-11-03T22:16:41.816871Z", "url": "https://files.pythonhosted.org/packages/28/65/7cd4c04bed78a8c29ef82d1a17715023ae1d744255611896c8a9ad3801f2/awkward1-0.4.1-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bdc51b9b21e70c3e2d55c1993a6d0eed", "sha256": "02ddc8e04829a57574c04aeed9662560894f4eaccbefee9e54120d38d3e8f371" }, "downloads": -1, "filename": "awkward1-0.4.1.tar.gz", "has_sig": false, "md5_digest": "bdc51b9b21e70c3e2d55c1993a6d0eed", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 773510, "upload_time": "2020-11-03T22:14:38", "upload_time_iso_8601": "2020-11-03T22:14:38.818741Z", "url": "https://files.pythonhosted.org/packages/08/d2/637bf01041ee9cc7398b45c7d3033a5ed5811a701f35be4550bbc5d28954/awkward1-0.4.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.2": [ { "comment_text": "", "digests": { "md5": "6a744004523112cc06195eb126676267", "sha256": "2394c74ad50c5b76aab134a5f659d4c8715ec3e64eaa66cf0b90675f62e2f56f" }, "downloads": -1, "filename": "awkward1-0.4.2-cp27-cp27m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "6a744004523112cc06195eb126676267", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5748991, "upload_time": "2020-11-04T18:35:16", "upload_time_iso_8601": "2020-11-04T18:35:16.505562Z", "url": "https://files.pythonhosted.org/packages/8e/83/8aefc58b00866ffd47da8bce4e9eca0eaf3f3ec1d84b14978ccc09273a2f/awkward1-0.4.2-cp27-cp27m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ef78b0d053708ea92d1a3b39992d82e8", "sha256": "6aa10e6c74cbba324a6527d85d627e42b3d717933bda7f5887f67b6dc252b729" }, "downloads": -1, "filename": "awkward1-0.4.2-cp27-cp27m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "ef78b0d053708ea92d1a3b39992d82e8", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5867412, "upload_time": "2020-11-04T18:54:45", "upload_time_iso_8601": "2020-11-04T18:54:45.657900Z", "url": "https://files.pythonhosted.org/packages/61/e7/5111c58a0685654566edf11a64c608553a65c6e404cef3a5f142fb663708/awkward1-0.4.2-cp27-cp27m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "60c78b81869320e0768391b68057300a", "sha256": "81ac7d530b44a3dba21ef9daa5140e6c49d7f740c9075a5398bd53a1a24db2c4" }, "downloads": -1, "filename": "awkward1-0.4.2-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "60c78b81869320e0768391b68057300a", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5776975, "upload_time": "2020-11-04T18:55:43", "upload_time_iso_8601": "2020-11-04T18:55:43.182970Z", "url": "https://files.pythonhosted.org/packages/6b/32/4cb7a750998439659ee7046652c38ea6bbee4128a71091fc20f2e1ddc110/awkward1-0.4.2-cp27-cp27m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d520e2efd942c9d9f3ced08255caf5d3", "sha256": "966aeb4d3c4aadc4a8b7fdc0dbdd92f50a3b9b8491e750e1984aac959f598b4d" }, "downloads": -1, "filename": "awkward1-0.4.2-cp27-cp27m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "d520e2efd942c9d9f3ced08255caf5d3", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6122605, "upload_time": "2020-11-04T18:57:40", "upload_time_iso_8601": "2020-11-04T18:57:40.690341Z", "url": "https://files.pythonhosted.org/packages/44/53/098f66a642301a247f9f36b1f94a4e95d7521391a244449365f53b93e2b0/awkward1-0.4.2-cp27-cp27m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a3be471e4a6d18115fdbc3f3b2ed505a", "sha256": "28e8692118c261541c5144b2bf007bce6e44316fdccd9581667f08f1d49941b8" }, "downloads": -1, "filename": "awkward1-0.4.2-cp27-cp27mu-manylinux1_i686.whl", "has_sig": false, "md5_digest": "a3be471e4a6d18115fdbc3f3b2ed505a", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5867437, "upload_time": "2020-11-04T18:54:48", "upload_time_iso_8601": "2020-11-04T18:54:48.884862Z", "url": "https://files.pythonhosted.org/packages/75/2e/858ac7fe014cae6e5a56ba820cd78b3373d7ba781bd963d154b4b9afe92b/awkward1-0.4.2-cp27-cp27mu-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "094cd9af77075e87075ac9c4fb8a0d14", "sha256": "b99a3103ea205c12ee143fe62127b803470fbb97986c725998b0f2f4e6b51bd7" }, "downloads": -1, "filename": "awkward1-0.4.2-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "094cd9af77075e87075ac9c4fb8a0d14", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5776947, "upload_time": "2020-11-04T18:55:45", "upload_time_iso_8601": "2020-11-04T18:55:45.371700Z", "url": "https://files.pythonhosted.org/packages/2c/35/4496f0f3fe85d9b2bde1238f23386001dca8f9b766f75e573f9d0d0d1f04/awkward1-0.4.2-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "74bdbda8171b9b37da31acef1402e5c5", "sha256": "8488c502bb5ce57360d923bc5df0369754a9539872ab1820609efd0f580cb58c" }, "downloads": -1, "filename": "awkward1-0.4.2-cp27-cp27mu-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "74bdbda8171b9b37da31acef1402e5c5", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6122596, "upload_time": "2020-11-04T18:57:42", "upload_time_iso_8601": "2020-11-04T18:57:42.216907Z", "url": "https://files.pythonhosted.org/packages/2c/68/529d551ffb6c6ead4a9a11f455daf3cd5f520665c14001943facf7f9ab3a/awkward1-0.4.2-cp27-cp27mu-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ae7dd055fb0d25acf26182bfc9c0dd1f", "sha256": "8ebac93eb782232ae7b580b414c4035117d266f78c9f7eb03db7ed1a02bd89fe" }, "downloads": -1, "filename": "awkward1-0.4.2-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "ae7dd055fb0d25acf26182bfc9c0dd1f", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7236612, "upload_time": "2020-11-04T18:41:13", "upload_time_iso_8601": "2020-11-04T18:41:13.663057Z", "url": "https://files.pythonhosted.org/packages/2e/fd/86fa10902e1b8569748cd0db2357a14d92b1b47e3b02964d5951e3e08506/awkward1-0.4.2-cp27-cp27m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "21e8c2e784ec0a977ec3fecc840784ef", "sha256": "d7f499478ebbdf27e7ea9e7105db54e362be6ff04a888a60f4ac31bbc6a86660" }, "downloads": -1, "filename": "awkward1-0.4.2-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "21e8c2e784ec0a977ec3fecc840784ef", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9700699, "upload_time": "2020-11-04T18:40:12", "upload_time_iso_8601": "2020-11-04T18:40:12.778993Z", "url": "https://files.pythonhosted.org/packages/5c/3a/808f6ccd87a80d38b47232faede6e70c6f4d2743b04d7a8e5b48d9c86c92/awkward1-0.4.2-cp27-cp27m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "69a8b01c1ab7519b24967d49ef1df164", "sha256": "549e13e3def7b460e315b0a1f615846c115a91cf099c6e851321834f14b0778e" }, "downloads": -1, "filename": "awkward1-0.4.2-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "69a8b01c1ab7519b24967d49ef1df164", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5866908, "upload_time": "2020-11-04T18:54:50", "upload_time_iso_8601": "2020-11-04T18:54:50.769462Z", "url": "https://files.pythonhosted.org/packages/0d/5a/e31a91d470c508c8d76087a6b29eb18badd437a2b7b786f8b04b06832416/awkward1-0.4.2-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "46f026c7231c048ab8ab2a0262dcb939", "sha256": "bcc32a535a9c24c292c36bd1527f4e182b75b1531a8e6275a2716ffbae4b7504" }, "downloads": -1, "filename": "awkward1-0.4.2-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "46f026c7231c048ab8ab2a0262dcb939", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5782845, "upload_time": "2020-11-04T18:55:47", "upload_time_iso_8601": "2020-11-04T18:55:47.292944Z", "url": "https://files.pythonhosted.org/packages/6b/2d/8de9bd468ccdf393dbedf30dba5b803521387deccb5c91f2c4f032e1c707/awkward1-0.4.2-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "59dc33128ad19ee4c9071c1208b48029", "sha256": "94c8f91da2cd24e4c99f62a1f6a7ef3843c2eecd4a9d9ece38c012657371feb5" }, "downloads": -1, "filename": "awkward1-0.4.2-cp35-cp35m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "59dc33128ad19ee4c9071c1208b48029", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6121197, "upload_time": "2020-11-04T18:57:43", "upload_time_iso_8601": "2020-11-04T18:57:43.879604Z", "url": "https://files.pythonhosted.org/packages/e6/e8/4d0c08051a042f329c9901fc87859c51cdc254af1d9e4c25b9ac44a1b51c/awkward1-0.4.2-cp35-cp35m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "26e75c1c4f2a533eac8c83d70a2bd52f", "sha256": "1f313bd0766fd718b3804315568021de89b6be1f4cfc4dd59ef6cba65ad38be6" }, "downloads": -1, "filename": "awkward1-0.4.2-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "26e75c1c4f2a533eac8c83d70a2bd52f", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7236529, "upload_time": "2020-11-04T18:41:18", "upload_time_iso_8601": "2020-11-04T18:41:18.422572Z", "url": "https://files.pythonhosted.org/packages/05/68/1e36cce076aca2130fba0dae91972a13db5ce67e05f14e4deaae1cdf52be/awkward1-0.4.2-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a48bf9d82ea04b01e2781fc7a9ca1a19", "sha256": "67d1992559cdefdfcef86c793143040251ec6d7e7f095be8485ccc71159159b2" }, "downloads": -1, "filename": "awkward1-0.4.2-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "a48bf9d82ea04b01e2781fc7a9ca1a19", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9698445, "upload_time": "2020-11-04T18:46:28", "upload_time_iso_8601": "2020-11-04T18:46:28.242797Z", "url": "https://files.pythonhosted.org/packages/af/58/bc37fdf57467ae4440c4bf0e635b2dee2ada80d134d20e35e36a9ba912eb/awkward1-0.4.2-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ed8f21f77531dce1537d68e63abe1279", "sha256": "9615a5561f9161c9ac9c0071b3b290f55568c215b808523f2cec704bed03f9d4" }, "downloads": -1, "filename": "awkward1-0.4.2-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "ed8f21f77531dce1537d68e63abe1279", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5866912, "upload_time": "2020-11-04T18:54:53", "upload_time_iso_8601": "2020-11-04T18:54:53.021638Z", "url": "https://files.pythonhosted.org/packages/16/e1/60e868b86953ec24bc2d5788e2df438590e9dc7c3657bcfc139e73fd3f12/awkward1-0.4.2-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "33965ef8698579a4b74c7946bdffe4f8", "sha256": "f598a0e50cb974ea422358dc1debac999bf89efa60a43edbb33ff7fdcf926bfe" }, "downloads": -1, "filename": "awkward1-0.4.2-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "33965ef8698579a4b74c7946bdffe4f8", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5782860, "upload_time": "2020-11-04T18:55:48", "upload_time_iso_8601": "2020-11-04T18:55:48.862591Z", "url": "https://files.pythonhosted.org/packages/e7/7b/2abc3c93d8f5703b977849b9d516182ad09569ceecb62c264423261b26af/awkward1-0.4.2-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dae43dc4764bc8ed5a3d7d70ed0a2e2f", "sha256": "c7a02c0a9b6b4ebb3fd4d1aae1116ef01e9b7392c989d74f53a0514aa89827d0" }, "downloads": -1, "filename": "awkward1-0.4.2-cp36-cp36m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "dae43dc4764bc8ed5a3d7d70ed0a2e2f", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6121243, "upload_time": "2020-11-04T18:57:45", "upload_time_iso_8601": "2020-11-04T18:57:45.570781Z", "url": "https://files.pythonhosted.org/packages/03/06/b61c631dc88f6d47e277d60f1d895df54f2dbd38153c36b4f6be25c50e09/awkward1-0.4.2-cp36-cp36m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1187ec608dd15f82f1e3f20d9f4ba912", "sha256": "f5224b77a5e55cc491f733219b41d2f60ff567af1a25c9ed6dee8e30319d8b6f" }, "downloads": -1, "filename": "awkward1-0.4.2-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "1187ec608dd15f82f1e3f20d9f4ba912", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7236582, "upload_time": "2020-11-04T18:46:24", "upload_time_iso_8601": "2020-11-04T18:46:24.904589Z", "url": "https://files.pythonhosted.org/packages/4d/f5/2289e7852c6e91fc25a5b5c63296da9bc70c47a163ddc32fe8147413e824/awkward1-0.4.2-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "43f21bb6ff1a18305a9f2c64a1a7198b", "sha256": "496667b37d355d46de835f280de9834271c602ccb5996fb785d4d33b19068468" }, "downloads": -1, "filename": "awkward1-0.4.2-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "43f21bb6ff1a18305a9f2c64a1a7198b", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9698415, "upload_time": "2020-11-04T18:49:07", "upload_time_iso_8601": "2020-11-04T18:49:07.157213Z", "url": "https://files.pythonhosted.org/packages/d3/b8/6c94ac20d13c53556416e178afdef574e81cc376d6cd1bb67635bab1006a/awkward1-0.4.2-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d09e9f32f2a1c76552f353e5d513155c", "sha256": "2fde53290863831ac57adc42894a7e88a8232cf0fbc108e2d03186e3f1179519" }, "downloads": -1, "filename": "awkward1-0.4.2-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "d09e9f32f2a1c76552f353e5d513155c", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5748672, "upload_time": "2020-11-04T18:39:09", "upload_time_iso_8601": "2020-11-04T18:39:09.679026Z", "url": "https://files.pythonhosted.org/packages/a5/a3/e715ab6b0eface396c913a5db826f66dbc8d834f2b7086252dc5fa3d8001/awkward1-0.4.2-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "16faa387c82f2b3fdef2ea3ad17ab3ac", "sha256": "95e8a9b9dfa6525dd8cff9e0050b6eecbd03f587ba1e1f04158da79cc71ec8fb" }, "downloads": -1, "filename": "awkward1-0.4.2-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "16faa387c82f2b3fdef2ea3ad17ab3ac", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5874380, "upload_time": "2020-11-04T18:54:54", "upload_time_iso_8601": "2020-11-04T18:54:54.577177Z", "url": "https://files.pythonhosted.org/packages/49/ba/36f4c8aba9d99503798d9b0284c0ba4c771f8eb6803990d1ad01b1ff34fc/awkward1-0.4.2-cp37-cp37m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "300572c91134454b695831b18d963417", "sha256": "b3f241999b3ef3bf31dde99e48ba9a3c9773186c4526fd077cdcb8bdaf0f7563" }, "downloads": -1, "filename": "awkward1-0.4.2-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "300572c91134454b695831b18d963417", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5778847, "upload_time": "2020-11-04T18:55:50", "upload_time_iso_8601": "2020-11-04T18:55:50.704299Z", "url": "https://files.pythonhosted.org/packages/61/d3/5b7cff7e4d5b7462d01323aeffec5df133ddb6d6251cb7c3c52e80772e65/awkward1-0.4.2-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ed1d909cb5f6c345c893c802a857bf10", "sha256": "88f8d28a3c2ec43589066094101b102063e5711cefd8e394b8752160c10ecaa2" }, "downloads": -1, "filename": "awkward1-0.4.2-cp37-cp37m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "ed1d909cb5f6c345c893c802a857bf10", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6121232, "upload_time": "2020-11-04T18:57:47", "upload_time_iso_8601": "2020-11-04T18:57:47.177003Z", "url": "https://files.pythonhosted.org/packages/60/ad/3b2ff6ed4ea1f708ff959ee6aab5b0a748a5487bd8571eac471e7285bb55/awkward1-0.4.2-cp37-cp37m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "669295faf0de3b4e66f5a880d38f82ef", "sha256": "615db800bacc3dc54bfb54f52d964685386605fe043b6a84294f534908600f76" }, "downloads": -1, "filename": "awkward1-0.4.2-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "669295faf0de3b4e66f5a880d38f82ef", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7236678, "upload_time": "2020-11-04T18:44:12", "upload_time_iso_8601": "2020-11-04T18:44:12.684233Z", "url": "https://files.pythonhosted.org/packages/41/68/88ea294c608e88bf7f2c5a06051e6476fb354addd578916ba5c590c006de/awkward1-0.4.2-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "227297abdeb00673b0e3688f8cc3a8e6", "sha256": "a2e9d1b2a74349c7124345622d0fd9260e2fd537f7cb9083340c6db5522d628a" }, "downloads": -1, "filename": "awkward1-0.4.2-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "227297abdeb00673b0e3688f8cc3a8e6", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9698546, "upload_time": "2020-11-04T18:54:44", "upload_time_iso_8601": "2020-11-04T18:54:44.536362Z", "url": "https://files.pythonhosted.org/packages/c7/a4/a196d977b68c6a20eb384dbf9ab8346e2ccbf6b3e316a1fccb2ba69987fe/awkward1-0.4.2-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e789a9e0fe9ebcdbbad7cdfc47676027", "sha256": "c86204272f592d3e3d6d88dfaf8e943aad28eec4dbd2a623caf6828543b999a0" }, "downloads": -1, "filename": "awkward1-0.4.2-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "e789a9e0fe9ebcdbbad7cdfc47676027", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5827425, "upload_time": "2020-11-04T18:34:10", "upload_time_iso_8601": "2020-11-04T18:34:10.450783Z", "url": "https://files.pythonhosted.org/packages/db/2b/79e1bbf509b3a168c3d323bf167d88bc3150fd915a35423e92f2128a8b97/awkward1-0.4.2-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a5d62f4f658c17e5be70f6ef6c030571", "sha256": "bbe94f396eeed2c024cc10d1c1856ac6cba3872d61fc1981f528e94ac45092be" }, "downloads": -1, "filename": "awkward1-0.4.2-cp38-cp38-manylinux1_i686.whl", "has_sig": false, "md5_digest": "a5d62f4f658c17e5be70f6ef6c030571", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5817548, "upload_time": "2020-11-04T18:54:56", "upload_time_iso_8601": "2020-11-04T18:54:56.337920Z", "url": "https://files.pythonhosted.org/packages/6d/5b/1c05599989d49fb9760d4109edb0a0f1ae80d9fa4810a9ba785c372e3e58/awkward1-0.4.2-cp38-cp38-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d8bb894ba5b74c4682b9d89363f6c275", "sha256": "5c74ab340ffcc00f640089c632ce91a4039c4b9478713fb368f37669a8c0f524" }, "downloads": -1, "filename": "awkward1-0.4.2-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "d8bb894ba5b74c4682b9d89363f6c275", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5728309, "upload_time": "2020-11-04T18:55:52", "upload_time_iso_8601": "2020-11-04T18:55:52.488563Z", "url": "https://files.pythonhosted.org/packages/ef/2c/a7c999e27bb6f8fe8e88d21fd8fd2deac190970efc0d84393943d156def0/awkward1-0.4.2-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "376b6c449bade4752be263e77787d982", "sha256": "f3b91a23e6777a7617e5c60fff9da899d34141b3f26ec184093075c43ebf2669" }, "downloads": -1, "filename": "awkward1-0.4.2-cp38-cp38-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "376b6c449bade4752be263e77787d982", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6148358, "upload_time": "2020-11-04T18:57:48", "upload_time_iso_8601": "2020-11-04T18:57:48.872383Z", "url": "https://files.pythonhosted.org/packages/30/66/870f58ba326ff98676e96fb2eecc77c5a238479993649eeac9258b9efe55/awkward1-0.4.2-cp38-cp38-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e72a7e3424d21217fd3a7019703a9e89", "sha256": "9f2cd3687f5ecd0eb105c7ff3bee3601c3d3e03907803763e678bc6a15a1dfa7" }, "downloads": -1, "filename": "awkward1-0.4.2-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "e72a7e3424d21217fd3a7019703a9e89", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7226538, "upload_time": "2020-11-04T18:54:50", "upload_time_iso_8601": "2020-11-04T18:54:50.271123Z", "url": "https://files.pythonhosted.org/packages/5b/99/8867f8207b752c4528ff7fd40188103c8864131bbaaf122f5ba195a81421/awkward1-0.4.2-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "081cbe44da7fec52857ba6bf93c3adc6", "sha256": "a27e5b3ea97de2523c85b3cd6f8bb52f8bb8d9125597f77d7408ce04a243c6f9" }, "downloads": -1, "filename": "awkward1-0.4.2-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "081cbe44da7fec52857ba6bf93c3adc6", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9672485, "upload_time": "2020-11-04T18:54:43", "upload_time_iso_8601": "2020-11-04T18:54:43.850611Z", "url": "https://files.pythonhosted.org/packages/18/ac/5d835973a6c265a5bd03583bbf062626ff81132f3a8fdfb14abfcb332ad7/awkward1-0.4.2-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4b1c16797c2bb517ee15ac2387874bf0", "sha256": "fa86447613a55ccdb45e3e0db47a4548cd6d925ec6322d4408d9563807e01eff" }, "downloads": -1, "filename": "awkward1-0.4.2-cp39-cp39-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "4b1c16797c2bb517ee15ac2387874bf0", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5827450, "upload_time": "2020-11-04T18:34:44", "upload_time_iso_8601": "2020-11-04T18:34:44.764311Z", "url": "https://files.pythonhosted.org/packages/02/03/e1f54bff15bf851e60e22da06a9281ff4bf5671727af9841794e39063bc1/awkward1-0.4.2-cp39-cp39-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fa0afa2e394ba254e52fe2dcd97b13cd", "sha256": "b14f5fc2de2efc65185cd5a2886b6706d576cc9233b9013ed5946a1da9f43462" }, "downloads": -1, "filename": "awkward1-0.4.2-cp39-cp39-manylinux1_i686.whl", "has_sig": false, "md5_digest": "fa0afa2e394ba254e52fe2dcd97b13cd", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5818386, "upload_time": "2020-11-04T18:54:58", "upload_time_iso_8601": "2020-11-04T18:54:58.186780Z", "url": "https://files.pythonhosted.org/packages/52/ed/60573ceeede5e084cfaa4696efcfac0ebe23b5b7fa418187305d9570f9b7/awkward1-0.4.2-cp39-cp39-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a1366fad8b28b51090f44e663cb7b807", "sha256": "46e82be37c51627b000f8de63782fe1c1f6195e90201b68100d07babd7d21f28" }, "downloads": -1, "filename": "awkward1-0.4.2-cp39-cp39-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "a1366fad8b28b51090f44e663cb7b807", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5724123, "upload_time": "2020-11-04T18:55:54", "upload_time_iso_8601": "2020-11-04T18:55:54.059880Z", "url": "https://files.pythonhosted.org/packages/a5/75/926a7b3bbd1157eea25f70c6835a78422fa389214bc36646b7145f05f3e5/awkward1-0.4.2-cp39-cp39-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6b8098f8d709b274006894760899ac02", "sha256": "86b8c3a244c445c618c02405711b7876c2123bd67d6ea7d6974409c5d7659026" }, "downloads": -1, "filename": "awkward1-0.4.2-cp39-cp39-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "6b8098f8d709b274006894760899ac02", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6149650, "upload_time": "2020-11-04T18:57:50", "upload_time_iso_8601": "2020-11-04T18:57:50.263126Z", "url": "https://files.pythonhosted.org/packages/9d/e5/78564dca30b101614b85ef8da9272a55eedfcc8f846116b657be1a91e77c/awkward1-0.4.2-cp39-cp39-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fd8ebb97854156d91f021a27e6ad625d", "sha256": "1bd4338c6fa46aa21244d24b7b2aaacfe8a3612d2678deb01f6313d28c2afb2e" }, "downloads": -1, "filename": "awkward1-0.4.2-cp39-cp39-win32.whl", "has_sig": false, "md5_digest": "fd8ebb97854156d91f021a27e6ad625d", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7226958, "upload_time": "2020-11-04T18:50:19", "upload_time_iso_8601": "2020-11-04T18:50:19.817299Z", "url": "https://files.pythonhosted.org/packages/2a/9a/59368450a5935c7afad7e1e2a79b495a0289ec107f49fc5ee4c1456d4728/awkward1-0.4.2-cp39-cp39-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0dc4f3e56a6a7f7a29014a60fa322e5a", "sha256": "04cac5a06b14fa7b65d8487d984beb5ee4a946aad31186f8a019579e5123c8dc" }, "downloads": -1, "filename": "awkward1-0.4.2-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "0dc4f3e56a6a7f7a29014a60fa322e5a", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9672579, "upload_time": "2020-11-04T18:56:49", "upload_time_iso_8601": "2020-11-04T18:56:49.625686Z", "url": "https://files.pythonhosted.org/packages/7a/db/ebc8c261eb05cf300189ac4347c028c74dc43826261915ac075ed6b2680e/awkward1-0.4.2-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cfbf8b6bb6916948a6b1f9e25057a392", "sha256": "bdcd6dbedf59ff944d4dea9bdfc6741a2543831ec144147c76a942a3762234d6" }, "downloads": -1, "filename": "awkward1-0.4.2.tar.gz", "has_sig": false, "md5_digest": "cfbf8b6bb6916948a6b1f9e25057a392", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 773298, "upload_time": "2020-11-04T18:57:51", "upload_time_iso_8601": "2020-11-04T18:57:51.532352Z", "url": "https://files.pythonhosted.org/packages/32/71/bbd6d00351f624a9d2f3972bcf1acf2756bf4e2548adab7d0362ae8f753c/awkward1-0.4.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.3": [ { "comment_text": "", "digests": { "md5": "4624b88bbc3df34cbc9608bb10d3a39a", "sha256": "feefd17f37ddd34e1192e6892ea2906af51a3ce7c8465953cfdc25199ffe34f7" }, "downloads": -1, "filename": "awkward1-0.4.3-cp27-cp27m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "4624b88bbc3df34cbc9608bb10d3a39a", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5752678, "upload_time": "2020-11-05T00:28:41", "upload_time_iso_8601": "2020-11-05T00:28:41.853941Z", "url": "https://files.pythonhosted.org/packages/3a/e0/4a0ffae26bb1401885644c909c2c1374ea07b38cde8734b7e4bebd566373/awkward1-0.4.3-cp27-cp27m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f2bf58c108645a07be157cfb462e83a1", "sha256": "aa757f12de78569967e37bb765ce00cca61f19241fa83aadf939576bacccb452" }, "downloads": -1, "filename": "awkward1-0.4.3-cp27-cp27m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "f2bf58c108645a07be157cfb462e83a1", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5858151, "upload_time": "2020-11-05T00:51:13", "upload_time_iso_8601": "2020-11-05T00:51:13.302521Z", "url": "https://files.pythonhosted.org/packages/97/29/9227d23d64c4a25e69d897bbc8e7ff7157b3f197abd07198519d4c81bfc4/awkward1-0.4.3-cp27-cp27m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "82b22169e7589ffd764d493e086fea15", "sha256": "8c1d1ab59cd1fc904becc2355ca74b89c71cb1b6115a15fc94641fd2f591a624" }, "downloads": -1, "filename": "awkward1-0.4.3-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "82b22169e7589ffd764d493e086fea15", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5783465, "upload_time": "2020-11-05T00:50:11", "upload_time_iso_8601": "2020-11-05T00:50:11.002083Z", "url": "https://files.pythonhosted.org/packages/bf/52/7e3391990d8070e25b9eaec56e43dd573fdb9604e34ba3e9daeed2875f85/awkward1-0.4.3-cp27-cp27m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ad742c1ad6c000076d3f4fe50827a47c", "sha256": "f14321f036fb9cb5c14dd0cb0ae4e80c8a398d2e5de77f8226ae35b1652d1db5" }, "downloads": -1, "filename": "awkward1-0.4.3-cp27-cp27m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "ad742c1ad6c000076d3f4fe50827a47c", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6127272, "upload_time": "2020-11-05T00:55:30", "upload_time_iso_8601": "2020-11-05T00:55:30.417777Z", "url": "https://files.pythonhosted.org/packages/2d/d6/77a0a1184e54a2f3daa1e3b2d538c92f416bfb3361a78cf3fb57a6963f37/awkward1-0.4.3-cp27-cp27m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d8d3e5676cf19caaac61a0f14c9fc129", "sha256": "cee68f302df38675a09a7ccc10ae82dd00c8e33b206664be9ecae8c5a65e12ea" }, "downloads": -1, "filename": "awkward1-0.4.3-cp27-cp27mu-manylinux1_i686.whl", "has_sig": false, "md5_digest": "d8d3e5676cf19caaac61a0f14c9fc129", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5858097, "upload_time": "2020-11-05T00:51:15", "upload_time_iso_8601": "2020-11-05T00:51:15.103111Z", "url": "https://files.pythonhosted.org/packages/56/64/d7b1d31d90eef960ed02d05ad2cb1398813766923398989715fc0848617b/awkward1-0.4.3-cp27-cp27mu-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "721cf08cb3c0b62101f5b6d7d13b7744", "sha256": "ca04584d573375ed6a6578cfb4034e0c980a3a56dc1fc81fbe83a4e380d19500" }, "downloads": -1, "filename": "awkward1-0.4.3-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "721cf08cb3c0b62101f5b6d7d13b7744", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5783332, "upload_time": "2020-11-05T00:50:12", "upload_time_iso_8601": "2020-11-05T00:50:12.601339Z", "url": "https://files.pythonhosted.org/packages/68/31/1e19b8fc7fa70b72dd005e5aa2b812187a8593cfb052c965065dee09ac31/awkward1-0.4.3-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c4db113588f3eecc91a68ecbf1156889", "sha256": "83d75532641b88b9f50d39cc971c87c402b4c6d8fc578bf8ac48c1dc68ce05ce" }, "downloads": -1, "filename": "awkward1-0.4.3-cp27-cp27mu-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "c4db113588f3eecc91a68ecbf1156889", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6127240, "upload_time": "2020-11-05T00:55:32", "upload_time_iso_8601": "2020-11-05T00:55:32.176694Z", "url": "https://files.pythonhosted.org/packages/0b/ae/08d1a3477c7777f4ca37ccd22490720a2146ed95383b8a21fe607c7cb87f/awkward1-0.4.3-cp27-cp27mu-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3d3b68f1567c7ed9ae27f7423ceb2858", "sha256": "97a82b2bca95137f6212b5a606ef5b6f8cd7fcbb069b3d2c49a1d1c95f7dae73" }, "downloads": -1, "filename": "awkward1-0.4.3-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "3d3b68f1567c7ed9ae27f7423ceb2858", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7238955, "upload_time": "2020-11-05T00:32:14", "upload_time_iso_8601": "2020-11-05T00:32:14.607432Z", "url": "https://files.pythonhosted.org/packages/6a/67/36507c9a74f74799f3a0b88ddccb425c16385dbd10bde514a617cc012b35/awkward1-0.4.3-cp27-cp27m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5c83ce71aa6f47588db76bbf9f3d2084", "sha256": "e17ae027debbc4c8a21366ec138eee7996afbf86c85bbd1614cdb4673f1dd15e" }, "downloads": -1, "filename": "awkward1-0.4.3-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "5c83ce71aa6f47588db76bbf9f3d2084", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9705036, "upload_time": "2020-11-05T00:33:56", "upload_time_iso_8601": "2020-11-05T00:33:56.471223Z", "url": "https://files.pythonhosted.org/packages/47/d5/e65a3b95457abc5e8291e2bc0219468fa9e68718c9e7d0a61a40fe6f27c6/awkward1-0.4.3-cp27-cp27m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0c2864a8d6002ba6f3b47f3401d121bf", "sha256": "904928f0d802aa77fc47df9e9ffce2fa4e50718cf002c051d7c389999121bd62" }, "downloads": -1, "filename": "awkward1-0.4.3-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "0c2864a8d6002ba6f3b47f3401d121bf", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5857970, "upload_time": "2020-11-05T00:51:17", "upload_time_iso_8601": "2020-11-05T00:51:17.094868Z", "url": "https://files.pythonhosted.org/packages/13/57/6ef078b55b80fe7c204c889683e27fd9380826f4cd7d3fefb7b718553d82/awkward1-0.4.3-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "559b280050ad91a2c2c78b3b25f2579c", "sha256": "c1ce9253b93f273dee190adfb725b8099c658dadc4805920eead78bfd1d624ff" }, "downloads": -1, "filename": "awkward1-0.4.3-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "559b280050ad91a2c2c78b3b25f2579c", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5785069, "upload_time": "2020-11-05T00:50:14", "upload_time_iso_8601": "2020-11-05T00:50:14.127127Z", "url": "https://files.pythonhosted.org/packages/08/a7/d224a9e84d121c9517a23d0f6e311cacaeb8ae49662e802b481913ab6c12/awkward1-0.4.3-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cdd1080fefab7e398d3ebc1ccc0e0871", "sha256": "debe8192219fa080b98bc8785572f668d98a24e991738fe0fdb3e7c15b166463" }, "downloads": -1, "filename": "awkward1-0.4.3-cp35-cp35m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "cdd1080fefab7e398d3ebc1ccc0e0871", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6126188, "upload_time": "2020-11-05T00:55:33", "upload_time_iso_8601": "2020-11-05T00:55:33.981421Z", "url": "https://files.pythonhosted.org/packages/0f/62/619879fc750db61e90c9615c8a877cb106e4375a7580635b201a45d45fb6/awkward1-0.4.3-cp35-cp35m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "462924c46deb5e44f8ed23870ef28c80", "sha256": "caba1766cf95a1d092d267e629340dc9590ccb762dc306a2835d597d8e791c93" }, "downloads": -1, "filename": "awkward1-0.4.3-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "462924c46deb5e44f8ed23870ef28c80", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7239836, "upload_time": "2020-11-05T00:37:06", "upload_time_iso_8601": "2020-11-05T00:37:06.600689Z", "url": "https://files.pythonhosted.org/packages/d8/96/b13206350281b81138f7be10e8bc38d91c273bb7666d3062a76e5554f798/awkward1-0.4.3-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1f907c6d2cbfcb1c499df23a42c0dc8c", "sha256": "40e9eccb3485ab84d6716ef657bbdaef3831e194e3a3fe23c9c71e4595f1c320" }, "downloads": -1, "filename": "awkward1-0.4.3-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "1f907c6d2cbfcb1c499df23a42c0dc8c", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9701781, "upload_time": "2020-11-05T00:34:27", "upload_time_iso_8601": "2020-11-05T00:34:27.010949Z", "url": "https://files.pythonhosted.org/packages/df/09/b4f191b535f6b3d809303fc117155eea88b91d12133d94e8a86df1e0806c/awkward1-0.4.3-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "96ebc6e4c44e38854fb0f318b56a2fd7", "sha256": "5f161c4003acbd4745d772b059b9f76acf61ff56c8ad995bd6422773a8b53bb5" }, "downloads": -1, "filename": "awkward1-0.4.3-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "96ebc6e4c44e38854fb0f318b56a2fd7", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5857958, "upload_time": "2020-11-05T00:51:18", "upload_time_iso_8601": "2020-11-05T00:51:18.861264Z", "url": "https://files.pythonhosted.org/packages/7e/c9/598c1f25d3c57e564cd873bece1e012a070d203a668b1fd305c567431949/awkward1-0.4.3-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d0dceb22abe111968921b9a6e8f544ad", "sha256": "7e33b58246c44652c411246c8f7e80ced679032f6593402905dfeb94939b43a3" }, "downloads": -1, "filename": "awkward1-0.4.3-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "d0dceb22abe111968921b9a6e8f544ad", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5785069, "upload_time": "2020-11-05T00:50:16", "upload_time_iso_8601": "2020-11-05T00:50:16.126626Z", "url": "https://files.pythonhosted.org/packages/22/7d/9bce11408c9c12ec748dc81011baa3cfb33a8e81866ec431d1e7af2a2980/awkward1-0.4.3-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "53459ced549f519595bb4cf99cb1514a", "sha256": "7a3ef0e94c1a0cdd4a4e514ef63ead79ebc52360b02ba06c4dd7d442a753cd09" }, "downloads": -1, "filename": "awkward1-0.4.3-cp36-cp36m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "53459ced549f519595bb4cf99cb1514a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6126175, "upload_time": "2020-11-05T00:55:35", "upload_time_iso_8601": "2020-11-05T00:55:35.625847Z", "url": "https://files.pythonhosted.org/packages/f0/9a/6ba3677a8e1ba2158309a1f604c9dc99c14e019433054facba9416b4ce8e/awkward1-0.4.3-cp36-cp36m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3da524b4c1428080cba23f87d6399fe5", "sha256": "25e3585d47d9e23e49a889105243f4d7d66b218ea05228f325c5b53db0fc342b" }, "downloads": -1, "filename": "awkward1-0.4.3-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "3da524b4c1428080cba23f87d6399fe5", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7239648, "upload_time": "2020-11-05T00:36:54", "upload_time_iso_8601": "2020-11-05T00:36:54.224055Z", "url": "https://files.pythonhosted.org/packages/35/e4/6391fd240aee5eb24f5e25922a45ea22d7955e714daa237bfd890cee5004/awkward1-0.4.3-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ba48358985f0a6d5e6fe2e5b1a5054d8", "sha256": "49b6355ad7340e9f654d4324a054e94902462deadc4bcb4557e98b69eef1989a" }, "downloads": -1, "filename": "awkward1-0.4.3-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "ba48358985f0a6d5e6fe2e5b1a5054d8", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9701780, "upload_time": "2020-11-05T00:37:53", "upload_time_iso_8601": "2020-11-05T00:37:53.736128Z", "url": "https://files.pythonhosted.org/packages/5b/4d/49b006d35d3845d3be281fdb85851ab6ccd174f73ae508ad1c402d4e052a/awkward1-0.4.3-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "394d09ebd6db7910a86ce27e42acfe6e", "sha256": "c2dc89dec227f29726f526b03719434c6ec94e184e06aa7228c7103370ef6f46" }, "downloads": -1, "filename": "awkward1-0.4.3-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "394d09ebd6db7910a86ce27e42acfe6e", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5752307, "upload_time": "2020-11-05T00:28:25", "upload_time_iso_8601": "2020-11-05T00:28:25.603291Z", "url": "https://files.pythonhosted.org/packages/af/30/8f9cf0ad925d1fb6c4cc0181318daea71834f311cafd02467bb31c1aeea7/awkward1-0.4.3-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "49b996cedd9f410644e68712b39938f0", "sha256": "dd026dccd45f737732001702d0e83bf29643affff1f1ff099727ef82d32d4964" }, "downloads": -1, "filename": "awkward1-0.4.3-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "49b996cedd9f410644e68712b39938f0", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5851603, "upload_time": "2020-11-05T00:51:20", "upload_time_iso_8601": "2020-11-05T00:51:20.704883Z", "url": "https://files.pythonhosted.org/packages/34/7a/ca1c350571ab3740e964810164b5f26a13979153cbc6c227ba91fc7a7584/awkward1-0.4.3-cp37-cp37m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a40158d66b865c18519ec9c14219acbc", "sha256": "20e4fb0b238d16d42a60cbd126f2e384a8266e359ab2e03c90ae28619111253b" }, "downloads": -1, "filename": "awkward1-0.4.3-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "a40158d66b865c18519ec9c14219acbc", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5780293, "upload_time": "2020-11-05T00:50:17", "upload_time_iso_8601": "2020-11-05T00:50:17.735966Z", "url": "https://files.pythonhosted.org/packages/d0/81/736d0597753bb22797158daaddd43ebac3bfe7e49f088a14c24186f04730/awkward1-0.4.3-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0696268fdda2219aa79014541603809b", "sha256": "c579b136c7c924bfe2f2fb26a091794b8d62bfc50f83f3a410dad6c6f194e9f2" }, "downloads": -1, "filename": "awkward1-0.4.3-cp37-cp37m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "0696268fdda2219aa79014541603809b", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6126250, "upload_time": "2020-11-05T00:55:38", "upload_time_iso_8601": "2020-11-05T00:55:38.585327Z", "url": "https://files.pythonhosted.org/packages/5a/4c/3195d2e6455e022d53b598d2064f2975e77c290266eb9ec562474677cbe5/awkward1-0.4.3-cp37-cp37m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "89a71a8264310072d2164866c7b0d7a8", "sha256": "d1b8f0fdcb2944ba87a0cf924a99f50fb1e7064cef784585c806a5e3b6b47808" }, "downloads": -1, "filename": "awkward1-0.4.3-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "89a71a8264310072d2164866c7b0d7a8", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7239737, "upload_time": "2020-11-05T00:41:28", "upload_time_iso_8601": "2020-11-05T00:41:28.947639Z", "url": "https://files.pythonhosted.org/packages/e9/15/ca6b8d9cabbdc5f2d0c17778da541ac3de05148911ce08b785fb41cb2b53/awkward1-0.4.3-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e50d26bbbe8f1dcfef31d5cf66fd2adf", "sha256": "d0d081eb9fdc86d436bcc4d3a9eed621a300e3852cdf05ecb60681d6b1309b27" }, "downloads": -1, "filename": "awkward1-0.4.3-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "e50d26bbbe8f1dcfef31d5cf66fd2adf", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9701869, "upload_time": "2020-11-05T00:46:17", "upload_time_iso_8601": "2020-11-05T00:46:17.520324Z", "url": "https://files.pythonhosted.org/packages/f8/75/29a5f41ce91ce6640960ccabc1fa6bcd0ac2cc049908edaefb98671ffa9e/awkward1-0.4.3-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "719340f50d6fa89305469cad84be104b", "sha256": "6fb95086b809d9f35613a699d5f8f0a18236021698df29e9abfd2a2235bb6b21" }, "downloads": -1, "filename": "awkward1-0.4.3-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "719340f50d6fa89305469cad84be104b", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5830599, "upload_time": "2020-11-05T00:28:08", "upload_time_iso_8601": "2020-11-05T00:28:08.499542Z", "url": "https://files.pythonhosted.org/packages/75/8c/9ff5277285f51e3818a7c567b227860e7c9d860dc90d839792fa61e49450/awkward1-0.4.3-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7f9fd3f1367b0a20ba10df6044400303", "sha256": "7fbf9ea02012293521d63b759c72a6c14936b82275e9b07a6b7db36d82f37121" }, "downloads": -1, "filename": "awkward1-0.4.3-cp38-cp38-manylinux1_i686.whl", "has_sig": false, "md5_digest": "7f9fd3f1367b0a20ba10df6044400303", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5808324, "upload_time": "2020-11-05T00:51:22", "upload_time_iso_8601": "2020-11-05T00:51:22.292061Z", "url": "https://files.pythonhosted.org/packages/f2/5e/6a8f5ce3b4273be48ed3aea1f0a1fb819313b1c2422265f74df679443f60/awkward1-0.4.3-cp38-cp38-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "75d21186137190bb5f6509f7b95fb990", "sha256": "4ef2cdf3384a51cf3a6364b886c216d073fd4164be1cb3f39bd52ddf5197d4b8" }, "downloads": -1, "filename": "awkward1-0.4.3-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "75d21186137190bb5f6509f7b95fb990", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5727911, "upload_time": "2020-11-05T00:50:19", "upload_time_iso_8601": "2020-11-05T00:50:19.566778Z", "url": "https://files.pythonhosted.org/packages/eb/ef/fd71593d46612bbb9304760ef5125318cbc585ca11b10540487f98a1b921/awkward1-0.4.3-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a9723e22277523f97dd8877aff66585c", "sha256": "4bbc45fe011772e4771c3602e094e1d4ba91b26d7e1f3b8a7a3ae1f6c8b230d3" }, "downloads": -1, "filename": "awkward1-0.4.3-cp38-cp38-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "a9723e22277523f97dd8877aff66585c", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6152021, "upload_time": "2020-11-05T00:55:40", "upload_time_iso_8601": "2020-11-05T00:55:40.445570Z", "url": "https://files.pythonhosted.org/packages/c8/4e/e0c628ff959bc9db8272e9923ba2517289677225ee803a97095dc39bf91d/awkward1-0.4.3-cp38-cp38-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "de1f7b69a571785b8f332329b351b046", "sha256": "959da11ed219d9ba15e46b43675808522774d1237a8f61a923ccf17add35e86e" }, "downloads": -1, "filename": "awkward1-0.4.3-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "de1f7b69a571785b8f332329b351b046", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7228490, "upload_time": "2020-11-05T00:45:32", "upload_time_iso_8601": "2020-11-05T00:45:32.327763Z", "url": "https://files.pythonhosted.org/packages/27/cf/633109fa522672b0b8d8fd2b8031f975f22d8a3a423f777aaf5054c62129/awkward1-0.4.3-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ac3512a27916f9c98df1bc5e96b3bcea", "sha256": "0d67120ee823b1ce791f5b5e401f5f2b9d842914e02545325fc40f0f94c1a285" }, "downloads": -1, "filename": "awkward1-0.4.3-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "ac3512a27916f9c98df1bc5e96b3bcea", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9675606, "upload_time": "2020-11-05T01:19:45", "upload_time_iso_8601": "2020-11-05T01:19:45.750583Z", "url": "https://files.pythonhosted.org/packages/db/28/365e3e0f194c82712aa1ccce9ff55b09a40977e043f8a661ea8a7adc2bb7/awkward1-0.4.3-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bf84468141017c11838366f9ce5461fe", "sha256": "89513edaba2b8780385a80fbdce6006169001833f93fa0a9e652c630bd8dbcd6" }, "downloads": -1, "filename": "awkward1-0.4.3-cp39-cp39-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "bf84468141017c11838366f9ce5461fe", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5830747, "upload_time": "2020-11-05T00:31:25", "upload_time_iso_8601": "2020-11-05T00:31:25.572406Z", "url": "https://files.pythonhosted.org/packages/14/db/26f3665c658cc57030b14d534f615b35625b6be8d650a7e49389d4b495d9/awkward1-0.4.3-cp39-cp39-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "208e34c27d9f066132411378355b1e8c", "sha256": "f2304513d8bf0fe937409c83b274f7c3679b9c3256cc708a7652c48a43aaaa3b" }, "downloads": -1, "filename": "awkward1-0.4.3-cp39-cp39-manylinux1_i686.whl", "has_sig": false, "md5_digest": "208e34c27d9f066132411378355b1e8c", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5807249, "upload_time": "2020-11-05T00:51:23", "upload_time_iso_8601": "2020-11-05T00:51:23.724383Z", "url": "https://files.pythonhosted.org/packages/d7/ad/a29e233306b613c35530802bedfac9849b633ea449a98c051f6981f20ac2/awkward1-0.4.3-cp39-cp39-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0c3b0c8f386b5734f3a18cb2a916d014", "sha256": "9677509bce326667e61eabc0b846043d2f504b832c442e13ef92a23453bcdfc8" }, "downloads": -1, "filename": "awkward1-0.4.3-cp39-cp39-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "0c3b0c8f386b5734f3a18cb2a916d014", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5723821, "upload_time": "2020-11-05T00:50:20", "upload_time_iso_8601": "2020-11-05T00:50:20.991402Z", "url": "https://files.pythonhosted.org/packages/99/bd/bac4f3297fda3daf32b32a3a66195d4e2604bba47116e3bd2983e47e3c51/awkward1-0.4.3-cp39-cp39-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9fbc2e01eba9bf7db4116da07270c6b9", "sha256": "44a55941ece30a70a408b0451507454995dc6c9f69f68aba69f357d859951216" }, "downloads": -1, "filename": "awkward1-0.4.3-cp39-cp39-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "9fbc2e01eba9bf7db4116da07270c6b9", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6151568, "upload_time": "2020-11-05T00:55:42", "upload_time_iso_8601": "2020-11-05T00:55:42.009051Z", "url": "https://files.pythonhosted.org/packages/7c/e8/009c4e770150eb378463256026a047b41829ed0ca984f27f768b7c46f970/awkward1-0.4.3-cp39-cp39-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fd08a250ffadb1940b4a81ad356e1dd4", "sha256": "2416227f8c1047f7ed21d2f2beb6f54e784741f2f73e203ea154a806216815db" }, "downloads": -1, "filename": "awkward1-0.4.3-cp39-cp39-win32.whl", "has_sig": false, "md5_digest": "fd08a250ffadb1940b4a81ad356e1dd4", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7229556, "upload_time": "2020-11-05T00:46:08", "upload_time_iso_8601": "2020-11-05T00:46:08.417690Z", "url": "https://files.pythonhosted.org/packages/d4/da/83cdeb626709dd5c7333046925f922e892cd136762d546ae66c9f1102445/awkward1-0.4.3-cp39-cp39-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7903cbf7ab82162e2ba69eb6ec0331d9", "sha256": "a3f20278fe2369b98435b40143850736aedc2a3ac77cd8ec27aa197d0e3d0044" }, "downloads": -1, "filename": "awkward1-0.4.3-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "7903cbf7ab82162e2ba69eb6ec0331d9", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9675805, "upload_time": "2020-11-05T00:44:27", "upload_time_iso_8601": "2020-11-05T00:44:27.231641Z", "url": "https://files.pythonhosted.org/packages/d9/d0/96012c4954c816b756a3da59ab9b08dcef70008e38b431054e0a30682b6a/awkward1-0.4.3-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "13871ab0b791accd6b7b12ce38c2d211", "sha256": "988ef424fff2ffcc18b7ba9a50955159a8d6df0a6add898d4bf1ed24cc3a6019" }, "downloads": -1, "filename": "awkward1-0.4.3.tar.gz", "has_sig": false, "md5_digest": "13871ab0b791accd6b7b12ce38c2d211", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 774243, "upload_time": "2020-11-05T00:55:43", "upload_time_iso_8601": "2020-11-05T00:55:43.989110Z", "url": "https://files.pythonhosted.org/packages/cd/86/7e5de10c2d889a912b7420795cfbf4dab657d21a3887df03043bd8805c0f/awkward1-0.4.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.4": [ { "comment_text": "", "digests": { "md5": "cd046b70dab7ce8bf04963789ebf50c9", "sha256": "a23fd11c3640ac0bfbce02ea72f0192cba363003e07ffcf9ea0e510664c46811" }, "downloads": -1, "filename": "awkward1-0.4.4-cp27-cp27m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "cd046b70dab7ce8bf04963789ebf50c9", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5863204, "upload_time": "2020-11-17T13:14:16", "upload_time_iso_8601": "2020-11-17T13:14:16.552424Z", "url": "https://files.pythonhosted.org/packages/0d/29/ecfe521686cc0608d5c5bf3950bb9823da73a1c1cb0a382660596d29f7d4/awkward1-0.4.4-cp27-cp27m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "58afbef96d53ddfdcb2c7846a872d69b", "sha256": "04fb7140cdd35a601a0532214cc2933df534473d879524600c9a0adc2be2b414" }, "downloads": -1, "filename": "awkward1-0.4.4-cp27-cp27m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "58afbef96d53ddfdcb2c7846a872d69b", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5912188, "upload_time": "2020-11-17T13:34:26", "upload_time_iso_8601": "2020-11-17T13:34:26.007745Z", "url": "https://files.pythonhosted.org/packages/53/01/b01570b9ac524e78fe8f135afa189e1059244ca4f7203a9eadaba59fa86d/awkward1-0.4.4-cp27-cp27m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "53b91ecea88860c62f0bcd72feabc0fd", "sha256": "6dbb4bad3b1ea1a2e537dbcdc39712943caa0b653530c064a2f38078127e9d13" }, "downloads": -1, "filename": "awkward1-0.4.4-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "53b91ecea88860c62f0bcd72feabc0fd", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5861207, "upload_time": "2020-11-17T13:33:14", "upload_time_iso_8601": "2020-11-17T13:33:14.589985Z", "url": "https://files.pythonhosted.org/packages/1c/82/59e108cc6fc0dc722235f7e11611132c7a13fd257a89a891a1f3a8d8090f/awkward1-0.4.4-cp27-cp27m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "246947feb741bc4969990fb91bd3fef9", "sha256": "bca533edf4820c54a5cde2ea1ba8e36107817c864efbf3c40525a6c25a3f643c" }, "downloads": -1, "filename": "awkward1-0.4.4-cp27-cp27m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "246947feb741bc4969990fb91bd3fef9", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6221492, "upload_time": "2020-11-17T13:40:31", "upload_time_iso_8601": "2020-11-17T13:40:31.628738Z", "url": "https://files.pythonhosted.org/packages/36/89/09aaf409281c9e2868b3f7ee29a65e9fecef3b4cd6edb9fa5e7dfc4b47fc/awkward1-0.4.4-cp27-cp27m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6a41bcb3c72824db74ffde8684cfb558", "sha256": "ca22c5751d27a0b97da403359e45779b1d30008be862b8ceba4a394a4a30d8ef" }, "downloads": -1, "filename": "awkward1-0.4.4-cp27-cp27mu-manylinux1_i686.whl", "has_sig": false, "md5_digest": "6a41bcb3c72824db74ffde8684cfb558", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5912239, "upload_time": "2020-11-17T13:34:27", "upload_time_iso_8601": "2020-11-17T13:34:27.652584Z", "url": "https://files.pythonhosted.org/packages/5e/d0/22b0d47cf707394a41a6c7ba1faca1b6bab90725000cc7a1bdf8fe8777f9/awkward1-0.4.4-cp27-cp27mu-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1160a729dcb6b7ea53557e54e585ec29", "sha256": "2aac90e42975984d34fefa16a7a015c37ce9a65a28b3db4fd200d6af6dfdf4f5" }, "downloads": -1, "filename": "awkward1-0.4.4-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "1160a729dcb6b7ea53557e54e585ec29", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5861330, "upload_time": "2020-11-17T13:33:16", "upload_time_iso_8601": "2020-11-17T13:33:16.094878Z", "url": "https://files.pythonhosted.org/packages/0e/0c/51fdfa2ef433ec4d636e2b1990b58077418630a5af14cf77f8601d154801/awkward1-0.4.4-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8e33a59555dabc940cc2dbcd050e1807", "sha256": "dac6cb736a93f91bdc3bc37252130aa216a7436ea24dcaaacfd73fa17bb19d9f" }, "downloads": -1, "filename": "awkward1-0.4.4-cp27-cp27mu-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "8e33a59555dabc940cc2dbcd050e1807", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6221661, "upload_time": "2020-11-17T13:40:33", "upload_time_iso_8601": "2020-11-17T13:40:33.420598Z", "url": "https://files.pythonhosted.org/packages/2e/3f/63221cee3078e6eee14cc497ef0d272b550b6b7d99c974c06ee5de260e5f/awkward1-0.4.4-cp27-cp27mu-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a53d3f03ed6b78e783a586678a63b4d4", "sha256": "678c71bbb3e9b172bdc3bd7c60efb4217b83756581423522a59f3b2ab3e9bbdb" }, "downloads": -1, "filename": "awkward1-0.4.4-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "a53d3f03ed6b78e783a586678a63b4d4", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7308440, "upload_time": "2020-11-17T13:26:31", "upload_time_iso_8601": "2020-11-17T13:26:31.287588Z", "url": "https://files.pythonhosted.org/packages/36/bf/bd404ba34629c868feed8a35dfbecfa928a45d1ed7d6757c3259dd872695/awkward1-0.4.4-cp27-cp27m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "82bf95d49bfb426d8b03a65ef0f8043b", "sha256": "ffc3bb3e1469c4e1d44e11af55f7e2c476c5d396387d5f0f9d90c4211d6fdb87" }, "downloads": -1, "filename": "awkward1-0.4.4-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "82bf95d49bfb426d8b03a65ef0f8043b", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9812569, "upload_time": "2020-11-17T13:21:21", "upload_time_iso_8601": "2020-11-17T13:21:21.099201Z", "url": "https://files.pythonhosted.org/packages/5c/d7/545a9375dad7cc8dfc3348f6df7c99e234481f47caca2a234d3ac21d71d7/awkward1-0.4.4-cp27-cp27m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0688672f3a5721ef0eca14412b1e1ff6", "sha256": "d61f1ca5d7e12859dc3a8e9c12c26926f61221af4c7c5ba5aef2d7021cba6f12" }, "downloads": -1, "filename": "awkward1-0.4.4-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "0688672f3a5721ef0eca14412b1e1ff6", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5897271, "upload_time": "2020-11-17T13:34:29", "upload_time_iso_8601": "2020-11-17T13:34:29.141103Z", "url": "https://files.pythonhosted.org/packages/4f/01/1c08da8247f32c7f932006253b47960a5ab3cb0fabb48c2db286d04d3964/awkward1-0.4.4-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "63d8a17a22e727028de7b481a77381bd", "sha256": "f754ab87928857ea8989b8d8d285aeb45e102ffa73ed6c2c3cbb22095a800cd9" }, "downloads": -1, "filename": "awkward1-0.4.4-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "63d8a17a22e727028de7b481a77381bd", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5852373, "upload_time": "2020-11-17T13:33:17", "upload_time_iso_8601": "2020-11-17T13:33:17.702192Z", "url": "https://files.pythonhosted.org/packages/91/8d/959fcf2b9c5c976fb82e8d939a5e9cfb48fb4730dac2bb356d463b141a7a/awkward1-0.4.4-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8120f0ead661c549cc6fdd3bd1b45ca4", "sha256": "952f7cd84df52efd86a1b1b2b5ec92bd3bc1458dff0057aafde471ed483013d9" }, "downloads": -1, "filename": "awkward1-0.4.4-cp35-cp35m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "8120f0ead661c549cc6fdd3bd1b45ca4", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6218845, "upload_time": "2020-11-17T13:40:34", "upload_time_iso_8601": "2020-11-17T13:40:34.938155Z", "url": "https://files.pythonhosted.org/packages/73/a5/5c8f06fc8385b7b014df4291c7becdf27b07284268339182476da76d58f3/awkward1-0.4.4-cp35-cp35m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fa83370afa483950d61357867a99ac7f", "sha256": "6155047b4f91dc36a84b8bb82dd6889e5b4de3ef51d704da3877ceda886ae965" }, "downloads": -1, "filename": "awkward1-0.4.4-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "fa83370afa483950d61357867a99ac7f", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7307107, "upload_time": "2020-11-17T13:18:19", "upload_time_iso_8601": "2020-11-17T13:18:19.461047Z", "url": "https://files.pythonhosted.org/packages/f8/dc/0bc9647d6d9750893c1d06120cf03da536f08937e1a0b0f555334ae55ecd/awkward1-0.4.4-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e0a51a35692fd13b7a2585a36f5256c3", "sha256": "237836a8eb600b830df1540452e900631aee514848ad4aa5d00397f07a964882" }, "downloads": -1, "filename": "awkward1-0.4.4-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "e0a51a35692fd13b7a2585a36f5256c3", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9807256, "upload_time": "2020-11-17T13:23:43", "upload_time_iso_8601": "2020-11-17T13:23:43.600339Z", "url": "https://files.pythonhosted.org/packages/56/ba/bcbcad5c2ab0e9e4e8446aba2ddb213c9b948a15c5611474790d8a001b94/awkward1-0.4.4-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "160977b08681bf055758014e848df550", "sha256": "e1af02ad7704a084871faf1bf1beef8a0336cf9a888bc4fce0b46f8f3bcf52b3" }, "downloads": -1, "filename": "awkward1-0.4.4-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "160977b08681bf055758014e848df550", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5897238, "upload_time": "2020-11-17T13:34:31", "upload_time_iso_8601": "2020-11-17T13:34:31.104584Z", "url": "https://files.pythonhosted.org/packages/c2/27/87d640aff28b2a8baac5d032877b898c436560629e3eb3b28ac7524bf98b/awkward1-0.4.4-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fee3af62966fc8d0ed68880f142714fb", "sha256": "1b401f0adbe81f36de7be6a374c62b354e29cc9e6496f4303bf5e83a3d018772" }, "downloads": -1, "filename": "awkward1-0.4.4-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "fee3af62966fc8d0ed68880f142714fb", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5852392, "upload_time": "2020-11-17T13:33:19", "upload_time_iso_8601": "2020-11-17T13:33:19.716609Z", "url": "https://files.pythonhosted.org/packages/08/5a/73f672871ee01405f8abd15a6459e46bd4e656ad2d5d7aa458d5e4c3c995/awkward1-0.4.4-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e6d33119e3ef3a16b0ab524428dbcfdf", "sha256": "8b39ef4704070d039d34884f91d718dafb6375401e9330872fe8fd3370a9ecf6" }, "downloads": -1, "filename": "awkward1-0.4.4-cp36-cp36m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "e6d33119e3ef3a16b0ab524428dbcfdf", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6218880, "upload_time": "2020-11-17T13:40:37", "upload_time_iso_8601": "2020-11-17T13:40:37.149851Z", "url": "https://files.pythonhosted.org/packages/f9/40/8e8cc5cb33126fa5f23721bc1381c46e13b2462cf7b474e3aac74f133c48/awkward1-0.4.4-cp36-cp36m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2656a82ef1a8ddc113b02c3a7da02503", "sha256": "72635d8aefa8a347c31cdbbd5de9f9d16129b97f5dcf8ac5ec1a42683894b5a7" }, "downloads": -1, "filename": "awkward1-0.4.4-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "2656a82ef1a8ddc113b02c3a7da02503", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7307153, "upload_time": "2020-11-17T13:27:22", "upload_time_iso_8601": "2020-11-17T13:27:22.104243Z", "url": "https://files.pythonhosted.org/packages/8b/59/98f0a0a157bb16ca611d7ca598bcbe87f0bb7f6e1aa445789f072e782cda/awkward1-0.4.4-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8966cdf9361ff73c318f81200527de2a", "sha256": "e9136df029c2fe0db6b083b4cf45e5a4f17abed162400c704d04431f9492cdbf" }, "downloads": -1, "filename": "awkward1-0.4.4-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "8966cdf9361ff73c318f81200527de2a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9807270, "upload_time": "2020-11-17T13:24:06", "upload_time_iso_8601": "2020-11-17T13:24:06.253762Z", "url": "https://files.pythonhosted.org/packages/8e/5b/3e01c752330a74bcd16f6a7c11de5b27bf4c251ece196063d2dca5bb287b/awkward1-0.4.4-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "10215d6383bb43feb37a656b2604e5ae", "sha256": "eb44b775e363fc512c7107e920b02843773c48a7edea1ed2aa3f545ab9f26be0" }, "downloads": -1, "filename": "awkward1-0.4.4-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "10215d6383bb43feb37a656b2604e5ae", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5863193, "upload_time": "2020-11-17T13:14:27", "upload_time_iso_8601": "2020-11-17T13:14:27.197948Z", "url": "https://files.pythonhosted.org/packages/0f/f3/562bd556687fc2544614c4a396e833b644ef94f0018c00b73da89c4bc94c/awkward1-0.4.4-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f4839c88566d6b83d35924079d7dc45a", "sha256": "b0803874c0119a912fc67f026c8aabfb718cf898c35a6b05cbdee052cabdb7d1" }, "downloads": -1, "filename": "awkward1-0.4.4-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "f4839c88566d6b83d35924079d7dc45a", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5905937, "upload_time": "2020-11-17T13:34:33", "upload_time_iso_8601": "2020-11-17T13:34:33.245565Z", "url": "https://files.pythonhosted.org/packages/f1/a5/86837dc5cc799dc59100c7bd9d4b1bf77aa4c26c8775eb02744c5bb1fbd7/awkward1-0.4.4-cp37-cp37m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0a7d602746da9c1bee8ab6b1334c5ba1", "sha256": "17722f853b64bd1cef3d00c003f84e775cbefd5aeb14139625fb4564c7b15284" }, "downloads": -1, "filename": "awkward1-0.4.4-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "0a7d602746da9c1bee8ab6b1334c5ba1", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5859794, "upload_time": "2020-11-17T13:33:21", "upload_time_iso_8601": "2020-11-17T13:33:21.420260Z", "url": "https://files.pythonhosted.org/packages/6d/59/84cedff662c186a3ce4b330a72587a9bda2e591d81f0aee407f741d914cf/awkward1-0.4.4-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "02e502952a861dec205f585947809473", "sha256": "8dbe6a712a6f503e54a1c9f594f5204ac7c6c27f0834a352247dfb622e3f262a" }, "downloads": -1, "filename": "awkward1-0.4.4-cp37-cp37m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "02e502952a861dec205f585947809473", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6219736, "upload_time": "2020-11-17T13:40:38", "upload_time_iso_8601": "2020-11-17T13:40:38.792042Z", "url": "https://files.pythonhosted.org/packages/1d/94/157fe3d30f361c1131062c3c743934eeddeeef8f2f2821cb52e720f8b53d/awkward1-0.4.4-cp37-cp37m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "77c9d6302c4f5be51f7f4003aac532b9", "sha256": "7996f3220fc2519ca57cf483cd923ceb92f507b2bef46ae8de1e8d9c9c030328" }, "downloads": -1, "filename": "awkward1-0.4.4-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "77c9d6302c4f5be51f7f4003aac532b9", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7307104, "upload_time": "2020-11-17T13:23:27", "upload_time_iso_8601": "2020-11-17T13:23:27.537791Z", "url": "https://files.pythonhosted.org/packages/87/6e/fcd7574ecca338865991100201f7f22ef8f89110ea464aaf447e5174fa33/awkward1-0.4.4-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1f5f92e3946a6fa5445ce8312f214d1f", "sha256": "55866b0d61d405168a6b72724c497172d4a464d683446403a45db5a24803f2ae" }, "downloads": -1, "filename": "awkward1-0.4.4-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "1f5f92e3946a6fa5445ce8312f214d1f", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9807377, "upload_time": "2020-11-17T13:33:56", "upload_time_iso_8601": "2020-11-17T13:33:56.921746Z", "url": "https://files.pythonhosted.org/packages/3d/8a/4b3858e5443cf1a007fb54823f4956cda70050afdb304280c0e54fd19292/awkward1-0.4.4-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fea246ad631ba24bf414c6bf156c9a21", "sha256": "f63c85a8de5243a2ec23bc0ee818709360a9dcf5424508a9ca707a9ec9cf6e15" }, "downloads": -1, "filename": "awkward1-0.4.4-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "fea246ad631ba24bf414c6bf156c9a21", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5945462, "upload_time": "2020-11-17T13:13:25", "upload_time_iso_8601": "2020-11-17T13:13:25.566209Z", "url": "https://files.pythonhosted.org/packages/61/cc/b511b2a6c4dffd3e9db4f78395b54634697a29973d72910a50458cc93d8e/awkward1-0.4.4-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1d2cb76196e99e5e5e8afd5119d4be15", "sha256": "fd7fcb4789b93bef7be724e89f269c0d02b57d371061b9fb22d632d1094e1e08" }, "downloads": -1, "filename": "awkward1-0.4.4-cp38-cp38-manylinux1_i686.whl", "has_sig": false, "md5_digest": "1d2cb76196e99e5e5e8afd5119d4be15", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5862215, "upload_time": "2020-11-17T13:34:35", "upload_time_iso_8601": "2020-11-17T13:34:35.331722Z", "url": "https://files.pythonhosted.org/packages/3b/fa/3889ab902196c9a05f30fb488eed2784016ce986ac84ff6316f443fa1701/awkward1-0.4.4-cp38-cp38-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4e096908686eeae64c82e786eb08b0a5", "sha256": "8be402e048fe25b7531c357929bdf4d24a306b2c1e9bdca44d86cb0c1dd90c8a" }, "downloads": -1, "filename": "awkward1-0.4.4-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "4e096908686eeae64c82e786eb08b0a5", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5804546, "upload_time": "2020-11-17T13:33:22", "upload_time_iso_8601": "2020-11-17T13:33:22.677912Z", "url": "https://files.pythonhosted.org/packages/48/b4/5b3b802a752de214c1a77bff3eca80a68f99aa7c036dea8efc41b149e7e8/awkward1-0.4.4-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1e2b0a556f355da692ceb9b5a895d9f7", "sha256": "ceafc55d1cad0bd32bfc85b0996611d912fbbc488307f6362dcf02e885f9d68f" }, "downloads": -1, "filename": "awkward1-0.4.4-cp38-cp38-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "1e2b0a556f355da692ceb9b5a895d9f7", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6232576, "upload_time": "2020-11-17T13:40:40", "upload_time_iso_8601": "2020-11-17T13:40:40.469395Z", "url": "https://files.pythonhosted.org/packages/84/d0/ca034ef05ce21ad6dbe61a7b83565ae1cdb417fa7d6ca87f87aed49cba01/awkward1-0.4.4-cp38-cp38-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7a98388f2ceed9fbe8a80fe7f1e10477", "sha256": "c8b42f7b53927a9dc9fb7053fbf616382e015a0d3329d41b86c0416dff4e8c08" }, "downloads": -1, "filename": "awkward1-0.4.4-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "7a98388f2ceed9fbe8a80fe7f1e10477", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7301253, "upload_time": "2020-11-17T13:37:41", "upload_time_iso_8601": "2020-11-17T13:37:41.554358Z", "url": "https://files.pythonhosted.org/packages/0f/26/c6fc0f853a4388294ea94c495e50c485628e02f1ea13295e7f24374d48be/awkward1-0.4.4-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d8629a032a7ac31c5adf62c73e4204e7", "sha256": "b25316d78f87693ab9bec8dc96a1f7d59c24ba6da14e70a978b34cff8d08f3eb" }, "downloads": -1, "filename": "awkward1-0.4.4-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "d8629a032a7ac31c5adf62c73e4204e7", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9782475, "upload_time": "2020-11-17T13:32:10", "upload_time_iso_8601": "2020-11-17T13:32:10.916753Z", "url": "https://files.pythonhosted.org/packages/83/b5/f6169cfc0ba416389ca75cddd96b28156956faa48900c9329f4c3d919b47/awkward1-0.4.4-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0b5ff4d18d5f67ce0623f5f0409aae3b", "sha256": "00c21d5cff614444478d275e63d336462ea93f9e44473d0653135931584a2a5a" }, "downloads": -1, "filename": "awkward1-0.4.4-cp39-cp39-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "0b5ff4d18d5f67ce0623f5f0409aae3b", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5945381, "upload_time": "2020-11-17T13:13:33", "upload_time_iso_8601": "2020-11-17T13:13:33.974210Z", "url": "https://files.pythonhosted.org/packages/96/be/db01e0c6eea9362b52dccc0e239fc5fb57a534db16150368366f010f493c/awkward1-0.4.4-cp39-cp39-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d1cb787ba20d87e8a051c43cb7d0b177", "sha256": "ea8b65f76687c9138ee91883f22cb14600737870a0c3ad58b9affa74064a90cf" }, "downloads": -1, "filename": "awkward1-0.4.4-cp39-cp39-manylinux1_i686.whl", "has_sig": false, "md5_digest": "d1cb787ba20d87e8a051c43cb7d0b177", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5858415, "upload_time": "2020-11-17T13:34:36", "upload_time_iso_8601": "2020-11-17T13:34:36.854273Z", "url": "https://files.pythonhosted.org/packages/7b/0e/63ad33d6da8fffd4071059ee89473e7d4b887d4c39a2d21c6aba624a7737/awkward1-0.4.4-cp39-cp39-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ac92c2ca3dffc68137256facd990da73", "sha256": "9479cc46e4166b6f0def8c1e0cf7737e8a3b228e1dc3676b465b2dd042157a84" }, "downloads": -1, "filename": "awkward1-0.4.4-cp39-cp39-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "ac92c2ca3dffc68137256facd990da73", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5801817, "upload_time": "2020-11-17T13:33:24", "upload_time_iso_8601": "2020-11-17T13:33:24.204777Z", "url": "https://files.pythonhosted.org/packages/fe/b6/113e85b5179d226f692ba7fec9d841f9d06c0e66cba3efc42f13184acb6a/awkward1-0.4.4-cp39-cp39-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0d3eaa43eed247a49550526ad8f7a0f8", "sha256": "2ace0a3697e5adc3461923d59e4dada0ed529114652f04586587bdc541df32e5" }, "downloads": -1, "filename": "awkward1-0.4.4-cp39-cp39-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "0d3eaa43eed247a49550526ad8f7a0f8", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6234333, "upload_time": "2020-11-17T13:40:42", "upload_time_iso_8601": "2020-11-17T13:40:42.194063Z", "url": "https://files.pythonhosted.org/packages/fe/28/5626b308c549ac99cd12b3960ad0b6abe8c0994cab4541802aee5fd7635c/awkward1-0.4.4-cp39-cp39-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4be42e2d0006a223f5a865b504d5f14d", "sha256": "01f8c616a2888634f9b6248427acd4e3b1bedb1149754062048a9b4aff27fdb6" }, "downloads": -1, "filename": "awkward1-0.4.4-cp39-cp39-win32.whl", "has_sig": false, "md5_digest": "4be42e2d0006a223f5a865b504d5f14d", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7302486, "upload_time": "2020-11-17T13:37:26", "upload_time_iso_8601": "2020-11-17T13:37:26.839622Z", "url": "https://files.pythonhosted.org/packages/de/82/dc54b27d9ab6bf16759138a2c1d942d8c22ea04543dd0e643f7c8787c30a/awkward1-0.4.4-cp39-cp39-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7ef641ae9456a63d53b212ab05262fe6", "sha256": "9f0d43148a5d2460431074ca09c3497e118176a0752f93aff08f8c33629e2632" }, "downloads": -1, "filename": "awkward1-0.4.4-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "7ef641ae9456a63d53b212ab05262fe6", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9782045, "upload_time": "2020-11-17T13:38:59", "upload_time_iso_8601": "2020-11-17T13:38:59.772890Z", "url": "https://files.pythonhosted.org/packages/1b/fd/6413a0cfaeabef86d20510ddbee1242352ef384fdee80b06dc5865091f6a/awkward1-0.4.4-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d8178c5d0a79d0f5b4df4080f51e157b", "sha256": "72b63e25c1c0d85ee4b36b094c7103ef0e40678265eb1e240322ee19fe334368" }, "downloads": -1, "filename": "awkward1-0.4.4.tar.gz", "has_sig": false, "md5_digest": "d8178c5d0a79d0f5b4df4080f51e157b", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 788439, "upload_time": "2020-11-17T13:40:43", "upload_time_iso_8601": "2020-11-17T13:40:43.413188Z", "url": "https://files.pythonhosted.org/packages/73/d2/aca679f146f068f35933349646a1d17b886c535e21976f01a23b36ea70ff/awkward1-0.4.4.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.5": [ { "comment_text": "", "digests": { "md5": "cbeeee4edd54767c4ebdd06d6aef0d9e", "sha256": "99b55293c4d8e17503a028c97fa23629057deb652d68f09a8946197966a5c414" }, "downloads": -1, "filename": "awkward1-0.4.5-cp27-cp27m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "cbeeee4edd54767c4ebdd06d6aef0d9e", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5877851, "upload_time": "2020-11-24T21:31:20", "upload_time_iso_8601": "2020-11-24T21:31:20.204258Z", "url": "https://files.pythonhosted.org/packages/7d/7b/7d0662b345a182336293aafad0ea2d726ce122149d51caeb33b973d7785e/awkward1-0.4.5-cp27-cp27m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0361ecb00e5e3b6c2757495ab361e769", "sha256": "540243918938a77232f0c216c4375dd08f6e7af3ce10c40f4f51e0523249e8d3" }, "downloads": -1, "filename": "awkward1-0.4.5-cp27-cp27m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "0361ecb00e5e3b6c2757495ab361e769", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5935934, "upload_time": "2020-11-24T21:53:47", "upload_time_iso_8601": "2020-11-24T21:53:47.629623Z", "url": "https://files.pythonhosted.org/packages/ca/5b/b73044d2589fce223a2d126c5487aacb5fa835ccd23ac70f9c1935c4782b/awkward1-0.4.5-cp27-cp27m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5dbd3a3ea99518a4cf7938c53ac314db", "sha256": "d0174306412394ed6068153cdce0e1e671ed51bcc519de31ac90a09831491c9a" }, "downloads": -1, "filename": "awkward1-0.4.5-cp27-cp27m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "5dbd3a3ea99518a4cf7938c53ac314db", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5880339, "upload_time": "2020-11-24T21:48:21", "upload_time_iso_8601": "2020-11-24T21:48:21.619261Z", "url": "https://files.pythonhosted.org/packages/18/d5/df24e31cd02c8db747efb636276be79fceccb95c1be7f9d5e49e265db521/awkward1-0.4.5-cp27-cp27m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3b9250c576a006fe55e5137167b9631b", "sha256": "05f9d73b17fc055c32093fa757b2a1114ba1af75f7c454c0ee141c7e2ddf001f" }, "downloads": -1, "filename": "awkward1-0.4.5-cp27-cp27m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "3b9250c576a006fe55e5137167b9631b", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6234658, "upload_time": "2020-11-24T21:57:06", "upload_time_iso_8601": "2020-11-24T21:57:06.255579Z", "url": "https://files.pythonhosted.org/packages/0c/6b/6b0611f8b7dbcdda87de0bce81c77899ffebd5b8bccffeff09d71756a6df/awkward1-0.4.5-cp27-cp27m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "db65b7b57aecb4e437618b215861ac71", "sha256": "da64c916d3a365afd85f0ff08dd68f22dcd86e974a87aa8d7e4acd8473268056" }, "downloads": -1, "filename": "awkward1-0.4.5-cp27-cp27mu-manylinux1_i686.whl", "has_sig": false, "md5_digest": "db65b7b57aecb4e437618b215861ac71", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5935911, "upload_time": "2020-11-24T21:53:49", "upload_time_iso_8601": "2020-11-24T21:53:49.315704Z", "url": "https://files.pythonhosted.org/packages/df/57/d8586a2e734becc6bdfd252d1b101aa65d922ba607c1692f48b7d90c28ad/awkward1-0.4.5-cp27-cp27mu-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5b9b7a08e4493d3c6df318037e6d61fa", "sha256": "844cf792998c1c5b010ede4a325c74e3f2be7fa8c1193397d06fbdb92a675613" }, "downloads": -1, "filename": "awkward1-0.4.5-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "5b9b7a08e4493d3c6df318037e6d61fa", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5880240, "upload_time": "2020-11-24T21:48:22", "upload_time_iso_8601": "2020-11-24T21:48:22.990994Z", "url": "https://files.pythonhosted.org/packages/65/a8/e7744cee3af32b5e5fe76ae28ce1200bec4e3a8267359f1893da2bdd6dae/awkward1-0.4.5-cp27-cp27mu-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3265853c7d9342de1d9d84a353abea6d", "sha256": "9796e3c327b16777e3155362f39f12b21228ffff9694212d5f16b30ad9eddb29" }, "downloads": -1, "filename": "awkward1-0.4.5-cp27-cp27mu-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "3265853c7d9342de1d9d84a353abea6d", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6234635, "upload_time": "2020-11-24T21:57:08", "upload_time_iso_8601": "2020-11-24T21:57:08.545942Z", "url": "https://files.pythonhosted.org/packages/81/f1/68919dc787c6b3b82f7b530f10e016a1c52c03f39824ab846b8bcb1216f9/awkward1-0.4.5-cp27-cp27mu-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8be0ad262ab93e155a9253b58958d0ce", "sha256": "f403dfc622ac5b4c3e5665f53216c6451b49ef0e2f6d7d5f570c73d4c758908e" }, "downloads": -1, "filename": "awkward1-0.4.5-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "8be0ad262ab93e155a9253b58958d0ce", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7319058, "upload_time": "2020-11-24T21:36:08", "upload_time_iso_8601": "2020-11-24T21:36:08.374149Z", "url": "https://files.pythonhosted.org/packages/c5/79/cce55c8cb00b67a5189e5d98335944fb6552551cc8916a1647df9ba0bf87/awkward1-0.4.5-cp27-cp27m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ab8f1a2d86f3cd2651530d4414ef3397", "sha256": "0febca0b0aff9f9625df2f9d52bc800ad4d1416bd1f818ca7878be9e4b6980b1" }, "downloads": -1, "filename": "awkward1-0.4.5-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "ab8f1a2d86f3cd2651530d4414ef3397", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9830133, "upload_time": "2020-11-24T21:37:52", "upload_time_iso_8601": "2020-11-24T21:37:52.805019Z", "url": "https://files.pythonhosted.org/packages/b3/f9/a9547368c5d6ecc41f8c5ad6ec66d748465d6f82a97ac3eb00e710fd607e/awkward1-0.4.5-cp27-cp27m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c071842ace1cc681d4d85b08f866348f", "sha256": "5f8cad2ffd89cf36655bcddb0bb99a02ef1ead5a69065abd5d9c91e45e859bca" }, "downloads": -1, "filename": "awkward1-0.4.5-cp35-cp35m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "c071842ace1cc681d4d85b08f866348f", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5923859, "upload_time": "2020-11-24T21:53:50", "upload_time_iso_8601": "2020-11-24T21:53:50.822037Z", "url": "https://files.pythonhosted.org/packages/3b/ee/19f54af49023d76cd27d64f2b0bb474ec8805d7a231135a714517387fbc7/awkward1-0.4.5-cp35-cp35m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6bdad3e163fb962834e931b92b1d1e1c", "sha256": "149487b34a55bf5847a078ab48e8a5accfa0fbe67b2aafd58daf9bd68102d834" }, "downloads": -1, "filename": "awkward1-0.4.5-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "6bdad3e163fb962834e931b92b1d1e1c", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5885286, "upload_time": "2020-11-24T21:48:24", "upload_time_iso_8601": "2020-11-24T21:48:24.431013Z", "url": "https://files.pythonhosted.org/packages/78/6b/414985c629426eb2e7ff391ccbd744c090ecb775b3fb011f172e7335301d/awkward1-0.4.5-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "efbf386d4dffa5c91911f3ce159a9875", "sha256": "f1d9a11928ca0197b732f043708bbcf3b39ae90627efaa2eb91eba975fc888df" }, "downloads": -1, "filename": "awkward1-0.4.5-cp35-cp35m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "efbf386d4dffa5c91911f3ce159a9875", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6232792, "upload_time": "2020-11-24T21:57:10", "upload_time_iso_8601": "2020-11-24T21:57:10.836793Z", "url": "https://files.pythonhosted.org/packages/51/ce/4c5a4a5c8161527765a0d4843296b412b9105b3475ba068d3f2d79cf283a/awkward1-0.4.5-cp35-cp35m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d9e7dd2cdce53e8373ea9625158d4c29", "sha256": "f7bee0f7c4415684f8f194928368059c126f9fe0aa1303b8729b9c2601aca48d" }, "downloads": -1, "filename": "awkward1-0.4.5-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "d9e7dd2cdce53e8373ea9625158d4c29", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7317978, "upload_time": "2020-11-24T21:42:48", "upload_time_iso_8601": "2020-11-24T21:42:48.012761Z", "url": "https://files.pythonhosted.org/packages/35/86/925debcada7357157e6d288f5251674680e2c56b378ff824bff2acde4a57/awkward1-0.4.5-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4ab75ff2ad4fc27196aeaf52db69556d", "sha256": "36284748e661d5812cbb862781959b34ae02c6e2f175ce5de76fd4a30566af50" }, "downloads": -1, "filename": "awkward1-0.4.5-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "4ab75ff2ad4fc27196aeaf52db69556d", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9823048, "upload_time": "2020-11-24T21:43:34", "upload_time_iso_8601": "2020-11-24T21:43:34.905995Z", "url": "https://files.pythonhosted.org/packages/41/5d/46f0f3edd804ae9d69ff066a8165fd991719c9d3f54c6c34bf3cb6fe1ab1/awkward1-0.4.5-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7460a1c60ec581f6c3e74f96b87629ae", "sha256": "8e90caac8ff69d94650aa505331a8eb518ebc983b766c02e989c8a47738e097e" }, "downloads": -1, "filename": "awkward1-0.4.5-cp36-cp36m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "7460a1c60ec581f6c3e74f96b87629ae", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5923855, "upload_time": "2020-11-24T21:53:52", "upload_time_iso_8601": "2020-11-24T21:53:52.613005Z", "url": "https://files.pythonhosted.org/packages/6e/1c/581f3992946908de8f1580b32ee76d381220b40c5f03cce6bea22ede9378/awkward1-0.4.5-cp36-cp36m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a907aea609e121d806a09918773ea78c", "sha256": "9410f7aa92d5fef9074150b4ff295fe23daf430c488f3b46b438ab1d44966952" }, "downloads": -1, "filename": "awkward1-0.4.5-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "a907aea609e121d806a09918773ea78c", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5885297, "upload_time": "2020-11-24T21:48:25", "upload_time_iso_8601": "2020-11-24T21:48:25.779487Z", "url": "https://files.pythonhosted.org/packages/e5/d2/eb656563b502158af9c322933b99a9507d35103395948011d23b07a724d1/awkward1-0.4.5-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fdeda40f54b50b441c20f5a2aee3348c", "sha256": "27dd38e45878b36ea13a7e920ef1b542a89544062ea543ab85f1d34b251e82cc" }, "downloads": -1, "filename": "awkward1-0.4.5-cp36-cp36m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "fdeda40f54b50b441c20f5a2aee3348c", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6232760, "upload_time": "2020-11-24T21:57:12", "upload_time_iso_8601": "2020-11-24T21:57:12.752573Z", "url": "https://files.pythonhosted.org/packages/9b/9c/add739f2121612324c3f7bb274720d865c507e2fce9854e8869c42db7c64/awkward1-0.4.5-cp36-cp36m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d4622d1c2bddaa535df716f25e43a6a8", "sha256": "2652f6eafc1a5438ef7d150cdddd93078c3992161827811207790d52b701581d" }, "downloads": -1, "filename": "awkward1-0.4.5-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "d4622d1c2bddaa535df716f25e43a6a8", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7317921, "upload_time": "2020-11-24T21:47:41", "upload_time_iso_8601": "2020-11-24T21:47:41.830830Z", "url": "https://files.pythonhosted.org/packages/cc/9b/55d28eb1e0cbdea6576361b1742cd7d08e802868901c0ae20581d95e1688/awkward1-0.4.5-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "300c36afb08afd7f4082b5eb463955d2", "sha256": "ba5f3ef00b205557311e9b7b49e467a0074f55953330b5fb26a382b2137fe0ef" }, "downloads": -1, "filename": "awkward1-0.4.5-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "300c36afb08afd7f4082b5eb463955d2", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9822958, "upload_time": "2020-11-24T21:41:11", "upload_time_iso_8601": "2020-11-24T21:41:11.575052Z", "url": "https://files.pythonhosted.org/packages/a0/c2/02ccb7355561bb0ac99802414062d1808dcb33092e99d8a4a954e577bc99/awkward1-0.4.5-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "10be11c5f592e7ae4a3ec68b33164067", "sha256": "f2f35e9353aa34280f13f245ebcd3a67ac49fe9b93af096648540147b4dd51a5" }, "downloads": -1, "filename": "awkward1-0.4.5-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "10be11c5f592e7ae4a3ec68b33164067", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5878118, "upload_time": "2020-11-24T21:31:39", "upload_time_iso_8601": "2020-11-24T21:31:39.921619Z", "url": "https://files.pythonhosted.org/packages/63/85/5973a4460e7fd2524567fb447005dc817271f4b6cfe243adfcdd098ade0d/awkward1-0.4.5-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9bb70b9a0ad716a901ed06db331bbb91", "sha256": "d99e51359782c9945c59a1ba23e96788b6fa1110eccec5b83ee50bfc496e40a0" }, "downloads": -1, "filename": "awkward1-0.4.5-cp37-cp37m-manylinux1_i686.whl", "has_sig": false, "md5_digest": "9bb70b9a0ad716a901ed06db331bbb91", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5927293, "upload_time": "2020-11-24T21:53:54", "upload_time_iso_8601": "2020-11-24T21:53:54.250657Z", "url": "https://files.pythonhosted.org/packages/1e/9b/5cd26ca5bb097f6616db868f2a136de0e22d4fbb1993512370498e8d6ca0/awkward1-0.4.5-cp37-cp37m-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e7555813684b0109cb0d8c16e19deecd", "sha256": "16fc57b13a7171524eeef09453e0833ae9fa8add62374b4f097352b9a0bf989e" }, "downloads": -1, "filename": "awkward1-0.4.5-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "e7555813684b0109cb0d8c16e19deecd", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5883402, "upload_time": "2020-11-24T21:48:27", "upload_time_iso_8601": "2020-11-24T21:48:27.313250Z", "url": "https://files.pythonhosted.org/packages/fb/e3/c6e4586c59fea76d29e39a5ac20dd1746c7e02f7b41102355879d80a284c/awkward1-0.4.5-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bb17f702a5dda761de1b3e33f4bfd662", "sha256": "1977e4bb5ff68746d4a08e9eae8bacd7cc6ea3328cde7a0f8ced0df101b1f2d6" }, "downloads": -1, "filename": "awkward1-0.4.5-cp37-cp37m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "bb17f702a5dda761de1b3e33f4bfd662", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6231488, "upload_time": "2020-11-24T21:57:14", "upload_time_iso_8601": "2020-11-24T21:57:14.626595Z", "url": "https://files.pythonhosted.org/packages/87/85/16f35570fd3b3c9fdc3a1f6f0d3800348c11b802535d3e8c6426c728c347/awkward1-0.4.5-cp37-cp37m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0ef976827d825f4ae5131861957cdd02", "sha256": "a4f6e9f1fee5df10b5c4f56d7a74f0bf3edcc4a337fe8759f44b6339fa4067d7" }, "downloads": -1, "filename": "awkward1-0.4.5-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "0ef976827d825f4ae5131861957cdd02", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7318002, "upload_time": "2020-11-24T21:44:12", "upload_time_iso_8601": "2020-11-24T21:44:12.929358Z", "url": "https://files.pythonhosted.org/packages/ca/33/b5767faad3b6a2d2253bc46aecf7777ce29f357fdc47cea4a05dbbbd68ea/awkward1-0.4.5-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5a21fa67a2f11741dd5ceaa5f2d0b464", "sha256": "23be6fc0010c5c460b6c5dd03a04cd6bcab69272e3ad292a87228dd455cb2c2f" }, "downloads": -1, "filename": "awkward1-0.4.5-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "5a21fa67a2f11741dd5ceaa5f2d0b464", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9822939, "upload_time": "2020-11-24T21:48:47", "upload_time_iso_8601": "2020-11-24T21:48:47.135939Z", "url": "https://files.pythonhosted.org/packages/a0/79/7a99b9e2e878ed1d670e57430f7f147c7f00f8f2f30d74231ab03d24411e/awkward1-0.4.5-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "60ed8eccc15e341f2e731668920ac87c", "sha256": "6fd4685eb7a45141e1ee8efce1ec6b069719eb93b1cffc4a30524198c8bab00a" }, "downloads": -1, "filename": "awkward1-0.4.5-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "60ed8eccc15e341f2e731668920ac87c", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5959055, "upload_time": "2020-11-24T21:31:36", "upload_time_iso_8601": "2020-11-24T21:31:36.957945Z", "url": "https://files.pythonhosted.org/packages/7b/cd/33c4d66fe4ad62ed427ff5101e9d4a762bf85c74e36155b8e5e43f05a560/awkward1-0.4.5-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "89a6d7537bbe3410dfa796e5612d8ca0", "sha256": "ec561869380f46bf531e5a0eaf35e753386547548b4b57a19b66ccf5fae314c5" }, "downloads": -1, "filename": "awkward1-0.4.5-cp38-cp38-manylinux1_i686.whl", "has_sig": false, "md5_digest": "89a6d7537bbe3410dfa796e5612d8ca0", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5890944, "upload_time": "2020-11-24T21:53:55", "upload_time_iso_8601": "2020-11-24T21:53:55.680309Z", "url": "https://files.pythonhosted.org/packages/98/9e/5cabd120437c6631f86c1ba59f40732fa69dd5e8322e1536bf7896d5d4be/awkward1-0.4.5-cp38-cp38-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "613ba4886d0b3db99750c3da73295bfe", "sha256": "b9b38f1c78ebb4f8accb54b309872fa6293672a2c6a936530cfa493a5a91d963" }, "downloads": -1, "filename": "awkward1-0.4.5-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "613ba4886d0b3db99750c3da73295bfe", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5827798, "upload_time": "2020-11-24T21:48:28", "upload_time_iso_8601": "2020-11-24T21:48:28.892259Z", "url": "https://files.pythonhosted.org/packages/92/f2/b49ce66e7e828a5ceaa3783dd0738a399fb88985280e23d0972c08dcfb15/awkward1-0.4.5-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c018a23d23620db76fb5f3e50fdaa280", "sha256": "37df18ce182cbce9ac0f84f737428a9c2c5024f458f5a1582ac3270fb9521995" }, "downloads": -1, "filename": "awkward1-0.4.5-cp38-cp38-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "c018a23d23620db76fb5f3e50fdaa280", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6249366, "upload_time": "2020-11-24T21:57:16", "upload_time_iso_8601": "2020-11-24T21:57:16.445941Z", "url": "https://files.pythonhosted.org/packages/aa/ec/58e8c1a5ce407befd48b576eead84ba1ae1a4a0e5458224a02657298f31d/awkward1-0.4.5-cp38-cp38-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "add64f28c7ecd88e87917325c800dc05", "sha256": "0abe01d88e9b2d90950a2939bacc6ca352864a53e87d5129865f4576412d767a" }, "downloads": -1, "filename": "awkward1-0.4.5-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "add64f28c7ecd88e87917325c800dc05", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7311271, "upload_time": "2020-11-24T21:52:32", "upload_time_iso_8601": "2020-11-24T21:52:32.115845Z", "url": "https://files.pythonhosted.org/packages/c2/81/75ec7c3ef035d72a23ceb3012e0704adf4b4d769477b6b309aed55060af5/awkward1-0.4.5-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ab47201ce24bea172c243bac7c58a69e", "sha256": "75bc3296491236b27ec3b41dde6300927253e7d2b314fb50eb69ed522d0651f9" }, "downloads": -1, "filename": "awkward1-0.4.5-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "ab47201ce24bea172c243bac7c58a69e", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9798822, "upload_time": "2020-11-24T21:51:22", "upload_time_iso_8601": "2020-11-24T21:51:22.615657Z", "url": "https://files.pythonhosted.org/packages/3e/e5/d6f3fc5496cf85c4a66a716c830d595953e484f18c9d47c1f9263cc2d9a1/awkward1-0.4.5-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c8073691416353541ad5f419aee21645", "sha256": "18aca87b95cb5b3d188455fe50d5944a3f86a3f03f8899e0d1bf3be88e91dd5c" }, "downloads": -1, "filename": "awkward1-0.4.5-cp39-cp39-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "c8073691416353541ad5f419aee21645", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5959024, "upload_time": "2020-11-24T21:32:18", "upload_time_iso_8601": "2020-11-24T21:32:18.920697Z", "url": "https://files.pythonhosted.org/packages/7d/73/d1affe9930a9d0d6750f1b6db79600749f126cab1786048d16a44ff17c8c/awkward1-0.4.5-cp39-cp39-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "516c9e078596c5ea0fcaa212220ffb04", "sha256": "259b0f6ed461b444ec60ccd965d18c216342276ba17fc316d99910aecc2b3690" }, "downloads": -1, "filename": "awkward1-0.4.5-cp39-cp39-manylinux1_i686.whl", "has_sig": false, "md5_digest": "516c9e078596c5ea0fcaa212220ffb04", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5886781, "upload_time": "2020-11-24T21:53:57", "upload_time_iso_8601": "2020-11-24T21:53:57.162768Z", "url": "https://files.pythonhosted.org/packages/29/a5/a04769f4bf1c942efaa8f85171c87a4656a0a8f3ea960987de8454d6e10d/awkward1-0.4.5-cp39-cp39-manylinux1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d60c0e39578f9270a090c36d7697d395", "sha256": "f837de85fd2d26d8b94d567a19048c03f734ee24b13380b6249ab3e852b8a49b" }, "downloads": -1, "filename": "awkward1-0.4.5-cp39-cp39-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "d60c0e39578f9270a090c36d7697d395", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 5826970, "upload_time": "2020-11-24T21:48:30", "upload_time_iso_8601": "2020-11-24T21:48:30.521314Z", "url": "https://files.pythonhosted.org/packages/22/f1/c449475cea0d025bf10a6640839e04804c05ab02f10e6859c1436c9c6d4d/awkward1-0.4.5-cp39-cp39-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9b93e2c0969e62b7c810825fdc4be39e", "sha256": "55da391504a50e923c24f552286d61e285da7276576812e42b7f8655fb17e618" }, "downloads": -1, "filename": "awkward1-0.4.5-cp39-cp39-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "9b93e2c0969e62b7c810825fdc4be39e", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 6248295, "upload_time": "2020-11-24T21:57:18", "upload_time_iso_8601": "2020-11-24T21:57:18.671103Z", "url": "https://files.pythonhosted.org/packages/be/83/856d9228a98d20afd0d66e0e2acd2db70581b9c59334ae2b1bf9b5184218/awkward1-0.4.5-cp39-cp39-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8c117fb45321a4cded31e277ba223870", "sha256": "52b02c3f29fece982f97f2fc8fd3ee6149846bcc5b314886f9736f8e508bb47a" }, "downloads": -1, "filename": "awkward1-0.4.5-cp39-cp39-win32.whl", "has_sig": false, "md5_digest": "8c117fb45321a4cded31e277ba223870", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 7313216, "upload_time": "2020-11-24T21:58:41", "upload_time_iso_8601": "2020-11-24T21:58:41.826648Z", "url": "https://files.pythonhosted.org/packages/ed/0f/108fcc6c8b73e4336140f45d088bbe67b25dbd2f6b4dc7da86c00a6b6b3d/awkward1-0.4.5-cp39-cp39-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "22985b157d134f66b33806d85adfbf90", "sha256": "1860d885c822332db60f6b7f94c2f4f60d2f59736eb4fbaa09302dd53467329d" }, "downloads": -1, "filename": "awkward1-0.4.5-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "22985b157d134f66b33806d85adfbf90", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9798680, "upload_time": "2020-11-24T21:48:00", "upload_time_iso_8601": "2020-11-24T21:48:00.497915Z", "url": "https://files.pythonhosted.org/packages/e0/72/c9f8d59f25983b86f2ede1abe70782969e6c93011cad2de20b1eba7e3a4a/awkward1-0.4.5-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7fd5d5ad430d1f2143918b647354f7fd", "sha256": "8c786d1641343e9887c21794f9a3bf51716b00ed3b182491f1acbc9e389b31bb" }, "downloads": -1, "filename": "awkward1-0.4.5.tar.gz", "has_sig": false, "md5_digest": "7fd5d5ad430d1f2143918b647354f7fd", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 794398, "upload_time": "2020-11-24T21:57:20", "upload_time_iso_8601": "2020-11-24T21:57:20.114810Z", "url": "https://files.pythonhosted.org/packages/95/97/05fe8f2ab72f4201385c972b06329a77399eee3e735a8adef690b61f0392/awkward1-0.4.5.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "6bc1bb0bdd8879f19f5ca1f5192fb8f9", "sha256": "36e6cd64faf3246da030fa7a088ca23f60a5683ef57ab1068f22665599a578df" }, "downloads": -1, "filename": "awkward1-1.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "6bc1bb0bdd8879f19f5ca1f5192fb8f9", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 4663, "upload_time": "2020-12-05T18:32:37", "upload_time_iso_8601": "2020-12-05T18:32:37.822309Z", "url": "https://files.pythonhosted.org/packages/80/16/54835de4e8b154eee13fecc32f4ef22ee2fca734a01d74a63e12e367686c/awkward1-1.0.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f44c6acb4c165d5f468a4322882f2acc", "sha256": "4e51fed29c3a3618cdc07719ff3d1cdd1d567643f9629532bd7d965f9fb76c50" }, "downloads": -1, "filename": "awkward1-1.0.0.tar.gz", "has_sig": false, "md5_digest": "f44c6acb4c165d5f468a4322882f2acc", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 817164, "upload_time": "2020-12-05T18:32:39", "upload_time_iso_8601": "2020-12-05T18:32:39.024896Z", "url": "https://files.pythonhosted.org/packages/05/e1/de4607482cd18eb43bfb4c7381571ad0928f7ebf0ed5815f93b21cc5e46a/awkward1-1.0.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.0rc1": [ { "comment_text": "", "digests": { "md5": "d306306f2de3ee0c99ed64165e937f81", "sha256": "7033d9f87110499a8c2c83f3c4f260148548213e4c8d26ba30e98c10696f5bee" }, "downloads": -1, "filename": "awkward1-1.0.0rc1-py3-none-any.whl", "has_sig": false, "md5_digest": "d306306f2de3ee0c99ed64165e937f81", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 4699, "upload_time": "2020-12-01T00:48:55", "upload_time_iso_8601": "2020-12-01T00:48:55.923913Z", "url": "https://files.pythonhosted.org/packages/32/23/5f950100f27b3c5c193bc22d11f4027e824ff64b3482ad7cfeaa112255ce/awkward1-1.0.0rc1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "82e5775faf53679020adcc013abc7141", "sha256": "0aaefd53f640ecece3c61fad892e828965923254edaa4153d4d3a7b3ab970e71" }, "downloads": -1, "filename": "awkward1-1.0.0rc1.tar.gz", "has_sig": false, "md5_digest": "82e5775faf53679020adcc013abc7141", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 812653, "upload_time": "2020-12-01T00:48:57", "upload_time_iso_8601": "2020-12-01T00:48:57.496789Z", "url": "https://files.pythonhosted.org/packages/23/f5/6ca2a65603ab581db46b48507597a047e2ea50c22da2fcfbd0549dddb8a5/awkward1-1.0.0rc1.tar.gz", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "6bc1bb0bdd8879f19f5ca1f5192fb8f9", "sha256": "36e6cd64faf3246da030fa7a088ca23f60a5683ef57ab1068f22665599a578df" }, "downloads": -1, "filename": "awkward1-1.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "6bc1bb0bdd8879f19f5ca1f5192fb8f9", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 4663, "upload_time": "2020-12-05T18:32:37", "upload_time_iso_8601": "2020-12-05T18:32:37.822309Z", "url": "https://files.pythonhosted.org/packages/80/16/54835de4e8b154eee13fecc32f4ef22ee2fca734a01d74a63e12e367686c/awkward1-1.0.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f44c6acb4c165d5f468a4322882f2acc", "sha256": "4e51fed29c3a3618cdc07719ff3d1cdd1d567643f9629532bd7d965f9fb76c50" }, "downloads": -1, "filename": "awkward1-1.0.0.tar.gz", "has_sig": false, "md5_digest": "f44c6acb4c165d5f468a4322882f2acc", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 817164, "upload_time": "2020-12-05T18:32:39", "upload_time_iso_8601": "2020-12-05T18:32:39.024896Z", "url": "https://files.pythonhosted.org/packages/05/e1/de4607482cd18eb43bfb4c7381571ad0928f7ebf0ed5815f93b21cc5e46a/awkward1-1.0.0.tar.gz", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }