{ "info": { "author": "", "author_email": "", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Console", "Intended Audience :: Developers", "Intended Audience :: End Users/Desktop", "License :: OSI Approved :: GNU General Public License v3 (GPLv3)", "Operating System :: MacOS :: MacOS X", "Operating System :: POSIX", "Programming Language :: C", "Programming Language :: Python :: 2", "Programming Language :: Python :: 3", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": "Stand-alone GNU readline module\n===============================\n\nFirst... STOP\n-------------\n\nConsider this: do you really need this package in 2019? You typically don't if\n\n- you use the Python provided by a standard Linux distribution like Ubuntu\n Debian, CentOS, etc. *(It already uses the proper readline.)*\n- you run **Windows**\n *(It won't work! Try* `pyreadline`_ *instead.)*\n- you use the Python provided by **Homebrew** or Fink on macOS\n *(It has real readline already!)*\n- you want it for `IPython`_\n *(It switched to* `prompt_toolkit`_ *in version 5.0.)*\n- you use a Python distribution like Anaconda or Enthought / Canopy\n *(Again, real readline.)*\n\nYou might need it if\n\n- you use Python provided by MacPorts or the system on macOS\n *(Python compiled against libedit.)*\n- you use a Python distribution like ActivePython on Linux or macOS\n *(This used to ship without readline.)*\n- you want to get the latest bug fixes and features in either the readline\n library or its Python module *(Typically when stuck on older systems.)*\n\nStill interested?\n-----------------\n\nSome platforms, such as macOS, do not ship with `GNU readline`_ installed.\nThe readline extension module in the standard library of Mac \"system\" Python\nuses NetBSD's `editline`_ (libedit) library instead, which is a readline\nreplacement with a less restrictive software license.\n\nAs the alternatives to GNU readline do not have fully equivalent functionality,\nit is useful to add proper readline support to these platforms. This module\nachieves this by bundling the standard Python readline module with the GNU\nreadline source code, which is compiled and statically linked to it. The end\nresult is a package which is simple to install and requires no extra shared\nlibraries.\n\nThe module is called *gnureadline* so as not to clash with the readline module\nin the standard library. This keeps polite installers such as `pip`_ happy and\nis sufficient for shells such as `IPython`_. **Please take note that IPython\ndoes not depend on gnureadline anymore since version 5.0 as it now uses**\n`prompt_toolkit`_ **instead**.\n\nIn order to use this module in the standard Python shell it has to be installed\nwith the more impolite easy_install from `setuptools`_. **It is recommended that\nyou use pip >= 8.0 together with setuptools >= 0.8 to install gnureadline.**\nThis will download a binary wheel from PyPI if available, thereby bypassing the\nneed for compilation and its slew of potential problems (especially on macOS).\n\nThe module can be used with both Python 2.x and 3.x, and has been tested with\nPython versions 2.6, 2.7, and 3.2 to 3.8. The first three numbers of the module\nversion reflect the version of the underlying GNU readline library (major,\nminor and patch level), while any additional fourth number distinguishes\ndifferent module updates based on the same readline library.\n\nThis module is usually unnecessary on Linux and other Unix systems with default\nreadline support. An exception is if you have a Python distribution that does\nnot include GNU readline due to licensing restrictions (such as ActiveState's\n`ActivePython`_). If you are using Windows, which also ships without GNU\nreadline, you might want to consider using the `pyreadline`_ module instead,\nwhich is a readline replacement written in pure Python that interacts with the\nWindows clipboard.\n\nThe latest development version is available from the `GitHub repository`_.\n\n.. _GNU readline: http://www.gnu.org/software/readline/\n.. _editline: http://www.thrysoee.dk/editline/\n.. _pip: http://www.pip-installer.org/\n.. _IPython: http://ipython.org/\n.. _prompt_toolkit: http://python-prompt-toolkit.readthedocs.io/en/stable/\n.. _setuptools: https://pypi.python.org/pypi/setuptools\n.. _ActivePython: http://community.activestate.com/faq/why-doesnt-activepython-u\n.. _pyreadline: http://pypi.python.org/pypi/pyreadline\n.. _GitHub repository: http://github.com/ludwigschwardt/python-gnureadline\n\n\nHistory\n=======\n\n8.0.0 (2019-07-10)\n------------------\n\n* Uses Python 3.7.3 readline.c (commit ef10f88, 2019-03-20), also OK for 3.8\n* Uses Python 3.6.8 readline.c (commit 25555e0, 2018-12-08)\n* Uses Python 3.4.4 readline.c (commit 7462b64, 2015-11-02)\n* Uses Python 2.7.16 readline.c (commit 89b5ea2, 2018-12-19)\n* Updated to build against readline 8.0\n\n6.3.8 (2017-10-20)\n------------------\n\n* #42, #44: Address compiler issues (avoid Cygwin, fix multi-arch on gcc)\n* #40: Make GPLv3 license explicit\n* #39: Look for bash shell in more places\n* Uses Python 2.x readline.c from hg 2.7 branch (95814:192f9efe4a38)\n* Uses Python 3.x readline.c from hg 3.4 / 3.5 branch (95813:ec6ed10d611e)\n* Updated to build against readline 6.3 (patch-level 8)\n\n6.3.3 (2014-04-08)\n------------------\n\n* Major rework of OS X build process (detect arches, no custom flags)\n* #20, #22, #28: Various issues addressed by new streamlined build\n* #28: Use $CC or cc to compile libreadline instead of default gcc\n* #35: Workaround for clang from Xcode 5.1 and Mac OS X 10.9.2\n* Uses Python 3.4 readline.c from hg 3.4 branch (89086:3110fb3095a2)\n* Updated to build against readline 6.3 (patch-level 3)\n\n6.2.5 (2014-02-19)\n------------------\n\n* Renamed module to *gnureadline* to improve installation with pip\n* #23, #25-27, #29-33: Tweaks and package reworked to gnureadline\n* Uses Python 2.x readline.c from hg 2.7 branch (89084:6b10943a5916)\n* Uses Python 3.x readline.c from hg 3.3 branch (89085:6adac0d9b933)\n* Updated to build against readline 6.2 (patch-level 5)\n\n6.2.4.1 (2012-10-22)\n--------------------\n\n* #21: Fixed building on Python.org 3.3 / Mac OS 10.8\n\n6.2.4 (2012-10-17)\n------------------\n\n* #15: Improved detection of compilers before Xcode 4.3\n* Uses Python 3.x readline.c from v3.3.0 tag (changeset 73997)\n* Updated to build against readline 6.2 (patch-level 4)\n\n6.2.2 (2012-02-24)\n------------------\n\n* #14: Fixed compilation with Xcode 4.3 on Mac OS 10.7\n* Updated to build against readline 6.2 (patch-level 2)\n\n6.2.1 (2011-08-31)\n------------------\n\n* #10: Fixed '_emacs_meta_keymap' missing symbol on Mac OS 10.7\n* #7: Fixed SDK version check to work with Mac OS 10.7 and later\n* Uses Python 2.x readline.c from release27-maint branch (r87358)\n* Uses Python 3.x readline.c from release32-maint branch (r88446)\n\n6.2.0 (2011-06-02)\n------------------\n\n* #5: Removed '-arch ppc' on Mac OS 10.6, as Snow Leopard supports Intel only\n* Updated to build against readline 6.2 (patch-level 1)\n\n6.1.0 (2010-09-20)\n------------------\n\n* Changed version number to reflect readline version instead of Python version\n* #4: Updated to build against readline 6.1 (patch-level 2)\n* #2: Python 3 support\n* Uses Python 2.x readline.c from release27-maint branch (r83672)\n* Uses Python 3.x readline.c from r32a2 tag (r84541)\n* Source code moved to GitHub\n* Additional maintainer: Sridhar Ratnakumar\n\n2.6.4 (2009-11-26)\n------------------\n\n* Added -fPIC to compiler flags to fix linking error on 64-bit Ubuntu\n* Enabled all readline functionality specified in pyconfig.h macros\n* Uses readline.c from Python svn trunk (r75725), which followed 2.6.4 release\n* Patched readline.c to replace Py_XDECREF calls with the safer Py_CLEAR\n* Fixed compilation error on Mac OS 10.4 with XCode older than version 2.4\n\n2.6.1 (2009-11-18)\n------------------\n\n* Updated package to work with Mac OS 10.6 (Snow Leopard), which ships with\n Python 2.6.1\n* Uses readline.c from Python 2.6.1 release\n* Backported \"spurious trailing space\" bugfix from Python svn trunk (see e.g.\n https://bugs.launchpad.net/python/+bug/470824 for details on bug)\n* Updated to build against readline 6.0 (patch-level 4)\n* Now builds successfully on Linux (removed Mac-specific flags in this case),\n and still supports Mac OS 10.4 and 10.5\n\n2.5.1 (2008-05-28)\n------------------\n\n* Updated package to work with Mac OS 10.5 (Leopard), which ships with Python\n 2.5.1\n* Uses readline.c from Python 2.5.1 release\n* Updated to build against readline 5.2 (patch-level 12)\n* New maintainer: Ludwig Schwardt\n\n2.4.2 (2005-12-26)\n------------------\n\n* Original package by Bob Ippolito, supporting Python 2.3 / 2.4 on Mac OS 10.3\n (Panther) and 10.4 (Tiger)\n* Builds against readline 5.1", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://github.com/ludwigschwardt/python-gnureadline", "keywords": "", "license": "", "maintainer": "Ludwig Schwardt, Sridhar Ratnakumar", "maintainer_email": "ludwig.schwardt@gmail.com, srid@srid.ca", "name": "gnureadline", "package_url": "https://pypi.org/project/gnureadline/", "platform": "", "project_url": "https://pypi.org/project/gnureadline/", "project_urls": { "Homepage": "http://github.com/ludwigschwardt/python-gnureadline" }, "release_url": "https://pypi.org/project/gnureadline/8.0.0/", "requires_dist": null, "requires_python": "", "summary": "The standard Python readline extension statically linked against the GNU readline library.", "version": "8.0.0" }, "last_serial": 5519970, "releases": { "6.2.5": [ { "comment_text": "Snow Leopard System Python (32 + 64 bit)", "digests": { "md5": "7df298c0afb374d6e9f5f56f241e8f2d", "sha256": "55dfe8ab762d49a5dd9888073fd1215d32bcd77b882828595742f58114cc048c" }, "downloads": -1, "filename": "gnureadline-6.2.5-cp26-none-macosx_10_6_universal.whl", "has_sig": true, "md5_digest": "7df298c0afb374d6e9f5f56f241e8f2d", "packagetype": "bdist_wheel", "python_version": "cp26", "requires_python": null, "size": 219502, "upload_time": "2014-02-20T15:03:20", "url": "https://files.pythonhosted.org/packages/5b/08/7a102d2e097543ddc212fbfbf4cc347bdfbf98a4ca8892077904e30c9b4f/gnureadline-6.2.5-cp26-none-macosx_10_6_universal.whl" }, { "comment_text": "Anaconda Python (64-bit only)", "digests": { "md5": "de49b91c14bf1e4f2c57716881250ab6", "sha256": "5a1cf8a8e8f56799fcb700729cfc84b16cfa195c73c7199dc9d1270a0cc5df68" }, "downloads": -1, "filename": "gnureadline-6.2.5-cp27-none-macosx_10_5_x86_64.whl", "has_sig": true, "md5_digest": "de49b91c14bf1e4f2c57716881250ab6", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 122611, "upload_time": "2014-02-21T10:31:29", "url": "https://files.pythonhosted.org/packages/c7/12/6f88deb0325e5ac161b2e962597a04838ccd8848ddfbcc3b120c1d4fe6ff/gnureadline-6.2.5-cp27-none-macosx_10_5_x86_64.whl" }, { "comment_text": "Python.org Python (32 + 64 bit)", "digests": { "md5": "f7f239845898d0eb6f24c86dd3c53e74", "sha256": "0f93db1ed8d87809d92dcdd62aa9beacb6bfcc2cf2398cb10a337bc6b655da9a" }, "downloads": -1, "filename": "gnureadline-6.2.5-cp27-none-macosx_10_6_intel.whl", "has_sig": true, "md5_digest": "f7f239845898d0eb6f24c86dd3c53e74", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 245054, "upload_time": "2014-02-21T10:29:07", "url": "https://files.pythonhosted.org/packages/51/0c/fe770455b96d987387c46e9869034f6a1087a63a2ee8b813e531bac4f74a/gnureadline-6.2.5-cp27-none-macosx_10_6_intel.whl" }, { "comment_text": "Lion System Python (32 + 64 bit)", "digests": { "md5": "2314fda9e2dc0d5223bc31cabfeaa6ac", "sha256": "2eddbe8311f0fd7f5667e8a43d41754a4836d6561955638b999349bb1189d054" }, "downloads": -1, "filename": "gnureadline-6.2.5-cp27-none-macosx_10_7_intel.whl", "has_sig": true, "md5_digest": "2314fda9e2dc0d5223bc31cabfeaa6ac", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 237453, "upload_time": "2014-02-20T14:57:18", "url": "https://files.pythonhosted.org/packages/de/f6/3abbdef159e37354877ec3afe11cbd0df671b8ab1f08314622189c405cbe/gnureadline-6.2.5-cp27-none-macosx_10_7_intel.whl" }, { "comment_text": "Mavericks System Python (32 + 64 bit)", "digests": { "md5": "b06ef1b43119032de8bb8e0c9ac873d2", "sha256": "282bbc6578351a4e020f49eb1829e06dd62ecacd67efbc795a8473fe2476c1b9" }, "downloads": -1, "filename": "gnureadline-6.2.5-cp27-none-macosx_10_9_intel.whl", "has_sig": true, "md5_digest": "b06ef1b43119032de8bb8e0c9ac873d2", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 239425, "upload_time": "2014-02-20T11:27:04", "url": "https://files.pythonhosted.org/packages/8d/87/89b6dfaca4df54b6034435de677040df08c4116a6481b5ccbde5c93c4330/gnureadline-6.2.5-cp27-none-macosx_10_9_intel.whl" }, { "comment_text": "Mavericks Other Python (64-bit only)", "digests": { "md5": "35e0d434af7f4dd43e8b116f3dd784fa", "sha256": "1541aa32b062aea683da359c718c38d07a3fed3718cc9603e341d43a4d5c6009" }, "downloads": -1, "filename": "gnureadline-6.2.5-cp27-none-macosx_10_9_x86_64.whl", "has_sig": true, "md5_digest": "35e0d434af7f4dd43e8b116f3dd784fa", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 123604, "upload_time": "2014-02-20T11:42:01", "url": "https://files.pythonhosted.org/packages/6b/da/07e016352b2b09621f87deaf5fc3c51acdddbf5bdeb1f762d3c24386f763/gnureadline-6.2.5-cp27-none-macosx_10_9_x86_64.whl" }, { "comment_text": "Anaconda Python3 (64-bit only)", "digests": { "md5": "99dabd06181d3c3213d583cbd6c3f276", "sha256": "637c4de5f588fcae744c7590d155c74d5d7073d96d78a89fb62d42bd906b777b" }, "downloads": -1, "filename": "gnureadline-6.2.5-cp33-cp33m-macosx_10_5_x86_64.whl", "has_sig": true, "md5_digest": "99dabd06181d3c3213d583cbd6c3f276", "packagetype": "bdist_wheel", "python_version": "cp33", "requires_python": null, "size": 122841, "upload_time": "2014-02-21T10:32:21", "url": "https://files.pythonhosted.org/packages/04/a3/3f81cd22eaae02b296d3dfe41b1a2530fdb7c7eba63624ad112829ce8560/gnureadline-6.2.5-cp33-cp33m-macosx_10_5_x86_64.whl" }, { "comment_text": "Python.org Python3 (32 + 64 bit)", "digests": { "md5": "9010232a552ab85aded26e0419c55525", "sha256": "b2fc57a8be85b13113f5e23ddef60b836f948973035ca611847d373e5622fb49" }, "downloads": -1, "filename": "gnureadline-6.2.5-cp33-cp33m-macosx_10_6_intel.whl", "has_sig": true, "md5_digest": "9010232a552ab85aded26e0419c55525", "packagetype": "bdist_wheel", "python_version": "cp33", "requires_python": null, "size": 245620, "upload_time": "2014-02-21T10:30:17", "url": "https://files.pythonhosted.org/packages/05/d4/4068754fe06f7e59d3532da309a5dc6ec7e0be7a50b6ed91bbdb15a43e6d/gnureadline-6.2.5-cp33-cp33m-macosx_10_6_intel.whl" }, { "comment_text": "Mavericks Other Python3 (64-bit only)", "digests": { "md5": "dde1da228a986cf16b1e8776cce27cdc", "sha256": "0c2beecdbebb3272b6a840694a0e04b65f6b84ac19805918a214d8d3037a6404" }, "downloads": -1, "filename": "gnureadline-6.2.5-cp33-cp33m-macosx_10_9_x86_64.whl", "has_sig": true, "md5_digest": "dde1da228a986cf16b1e8776cce27cdc", "packagetype": "bdist_wheel", "python_version": "cp33", "requires_python": null, "size": 123900, "upload_time": "2014-02-20T12:09:20", "url": "https://files.pythonhosted.org/packages/f7/de/2a0200c15179c98e504dc5da5c61969bc7641f3616558bf0b98e631c41f7/gnureadline-6.2.5-cp33-cp33m-macosx_10_9_x86_64.whl" }, { "comment_text": "Snow Leopard System Python (32 + 64 bit)", "digests": { "md5": "d0d080b311c052d49f1289185c95fda7", "sha256": "c9b40e6abb01233dfeaff22c6223a08ddd945bbbfd9d5578c85c35e311175eca" }, "downloads": -1, "filename": "gnureadline-6.2.5-py2.6-macosx-10.6-universal.egg", "has_sig": true, "md5_digest": "d0d080b311c052d49f1289185c95fda7", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 217340, "upload_time": "2014-02-20T15:03:32", "url": "https://files.pythonhosted.org/packages/ad/72/62606971a1187150ded021eeabebc25df37d1a73da22cad68d6de99c0f13/gnureadline-6.2.5-py2.6-macosx-10.6-universal.egg" }, { "comment_text": "Anaconda Python (64-bit only)", "digests": { "md5": "1ff3bc0b28363f0003d253a3429d6048", "sha256": "7cab8c82c1191906a4939071394609527f520af0ddea983ebb41b49bb31281d1" }, "downloads": -1, "filename": "gnureadline-6.2.5-py2.7-macosx-10.5-x86_64.egg", "has_sig": true, "md5_digest": "1ff3bc0b28363f0003d253a3429d6048", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 119751, "upload_time": "2014-02-21T10:31:40", "url": "https://files.pythonhosted.org/packages/d2/3a/31ac77c3c5f1162b77eb617f92858410a2b33ca7f080205df1a4f231f56c/gnureadline-6.2.5-py2.7-macosx-10.5-x86_64.egg" }, { "comment_text": "Python.org Python (32 + 64 bit)", "digests": { "md5": "3adba9b61a9e8cf6af8e1be6a775244d", "sha256": "caea789321584dde75fbfcd07fd52ec08b22634c21edb71219f6ada45211b190" }, "downloads": -1, "filename": "gnureadline-6.2.5-py2.7-macosx-10.6-intel.egg", "has_sig": true, "md5_digest": "3adba9b61a9e8cf6af8e1be6a775244d", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 242197, "upload_time": "2014-02-21T10:29:25", "url": "https://files.pythonhosted.org/packages/dc/80/5f8bc9958a99ca83a00be62865acb20b78d3c798510fa871a2957681288a/gnureadline-6.2.5-py2.7-macosx-10.6-intel.egg" }, { "comment_text": "Lion System Python (32 + 64 bit)", "digests": { "md5": "d9803f1d51ca23675ca88eec7e74b8c9", "sha256": "4f90dec1c33cea4623ae6248280bbf56c0f4ede0332f31a1bde95c908aeec45f" }, "downloads": -1, "filename": "gnureadline-6.2.5-py2.7-macosx-10.7-intel.egg", "has_sig": true, "md5_digest": "d9803f1d51ca23675ca88eec7e74b8c9", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 235321, "upload_time": "2014-02-20T14:57:07", "url": "https://files.pythonhosted.org/packages/45/38/1e6907a76a5e95f8315689a9482ee29c8f75c9e74fc6a4b9878ff1fad27c/gnureadline-6.2.5-py2.7-macosx-10.7-intel.egg" }, { "comment_text": "Mavericks System Python (32 + 64 bit)", "digests": { "md5": "eaf7018e2c17cef84af287dbc501a7b2", "sha256": "f973c0d1296562a9ecc3c273be97f253150a6435f63e70d1ac75a7f1812eb655" }, "downloads": -1, "filename": "gnureadline-6.2.5-py2.7-macosx-10.9-intel.egg", "has_sig": true, "md5_digest": "eaf7018e2c17cef84af287dbc501a7b2", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 236568, "upload_time": "2014-02-20T11:26:51", "url": "https://files.pythonhosted.org/packages/ae/34/90ec6181225eed03f151892aa399d55bb01ae3b801d29ef807e44fa0fa8e/gnureadline-6.2.5-py2.7-macosx-10.9-intel.egg" }, { "comment_text": "Mavericks Other Python (64-bit only)", "digests": { "md5": "469753c6d71c8a7e1337d3b235c0d1a9", "sha256": "f4d0ae22cdc113bfcf184f12ffb53de7c6955ebaf85334b2f124523ffb84bed8" }, "downloads": -1, "filename": "gnureadline-6.2.5-py2.7-macosx-10.9-x86_64.egg", "has_sig": true, "md5_digest": "469753c6d71c8a7e1337d3b235c0d1a9", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 120745, "upload_time": "2014-02-20T11:41:45", "url": "https://files.pythonhosted.org/packages/4b/f7/89c5b0b5741b4578e8d006acaf02960ae250e444dddb8bf4a3462bc7692c/gnureadline-6.2.5-py2.7-macosx-10.9-x86_64.egg" }, { "comment_text": "Anaconda Python3 (64-bit only)", "digests": { "md5": "751ee5e4d796db61cc59d8f7f3e01718", "sha256": "2117f6eecd59a5e7404ad00cf8b028dc87cb25c979c1e99f9a146c0a04e0eb2c" }, "downloads": -1, "filename": "gnureadline-6.2.5-py3.3-macosx-10.5-x86_64.egg", "has_sig": true, "md5_digest": "751ee5e4d796db61cc59d8f7f3e01718", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 119985, "upload_time": "2014-02-21T10:32:32", "url": "https://files.pythonhosted.org/packages/00/f2/8e6487daae34ec0b56b08186d50dd75a5b0abda0ee5f7720f57fb1cb2e7c/gnureadline-6.2.5-py3.3-macosx-10.5-x86_64.egg" }, { "comment_text": "Python.org Python3 (32 + 64 bit)", "digests": { "md5": "3217a2b8c3669190cce75b73d12c2b9d", "sha256": "2e6bd007a3e3cc1e4c3e95f7f951cea5d7d743cd72f9d98d430d81667bcd080d" }, "downloads": -1, "filename": "gnureadline-6.2.5-py3.3-macosx-10.6-intel.egg", "has_sig": true, "md5_digest": "3217a2b8c3669190cce75b73d12c2b9d", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 242765, "upload_time": "2014-02-21T10:30:29", "url": "https://files.pythonhosted.org/packages/1a/af/b4b69abd0038d35206881c3457495ad6dd1bd772e5065b4295542566b0e7/gnureadline-6.2.5-py3.3-macosx-10.6-intel.egg" }, { "comment_text": "Mavericks Other Python3 (64-bit only)", "digests": { "md5": "41fbd9a86459ed4a1f8dde49607167bc", "sha256": "d35edcafba1458b6de6968ff5a187f83f5f2c172df44a02f610c1c74beba5072" }, "downloads": -1, "filename": "gnureadline-6.2.5-py3.3-macosx-10.9-x86_64.egg", "has_sig": true, "md5_digest": "41fbd9a86459ed4a1f8dde49607167bc", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 121040, "upload_time": "2014-02-20T12:09:08", "url": "https://files.pythonhosted.org/packages/ce/69/586fb8f151a51c2225c33e66bec5dcc0c0dccb31692f487e1dc1c4231f0a/gnureadline-6.2.5-py3.3-macosx-10.9-x86_64.egg" }, { "comment_text": "", "digests": { "md5": "ae4fa2c92511574015b258657da994b0", "sha256": "49b62768c527d7681a7098aab5cdb24b8e64eda6bf02841b7149a95a4f39720d" }, "downloads": -1, "filename": "gnureadline-6.2.5.tar.gz", "has_sig": true, "md5_digest": "ae4fa2c92511574015b258657da994b0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2303166, "upload_time": "2014-02-18T23:03:08", "url": "https://files.pythonhosted.org/packages/b1/d6/e7ca8d8c8ab877a2ecccc9a4a6179912c67ab3da7b5621d22d8f20c292ef/gnureadline-6.2.5.tar.gz" } ], "6.3.3": [ { "comment_text": "Snow Leopard System Python (32 + 64 bit)", "digests": { "md5": "b2c27da4afb73636bef55a335013967c", "sha256": "24589b44720d04d60cd02b07c2755ddd39fa2b80b41f239221a404d469997b6f" }, "downloads": -1, "filename": "gnureadline-6.3.3-cp26-none-macosx_10_6_universal.whl", "has_sig": true, "md5_digest": "b2c27da4afb73636bef55a335013967c", "packagetype": "bdist_wheel", "python_version": "cp26", "requires_python": null, "size": 338749, "upload_time": "2014-04-14T21:19:25", "url": "https://files.pythonhosted.org/packages/0e/3d/6e8411ab69502036739845cb063d7e4e9dd2a49af23626d99c9cafe71047/gnureadline-6.3.3-cp26-none-macosx_10_6_universal.whl" }, { "comment_text": "Anaconda Python (64-bit only)", "digests": { "md5": "aa19cd5fa4082bfb3c1962cacf6667fc", "sha256": "c899be5eb749253ff82f7ebb9e83534c5ab01fe517ab6a9ba4fcb6fcf7cecca9" }, "downloads": -1, "filename": "gnureadline-6.3.3-cp27-none-macosx_10_5_x86_64.whl", "has_sig": true, "md5_digest": "aa19cd5fa4082bfb3c1962cacf6667fc", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 131480, "upload_time": "2014-04-14T21:24:31", "url": "https://files.pythonhosted.org/packages/74/da/0ffd5ff738ceee4c4fe9550d4f90be6ff8aaf94b4d4c5e7fddc9e48b52c6/gnureadline-6.3.3-cp27-none-macosx_10_5_x86_64.whl" }, { "comment_text": "Python.org Python (32 + 64 bit)", "digests": { "md5": "cceb3e255caa825c67fc773822833655", "sha256": "1a7d038b5fbeae17fa107621be2cbc90cf44083c2a46432c34f05d2918d6c630" }, "downloads": -1, "filename": "gnureadline-6.3.3-cp27-none-macosx_10_6_intel.whl", "has_sig": true, "md5_digest": "cceb3e255caa825c67fc773822833655", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 262029, "upload_time": "2014-04-14T21:26:16", "url": "https://files.pythonhosted.org/packages/04/9c/bc564cbea8ef7393aceaab95d5baef1b3e7d703991ae69d1fe20ab9c7ba3/gnureadline-6.3.3-cp27-none-macosx_10_6_intel.whl" }, { "comment_text": "Lion System Python (32 + 64 bit)", "digests": { "md5": "68012c0a1b5d1385523afce8197bcfd1", "sha256": "284c99dc82e278b6c556c8b8b1923df1287fe3dea1512ebd3b431d91b28489fd" }, "downloads": -1, "filename": "gnureadline-6.3.3-cp27-none-macosx_10_7_intel.whl", "has_sig": true, "md5_digest": "68012c0a1b5d1385523afce8197bcfd1", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 270262, "upload_time": "2014-04-14T21:27:31", "url": "https://files.pythonhosted.org/packages/fb/6f/ffa89bbd7e415839187dac3f543cb8de4bdfa475903e450b1015598c4c25/gnureadline-6.3.3-cp27-none-macosx_10_7_intel.whl" }, { "comment_text": "Mountain Lion System Python (32 + 64 bit)", "digests": { "md5": "ebbf9eab51ed95211a9b061ac49f56cf", "sha256": "ebd08945971198fcf6367ac34777f3a010ca0f14e1bed0673571baa9cc04a4ec" }, "downloads": -1, "filename": "gnureadline-6.3.3-cp27-none-macosx_10_8_intel.whl", "has_sig": false, "md5_digest": "ebbf9eab51ed95211a9b061ac49f56cf", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 268825, "upload_time": "2014-04-24T09:11:48", "url": "https://files.pythonhosted.org/packages/7a/9e/441301e917108e16305ca03b326bd1bbae192dda618c82f2e47e8986880d/gnureadline-6.3.3-cp27-none-macosx_10_8_intel.whl" }, { "comment_text": "Mountain Lion Homebrew Python (64-bit only)", "digests": { "md5": "7a4d7efbe11c88dc61011295fe92efc3", "sha256": "ac3bf3054ab7546470b172cec76ed4916b86f687bc23d73fa2affdc43c02956e" }, "downloads": -1, "filename": "gnureadline-6.3.3-cp27-none-macosx_10_8_x86_64.whl", "has_sig": false, "md5_digest": "7a4d7efbe11c88dc61011295fe92efc3", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 141731, "upload_time": "2014-04-23T22:01:03", "url": "https://files.pythonhosted.org/packages/19/59/fdea85a40495ad1bda5356e11f594217719ba606660f7e21402345982ad7/gnureadline-6.3.3-cp27-none-macosx_10_8_x86_64.whl" }, { "comment_text": "Mavericks System Python (32 + 64 bit)", "digests": { "md5": "0b372e9b01fc0575da74d0c5eaf4a95e", "sha256": "8685d8f1d7e4a9025bc051fabe828b80c1d1fa2180f8b1ebe863399d38c8637f" }, "downloads": -1, "filename": "gnureadline-6.3.3-cp27-none-macosx_10_9_intel.whl", "has_sig": true, "md5_digest": "0b372e9b01fc0575da74d0c5eaf4a95e", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 257152, "upload_time": "2014-04-14T21:15:05", "url": "https://files.pythonhosted.org/packages/eb/f1/0d411852789b722bbf43e7d415d884ec887109b376a2e07b943204704afb/gnureadline-6.3.3-cp27-none-macosx_10_9_intel.whl" }, { "comment_text": "Mavericks Homebrew Python (64-bit only)", "digests": { "md5": "08d5f87ae32d9c8f633f405603b5c295", "sha256": "b136f560573d707c38e4e0e68440954750bfa6a63cc5710df2d144e5a44154b8" }, "downloads": -1, "filename": "gnureadline-6.3.3-cp27-none-macosx_10_9_x86_64.whl", "has_sig": true, "md5_digest": "08d5f87ae32d9c8f633f405603b5c295", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 132862, "upload_time": "2014-04-14T21:18:19", "url": "https://files.pythonhosted.org/packages/6e/30/730091ddc3e70ffbbed05f0333526e6b09c8d7c6206fe136131dfec3444d/gnureadline-6.3.3-cp27-none-macosx_10_9_x86_64.whl" }, { "comment_text": "Anaconda Python3 (64-bit only)", "digests": { "md5": "4c567b33b35e40c79e112932aedf006b", "sha256": "db9524415636a6119ef01ae2f699d299316d730d30b49f09b9bc1bdc41cc233d" }, "downloads": -1, "filename": "gnureadline-6.3.3-cp33-cp33m-macosx_10_5_x86_64.whl", "has_sig": true, "md5_digest": "4c567b33b35e40c79e112932aedf006b", "packagetype": "bdist_wheel", "python_version": "cp33", "requires_python": null, "size": 131756, "upload_time": "2014-04-14T21:29:19", "url": "https://files.pythonhosted.org/packages/31/2a/6e6641f68dade2b62398c5e41bba40f5a6acd98dba645a3510d9544a074f/gnureadline-6.3.3-cp33-cp33m-macosx_10_5_x86_64.whl" }, { "comment_text": "Python.org Python 3.3 (32 + 64 bit)", "digests": { "md5": "65d94d16dbf2fed58b3b96169b112718", "sha256": "5d719a19aa136412e973cbc4aa2d8135bc40e7003d291742f4d64b11f6869812" }, "downloads": -1, "filename": "gnureadline-6.3.3-cp33-cp33m-macosx_10_6_intel.whl", "has_sig": true, "md5_digest": "65d94d16dbf2fed58b3b96169b112718", "packagetype": "bdist_wheel", "python_version": "cp33", "requires_python": null, "size": 262682, "upload_time": "2014-04-14T21:31:15", "url": "https://files.pythonhosted.org/packages/b6/14/d1e5f7e98923733a2c6f0f47c92ea9c278fa91d3a95ccb5a9a9addad865d/gnureadline-6.3.3-cp33-cp33m-macosx_10_6_intel.whl" }, { "comment_text": "Python.org Python 3.4 (32 + 64 bit)", "digests": { "md5": "fb06b7bf650efa3ca7e7833bfa5a2b1a", "sha256": "fa095dca2026c719cb7669c2bccbbc101efea97e1f8da55e096c410a5deded81" }, "downloads": -1, "filename": "gnureadline-6.3.3-cp34-cp34m-macosx_10_6_intel.whl", "has_sig": true, "md5_digest": "fb06b7bf650efa3ca7e7833bfa5a2b1a", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 263820, "upload_time": "2014-04-14T21:32:43", "url": "https://files.pythonhosted.org/packages/83/c2/f85d9ee88a764496d3770505f5d0f2392d2ff7c998384de73ae19eb6a47a/gnureadline-6.3.3-cp34-cp34m-macosx_10_6_intel.whl" }, { "comment_text": "Mavericks Homebrew Python3 (64-bit only)", "digests": { "md5": "897091e7088325b8469d9021c5a69d23", "sha256": "c01c37865708dcadfa28428574a8d5bab69c91d20a0eab3d38c57391c12db269" }, "downloads": -1, "filename": "gnureadline-6.3.3-cp34-cp34m-macosx_10_9_x86_64.whl", "has_sig": true, "md5_digest": "897091e7088325b8469d9021c5a69d23", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 133530, "upload_time": "2014-04-14T21:37:54", "url": "https://files.pythonhosted.org/packages/3b/71/bb3e8ce007c84d6eab79e46c39e5b064a85bb8b340b0e1b4b32f1e708312/gnureadline-6.3.3-cp34-cp34m-macosx_10_9_x86_64.whl" }, { "comment_text": "OS X 10.6+ Generic Python 3.5 (32 + 64 bit)", "digests": { "md5": "ebbddc712dd5835f4cba11ff458ffd11", "sha256": "d2bcf65f38ba2bb74aa894131c1a992a61d83c49c3d605bb91cd67e41e380732" }, "downloads": -1, "filename": "gnureadline-6.3.3-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": true, "md5_digest": "ebbddc712dd5835f4cba11ff458ffd11", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 265632, "upload_time": "2015-09-26T00:21:35", "url": "https://files.pythonhosted.org/packages/96/d0/9788aa954aea2c3ae30bec02adf0287887cf49580d261f568d56197401a7/gnureadline-6.3.3-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "Snow Leopard System Python (32 + 64 bit)", "digests": { "md5": "1d2d8889be1b49e7bff7790df5c64985", "sha256": "68d341bb483b905ec90144f08ed2eec6c450ff7580b8760c87aa004f821f9c2e" }, "downloads": -1, "filename": "gnureadline-6.3.3-py2.6-macosx-10.6-universal.egg", "has_sig": true, "md5_digest": "1d2d8889be1b49e7bff7790df5c64985", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 335574, "upload_time": "2014-04-14T21:19:09", "url": "https://files.pythonhosted.org/packages/83/6a/a5bc0dc6da7674c27975ffef8d46a56d281f62e537216f3ce9b88943b615/gnureadline-6.3.3-py2.6-macosx-10.6-universal.egg" }, { "comment_text": "Anaconda Python (64-bit only)", "digests": { "md5": "6b7f8bb3bcb460b8f85881f7fc3b8a47", "sha256": "bcc0ea31322a9ea8e861356bc0710de19d45f5940cf40240cb3316cbabd140f9" }, "downloads": -1, "filename": "gnureadline-6.3.3-py2.7-macosx-10.5-x86_64.egg", "has_sig": true, "md5_digest": "6b7f8bb3bcb460b8f85881f7fc3b8a47", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 128296, "upload_time": "2014-04-14T21:24:14", "url": "https://files.pythonhosted.org/packages/9a/7a/be22caaeacec983567c3a44d283b612d3aa08781efebbb91d2a2db2c1177/gnureadline-6.3.3-py2.7-macosx-10.5-x86_64.egg" }, { "comment_text": "Python.org Python (32 + 64 bit)", "digests": { "md5": "0419bbaccb94c89076bad17831d2824f", "sha256": "8c7a71eac7ef39b0aafdc494235f8ef0283c3503495a998f204e442d1e8a6997" }, "downloads": -1, "filename": "gnureadline-6.3.3-py2.7-macosx-10.6-intel.egg", "has_sig": true, "md5_digest": "0419bbaccb94c89076bad17831d2824f", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 258845, "upload_time": "2014-04-14T21:25:48", "url": "https://files.pythonhosted.org/packages/5e/9c/fef2487530acc67f1ca05801266a5650008d4f8ec6e5963cc631ea16e03a/gnureadline-6.3.3-py2.7-macosx-10.6-intel.egg" }, { "comment_text": "Lion System Python (32 + 64 bit)", "digests": { "md5": "8ccedb0b375b550a2d4a614c918f9491", "sha256": "167053f88a58be8987e3ef56f5d795e451f8f2651d5b046c00d5f17c775c864c" }, "downloads": -1, "filename": "gnureadline-6.3.3-py2.7-macosx-10.7-intel.egg", "has_sig": true, "md5_digest": "8ccedb0b375b550a2d4a614c918f9491", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 267128, "upload_time": "2014-04-14T21:27:13", "url": "https://files.pythonhosted.org/packages/37/be/6910dc2fb346db3e3c75867dfadd510972a7eb134f0d38d94ca230a1f4f7/gnureadline-6.3.3-py2.7-macosx-10.7-intel.egg" }, { "comment_text": "Mountain Lion System Python (32 + 64 bit)", "digests": { "md5": "8c9090280cf4facbcb55bd2a731b2ba6", "sha256": "69f0374c0e41ecab7f027a20eb6b5daf6e54c25035af46477e8aabdbeff3e4be" }, "downloads": -1, "filename": "gnureadline-6.3.3-py2.7-macosx-10.8-intel.egg", "has_sig": false, "md5_digest": "8c9090280cf4facbcb55bd2a731b2ba6", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 266366, "upload_time": "2014-04-24T09:11:52", "url": "https://files.pythonhosted.org/packages/93/1b/809acc96c80c58ab6c75d8452acd6c6f0221616ca054c0bc3c7d5d4f4d8b/gnureadline-6.3.3-py2.7-macosx-10.8-intel.egg" }, { "comment_text": "Mountain Lion Homebrew Python (64-bit only)", "digests": { "md5": "06dcce8a226efc6fb20d8ef83f4b8c58", "sha256": "c82d7ed2c94a1026879db1c549dc35109961dc37154b4626b628113b2135c32e" }, "downloads": -1, "filename": "gnureadline-6.3.3-py2.7-macosx-10.8-x86_64.egg", "has_sig": false, "md5_digest": "06dcce8a226efc6fb20d8ef83f4b8c58", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 139280, "upload_time": "2014-04-23T22:01:06", "url": "https://files.pythonhosted.org/packages/cf/b8/93511cc4b4f9ff94783408b76a2cdee7cfb6b5e36e38e6ba9a580a52694b/gnureadline-6.3.3-py2.7-macosx-10.8-x86_64.egg" }, { "comment_text": "Mavericks System Python (32 + 64 bit)", "digests": { "md5": "9a65fcb7a89166fa740c5375505c7e6b", "sha256": "2b171071a63909ff3055f6e0c8cc33300a000113ad3b80b8354850b24db8a23f" }, "downloads": -1, "filename": "gnureadline-6.3.3-py2.7-macosx-10.9-intel.egg", "has_sig": true, "md5_digest": "9a65fcb7a89166fa740c5375505c7e6b", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 253969, "upload_time": "2014-04-14T21:14:41", "url": "https://files.pythonhosted.org/packages/42/3b/42a20703bbf97c6ed4a51cd5d239056fd64a13e1b0bc1a7061d05fa22fbe/gnureadline-6.3.3-py2.7-macosx-10.9-intel.egg" }, { "comment_text": "Mavericks Homebrew Python (64-bit only)", "digests": { "md5": "e280a2979a31fa8cb116d0a46730dd43", "sha256": "fa76f1bab4ce1b4ec7580a66cc60c81eab4550e2c03a7e2b83aebbf8ef7f6ecc" }, "downloads": -1, "filename": "gnureadline-6.3.3-py2.7-macosx-10.9-x86_64.egg", "has_sig": true, "md5_digest": "e280a2979a31fa8cb116d0a46730dd43", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 129683, "upload_time": "2014-04-14T21:17:46", "url": "https://files.pythonhosted.org/packages/22/cd/605d912685bd5d5c045c55763755b78d47e2a51ef299767ebdf09549f01d/gnureadline-6.3.3-py2.7-macosx-10.9-x86_64.egg" }, { "comment_text": "Anaconda Python3 (64-bit only)", "digests": { "md5": "edefa1d3395301a7bdf9f2117c74d241", "sha256": "7097af79b91c9e2e2b9289de359f2238f4e7acbd81d038e3b9f84fe3dc032aa9" }, "downloads": -1, "filename": "gnureadline-6.3.3-py3.3-macosx-10.5-x86_64.egg", "has_sig": true, "md5_digest": "edefa1d3395301a7bdf9f2117c74d241", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 128572, "upload_time": "2014-04-14T21:29:00", "url": "https://files.pythonhosted.org/packages/7e/d8/264cd04a911695edb995b1cf56a4d8ecbfe39744442395b168151b4bfaa0/gnureadline-6.3.3-py3.3-macosx-10.5-x86_64.egg" }, { "comment_text": "Python.org Python 3.3 (32 + 64 bit)", "digests": { "md5": "1a7b1f408c6bf9db720a9441b86d4eec", "sha256": "7dcbda9f9c4e8745fb079487a4c3aba2022175fff655bb75e0c0626a4ac33d86" }, "downloads": -1, "filename": "gnureadline-6.3.3-py3.3-macosx-10.6-intel.egg", "has_sig": true, "md5_digest": "1a7b1f408c6bf9db720a9441b86d4eec", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 259504, "upload_time": "2014-04-14T21:30:52", "url": "https://files.pythonhosted.org/packages/a1/60/b790441723214069bea6c373dbc17ec9d85588d7a363aed56d5604d7e1b2/gnureadline-6.3.3-py3.3-macosx-10.6-intel.egg" }, { "comment_text": "Python.org Python 3.4 (32 + 64 bit)", "digests": { "md5": "8aac12b538319284f5b78a75ce5a828a", "sha256": "14b61c9e8659fd6de6c72598f2d197341e34c798b568b27c591c171aff0f1a6b" }, "downloads": -1, "filename": "gnureadline-6.3.3-py3.4-macosx-10.6-intel.egg", "has_sig": true, "md5_digest": "8aac12b538319284f5b78a75ce5a828a", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 260643, "upload_time": "2014-04-14T21:32:29", "url": "https://files.pythonhosted.org/packages/7d/aa/0ba3eed228e1ca2cc813daf263f82755700365d3bab5fd8cd5b1b7a70d94/gnureadline-6.3.3-py3.4-macosx-10.6-intel.egg" }, { "comment_text": "Mavericks Homebrew Python3 (64-bit only)", "digests": { "md5": "7b7904b552b287c53db83dcf301d49c5", "sha256": "f3a750a39b5cc25957c02bb40970b604a14d17d0e9197633a2baf4d9f8258f76" }, "downloads": -1, "filename": "gnureadline-6.3.3-py3.4-macosx-10.9-x86_64.egg", "has_sig": true, "md5_digest": "7b7904b552b287c53db83dcf301d49c5", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 130347, "upload_time": "2014-04-14T21:37:41", "url": "https://files.pythonhosted.org/packages/da/60/456762c902a71a0d085b6754b9ff5a557f6e80d230795d497e3d1f6fbff7/gnureadline-6.3.3-py3.4-macosx-10.9-x86_64.egg" }, { "comment_text": "", "digests": { "md5": "c4af83c9a3fbeac8f2da9b5a7c60e51c", "sha256": "a259b038f4b625b07e6206bbc060baa5489ca17c798df3f9507875f2bf980cbe" }, "downloads": -1, "filename": "gnureadline-6.3.3.tar.gz", "has_sig": true, "md5_digest": "c4af83c9a3fbeac8f2da9b5a7c60e51c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2500768, "upload_time": "2014-04-14T21:09:35", "url": "https://files.pythonhosted.org/packages/3a/ee/2c3f568b0a74974791ac590ec742ef6133e2fbd287a074ba72a53fa5e97c/gnureadline-6.3.3.tar.gz" } ], "6.3.8": [ { "comment_text": "", "digests": { "md5": "5a0466753f6f32c654503a259d835e11", "sha256": "10da0e30e1e014cc5879f63e987e28dd84f7dc6c36bc2e3b170355f9c18ad4e0" }, "downloads": -1, "filename": "gnureadline-6.3.8-cp26-cp26mu-manylinux1_i686.whl", "has_sig": true, "md5_digest": "5a0466753f6f32c654503a259d835e11", "packagetype": "bdist_wheel", "python_version": "cp26", "requires_python": null, "size": 443615, "upload_time": "2017-10-20T09:25:00", "url": "https://files.pythonhosted.org/packages/90/b7/0a66bf492b55b82f42ac10e55de0f41ac3091e9ca2e817af3e416653a8b2/gnureadline-6.3.8-cp26-cp26mu-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "ad340d04ea26171adb41f610ebd69e60", "sha256": "faa92b9ea4a64dc8403cf2a0c9dfa839745cfff50e1f04c39dbec908d35e250b" }, "downloads": -1, "filename": "gnureadline-6.3.8-cp26-cp26mu-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "ad340d04ea26171adb41f610ebd69e60", "packagetype": "bdist_wheel", "python_version": "cp26", "requires_python": null, "size": 470099, "upload_time": "2017-10-20T09:25:12", "url": "https://files.pythonhosted.org/packages/ef/a8/08445e90b57d57d7d6f9612fdf77279b5d67af364a69e6c3958dfd8d43c7/gnureadline-6.3.8-cp26-cp26mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "25ac82a840848c9f29c14afa5bea9dc5", "sha256": "27e0a87edb5c049ac6516a9f2dd55c16fa9e2db95be5e147175c83a9af368df0" }, "downloads": -1, "filename": "gnureadline-6.3.8-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": true, "md5_digest": "25ac82a840848c9f29c14afa5bea9dc5", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 261840, "upload_time": "2017-10-20T09:27:06", "url": "https://files.pythonhosted.org/packages/fe/66/f2ceeb9bfaf5b51cfa7a4a24b3e90daaf7739c38dafb9f7d5fa2b5a503d2/gnureadline-6.3.8-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "a294fc8e24ace988de179dddb8ac2d78", "sha256": "12a38c189020fd60914da7d0d39a98237a6c372d83a229e3166fc259413c4621" }, "downloads": -1, "filename": "gnureadline-6.3.8-cp27-cp27mu-manylinux1_i686.whl", "has_sig": true, "md5_digest": "a294fc8e24ace988de179dddb8ac2d78", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 443652, "upload_time": "2017-10-20T09:25:28", "url": "https://files.pythonhosted.org/packages/66/39/e86bf37f663278903873b7d0ad080d5c0bdcb6e17149013042b8ddc34259/gnureadline-6.3.8-cp27-cp27mu-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "d84996f31967973bc30826c6b540a7f5", "sha256": "cc293089fc76dd7f068db2d8c8d23238ea0181a31feacd11d674e4a20038448d" }, "downloads": -1, "filename": "gnureadline-6.3.8-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "d84996f31967973bc30826c6b540a7f5", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 470137, "upload_time": "2017-10-20T09:25:39", "url": "https://files.pythonhosted.org/packages/54/18/9d2bbaa4ea63cb9dbe8d6a7e88a14aede73ba0263d07105e34ce53a742da/gnureadline-6.3.8-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "a3691cf608bfdc5ad21c7234401ec9a2", "sha256": "4bf883a08ac02f9bcd3a1991633a774ce8692c4c5855f2e7c557e242c3266353" }, "downloads": -1, "filename": "gnureadline-6.3.8-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "a3691cf608bfdc5ad21c7234401ec9a2", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 474623, "upload_time": "2017-10-20T09:25:50", "url": "https://files.pythonhosted.org/packages/9a/b5/3d8d8c3b5b7ccf64f3f605c5b411e1f77410c75518bc190fd3b6e04094db/gnureadline-6.3.8-cp34-cp34m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "7ac4d2d3e8b80f4b1bca46bc6fc26ffb", "sha256": "41c53183e57f02a8683b9e72ca8d42141e4a377893612e6aa022f6c969f2143a" }, "downloads": -1, "filename": "gnureadline-6.3.8-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": true, "md5_digest": "7ac4d2d3e8b80f4b1bca46bc6fc26ffb", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 264147, "upload_time": "2017-10-20T09:27:18", "url": "https://files.pythonhosted.org/packages/2e/cc/770628657cf24207dbbb33dd6cca2d924a1cb8904dcf48e1e045cb884799/gnureadline-6.3.8-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "e752996899323f50065b4163adbfa1d0", "sha256": "8f4de3f730f99ab01db35caf83b251159b5fe7427cc89630276f664292b4f398" }, "downloads": -1, "filename": "gnureadline-6.3.8-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "e752996899323f50065b4163adbfa1d0", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 474816, "upload_time": "2017-10-20T09:26:03", "url": "https://files.pythonhosted.org/packages/ba/b4/7b0d7879fe819e219909e8ceb5aba872cee1c46def0869fcb00b6529908e/gnureadline-6.3.8-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "1bd1b51cda7e3c7feca6ba5cf4adda5a", "sha256": "9e6589f3119c27808630118d2345b601a865d699495bf2929d87401e980b43e6" }, "downloads": -1, "filename": "gnureadline-6.3.8-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", "has_sig": true, "md5_digest": "1bd1b51cda7e3c7feca6ba5cf4adda5a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 264148, "upload_time": "2017-10-20T09:27:31", "url": "https://files.pythonhosted.org/packages/89/7c/83a10a5993c17b8b519cef8ddb68f915cc3ef4f5a9135265d5bb1b584108/gnureadline-6.3.8-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "67270ff50258b9b25da2dd43431935f8", "sha256": "7acd5bafcbfd8d3ad34d35b8aa478513185e6b39ea549991c99b64a0482534e5" }, "downloads": -1, "filename": "gnureadline-6.3.8-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "67270ff50258b9b25da2dd43431935f8", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 474883, "upload_time": "2017-10-20T09:26:14", "url": "https://files.pythonhosted.org/packages/f5/c7/03754b54c8d0c5c5303ae2232ed36734faa91e819f0738b0d5d0a581f68c/gnureadline-6.3.8-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "ba341f4b907250bd1f47dbc06290604f", "sha256": "58e208ed34a53456ecf58bc11eacbe332c50d322b329457e2c645bd15192b035" }, "downloads": -1, "filename": "gnureadline-6.3.8.tar.gz", "has_sig": true, "md5_digest": "ba341f4b907250bd1f47dbc06290604f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2527159, "upload_time": "2017-10-20T09:21:19", "url": "https://files.pythonhosted.org/packages/50/64/86085c823cd78f9df9d8e33dce0baa71618016f8860460b82cf6610e1eb3/gnureadline-6.3.8.tar.gz" } ], "8.0.0": [ { "comment_text": "", "digests": { "md5": "20ad63a342b1bd0dd0fdfe356bad4c47", "sha256": "59369b0eb7210bdb2acf2940c15a6a9d35c70cde9b6d6c5b5c14b0bfd4fd258a" }, "downloads": -1, "filename": "gnureadline-8.0.0-cp26-cp26m-macosx_10_6_intel.whl", "has_sig": true, "md5_digest": "20ad63a342b1bd0dd0fdfe356bad4c47", "packagetype": "bdist_wheel", "python_version": "cp26", "requires_python": null, "size": 143893, "upload_time": "2019-07-10T21:24:44", "url": "https://files.pythonhosted.org/packages/78/90/b1c11fae292cc7abdbb9b6009c1b86637c67b2a33fc2506c5428398a159e/gnureadline-8.0.0-cp26-cp26m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "f0dbd7691c26102ee95a79b4ee91f5bc", "sha256": "8c244130b6e31669f76213ddb249c8673b8573214e80829667f17e18abe27487" }, "downloads": -1, "filename": "gnureadline-8.0.0-cp27-cp27m-macosx_10_6_intel.whl", "has_sig": true, "md5_digest": "f0dbd7691c26102ee95a79b4ee91f5bc", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 151967, "upload_time": "2019-07-10T21:24:48", "url": "https://files.pythonhosted.org/packages/97/ec/2a6acda78022ced5465dfd7524e10646bbc9a60eb99937292688a084ab8c/gnureadline-8.0.0-cp27-cp27m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "ca092b3bb4d91159dd28e309ea9b4504", "sha256": "59f6265f24631da28e39054cdd3a52cf02422aa2b955b8d8358b99d4425c3a26" }, "downloads": -1, "filename": "gnureadline-8.0.0-cp27-cp27mu-manylinux1_i686.whl", "has_sig": true, "md5_digest": "ca092b3bb4d91159dd28e309ea9b4504", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 255394, "upload_time": "2019-07-11T20:21:24", "url": "https://files.pythonhosted.org/packages/49/b0/10382a08420cd085eaf24508e3ca6df11e5c849a056a1c4cc4870329c5ba/gnureadline-8.0.0-cp27-cp27mu-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "1d94948d3f9936bdcac96dea6c3afc66", "sha256": "69c9291b6a7bcf768202b78ed1684b515181e20a3cb680b0265da0d6fdc0f697" }, "downloads": -1, "filename": "gnureadline-8.0.0-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "1d94948d3f9936bdcac96dea6c3afc66", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 282127, "upload_time": "2019-07-11T20:21:33", "url": "https://files.pythonhosted.org/packages/e3/bf/06ba84df6ed76903d7ba25440337c9c41ca4147fc9bc310474cd4d1d8fef/gnureadline-8.0.0-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "87574c6b71a8124aec43c4a9067bf56d", "sha256": "fd7ddef98546f1a97eea2ba2120faff4cb7fd52d43f4a16954b5d5531a23eb3e" }, "downloads": -1, "filename": "gnureadline-8.0.0-cp35-cp35m-macosx_10_6_intel.whl", "has_sig": true, "md5_digest": "87574c6b71a8124aec43c4a9067bf56d", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 153571, "upload_time": "2019-07-10T21:24:54", "url": "https://files.pythonhosted.org/packages/3a/21/a4e27dee2fb3709a217d86906bf0fa199a13673a27212759a10e4a261d03/gnureadline-8.0.0-cp35-cp35m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "2dead52d15ce2e18752fcf7f80699e43", "sha256": "fe9b42d92dcd83071c82a5dbd33e36a287bb021d2e29f65abfe3192bf13a360d" }, "downloads": -1, "filename": "gnureadline-8.0.0-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "2dead52d15ce2e18752fcf7f80699e43", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 283773, "upload_time": "2019-07-11T20:22:00", "url": "https://files.pythonhosted.org/packages/ca/d8/cdc62b94737d5ceec173bf122c8fa6d0ed9d2372ec991630e01711eb4b30/gnureadline-8.0.0-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "357b126f1c1d37c3a58cbd9ec59ec926", "sha256": "5fe0b973372a6deca9b448178acf8117bc80f0c5113facef0be16712cb98feea" }, "downloads": -1, "filename": "gnureadline-8.0.0-cp36-cp36m-macosx_10_6_intel.whl", "has_sig": true, "md5_digest": "357b126f1c1d37c3a58cbd9ec59ec926", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 153538, "upload_time": "2019-07-10T21:24:59", "url": "https://files.pythonhosted.org/packages/a9/43/fb23b69547df3c4f1708b480c4bf4de28300988f36d1932871b5a393c547/gnureadline-8.0.0-cp36-cp36m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "9ec40f1004547c55d6cd08fef846e17a", "sha256": "e50ae6f49adfc2c89b995a75a0ce2449e553dbd943a4cd1a2d959caccc20247c" }, "downloads": -1, "filename": "gnureadline-8.0.0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "9ec40f1004547c55d6cd08fef846e17a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 283758, "upload_time": "2019-07-11T20:22:04", "url": "https://files.pythonhosted.org/packages/4c/c7/64612d5cc3fd69497a4296a07143c1d19f4f5ffb4bc5cef5019b07fecec7/gnureadline-8.0.0-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "2d805ee64fc1e1ef1e7c3a6901caa176", "sha256": "88c1adf00fa8b2124751d7a6a4f8701cf8677d5caccdb16f6a6b24b3ae4f97c0" }, "downloads": -1, "filename": "gnureadline-8.0.0-cp37-cp37m-macosx_10_6_intel.whl", "has_sig": true, "md5_digest": "2d805ee64fc1e1ef1e7c3a6901caa176", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 153663, "upload_time": "2019-07-10T21:25:04", "url": "https://files.pythonhosted.org/packages/04/9a/5e1b7f0d133c63dcf63e22b44af8b21b0dc7f5057b21af285f128616fee7/gnureadline-8.0.0-cp37-cp37m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "c25d94d30ced6f6b899023d4c7dd409b", "sha256": "15518acd534a84d8cd3b2431aeca85132c4892600bf3a64edd76ed265909476c" }, "downloads": -1, "filename": "gnureadline-8.0.0-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "c25d94d30ced6f6b899023d4c7dd409b", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 283893, "upload_time": "2019-07-11T20:22:12", "url": "https://files.pythonhosted.org/packages/2b/36/60b53a1793af9a60539b5ee6fed4f3702280bd5a88ab41600a51510002a1/gnureadline-8.0.0-cp37-cp37m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "c90e10bee71fdcef5cd052643b15d573", "sha256": "650986355bfdbe767fd7e9ce4df20ac4993f8c3b60f0829b3c1f951ce31be846" }, "downloads": -1, "filename": "gnureadline-8.0.0-cp38-cp38-macosx_10_6_intel.whl", "has_sig": true, "md5_digest": "c90e10bee71fdcef5cd052643b15d573", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 153819, "upload_time": "2019-07-10T21:25:09", "url": "https://files.pythonhosted.org/packages/4f/e9/161c53c3551cb84fea222b003124a79b8782c04674e10be2c411b23e86f0/gnureadline-8.0.0-cp38-cp38-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "47951eb3fc606de8319bb5ef898e63cf", "sha256": "61eef72ed02dad415ede49752e972a1d2bd8c35c1e4464565d7effd806c99476" }, "downloads": -1, "filename": "gnureadline-8.0.0.tar.gz", "has_sig": true, "md5_digest": "47951eb3fc606de8319bb5ef898e63cf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3056344, "upload_time": "2019-07-10T21:17:41", "url": "https://files.pythonhosted.org/packages/b2/e9/0f3c62faa8e471541d77068f440b4f5df8f396a3760fccf1b88697e282a8/gnureadline-8.0.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "20ad63a342b1bd0dd0fdfe356bad4c47", "sha256": "59369b0eb7210bdb2acf2940c15a6a9d35c70cde9b6d6c5b5c14b0bfd4fd258a" }, "downloads": -1, "filename": "gnureadline-8.0.0-cp26-cp26m-macosx_10_6_intel.whl", "has_sig": true, "md5_digest": "20ad63a342b1bd0dd0fdfe356bad4c47", "packagetype": "bdist_wheel", "python_version": "cp26", "requires_python": null, "size": 143893, "upload_time": "2019-07-10T21:24:44", "url": "https://files.pythonhosted.org/packages/78/90/b1c11fae292cc7abdbb9b6009c1b86637c67b2a33fc2506c5428398a159e/gnureadline-8.0.0-cp26-cp26m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "f0dbd7691c26102ee95a79b4ee91f5bc", "sha256": "8c244130b6e31669f76213ddb249c8673b8573214e80829667f17e18abe27487" }, "downloads": -1, "filename": "gnureadline-8.0.0-cp27-cp27m-macosx_10_6_intel.whl", "has_sig": true, "md5_digest": "f0dbd7691c26102ee95a79b4ee91f5bc", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 151967, "upload_time": "2019-07-10T21:24:48", "url": "https://files.pythonhosted.org/packages/97/ec/2a6acda78022ced5465dfd7524e10646bbc9a60eb99937292688a084ab8c/gnureadline-8.0.0-cp27-cp27m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "ca092b3bb4d91159dd28e309ea9b4504", "sha256": "59f6265f24631da28e39054cdd3a52cf02422aa2b955b8d8358b99d4425c3a26" }, "downloads": -1, "filename": "gnureadline-8.0.0-cp27-cp27mu-manylinux1_i686.whl", "has_sig": true, "md5_digest": "ca092b3bb4d91159dd28e309ea9b4504", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 255394, "upload_time": "2019-07-11T20:21:24", "url": "https://files.pythonhosted.org/packages/49/b0/10382a08420cd085eaf24508e3ca6df11e5c849a056a1c4cc4870329c5ba/gnureadline-8.0.0-cp27-cp27mu-manylinux1_i686.whl" }, { "comment_text": "", "digests": { "md5": "1d94948d3f9936bdcac96dea6c3afc66", "sha256": "69c9291b6a7bcf768202b78ed1684b515181e20a3cb680b0265da0d6fdc0f697" }, "downloads": -1, "filename": "gnureadline-8.0.0-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "1d94948d3f9936bdcac96dea6c3afc66", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 282127, "upload_time": "2019-07-11T20:21:33", "url": "https://files.pythonhosted.org/packages/e3/bf/06ba84df6ed76903d7ba25440337c9c41ca4147fc9bc310474cd4d1d8fef/gnureadline-8.0.0-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "87574c6b71a8124aec43c4a9067bf56d", "sha256": "fd7ddef98546f1a97eea2ba2120faff4cb7fd52d43f4a16954b5d5531a23eb3e" }, "downloads": -1, "filename": "gnureadline-8.0.0-cp35-cp35m-macosx_10_6_intel.whl", "has_sig": true, "md5_digest": "87574c6b71a8124aec43c4a9067bf56d", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 153571, "upload_time": "2019-07-10T21:24:54", "url": "https://files.pythonhosted.org/packages/3a/21/a4e27dee2fb3709a217d86906bf0fa199a13673a27212759a10e4a261d03/gnureadline-8.0.0-cp35-cp35m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "2dead52d15ce2e18752fcf7f80699e43", "sha256": "fe9b42d92dcd83071c82a5dbd33e36a287bb021d2e29f65abfe3192bf13a360d" }, "downloads": -1, "filename": "gnureadline-8.0.0-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "2dead52d15ce2e18752fcf7f80699e43", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 283773, "upload_time": "2019-07-11T20:22:00", "url": "https://files.pythonhosted.org/packages/ca/d8/cdc62b94737d5ceec173bf122c8fa6d0ed9d2372ec991630e01711eb4b30/gnureadline-8.0.0-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "357b126f1c1d37c3a58cbd9ec59ec926", "sha256": "5fe0b973372a6deca9b448178acf8117bc80f0c5113facef0be16712cb98feea" }, "downloads": -1, "filename": "gnureadline-8.0.0-cp36-cp36m-macosx_10_6_intel.whl", "has_sig": true, "md5_digest": "357b126f1c1d37c3a58cbd9ec59ec926", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 153538, "upload_time": "2019-07-10T21:24:59", "url": "https://files.pythonhosted.org/packages/a9/43/fb23b69547df3c4f1708b480c4bf4de28300988f36d1932871b5a393c547/gnureadline-8.0.0-cp36-cp36m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "9ec40f1004547c55d6cd08fef846e17a", "sha256": "e50ae6f49adfc2c89b995a75a0ce2449e553dbd943a4cd1a2d959caccc20247c" }, "downloads": -1, "filename": "gnureadline-8.0.0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "9ec40f1004547c55d6cd08fef846e17a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 283758, "upload_time": "2019-07-11T20:22:04", "url": "https://files.pythonhosted.org/packages/4c/c7/64612d5cc3fd69497a4296a07143c1d19f4f5ffb4bc5cef5019b07fecec7/gnureadline-8.0.0-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "2d805ee64fc1e1ef1e7c3a6901caa176", "sha256": "88c1adf00fa8b2124751d7a6a4f8701cf8677d5caccdb16f6a6b24b3ae4f97c0" }, "downloads": -1, "filename": "gnureadline-8.0.0-cp37-cp37m-macosx_10_6_intel.whl", "has_sig": true, "md5_digest": "2d805ee64fc1e1ef1e7c3a6901caa176", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 153663, "upload_time": "2019-07-10T21:25:04", "url": "https://files.pythonhosted.org/packages/04/9a/5e1b7f0d133c63dcf63e22b44af8b21b0dc7f5057b21af285f128616fee7/gnureadline-8.0.0-cp37-cp37m-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "c25d94d30ced6f6b899023d4c7dd409b", "sha256": "15518acd534a84d8cd3b2431aeca85132c4892600bf3a64edd76ed265909476c" }, "downloads": -1, "filename": "gnureadline-8.0.0-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "c25d94d30ced6f6b899023d4c7dd409b", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 283893, "upload_time": "2019-07-11T20:22:12", "url": "https://files.pythonhosted.org/packages/2b/36/60b53a1793af9a60539b5ee6fed4f3702280bd5a88ab41600a51510002a1/gnureadline-8.0.0-cp37-cp37m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "c90e10bee71fdcef5cd052643b15d573", "sha256": "650986355bfdbe767fd7e9ce4df20ac4993f8c3b60f0829b3c1f951ce31be846" }, "downloads": -1, "filename": "gnureadline-8.0.0-cp38-cp38-macosx_10_6_intel.whl", "has_sig": true, "md5_digest": "c90e10bee71fdcef5cd052643b15d573", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 153819, "upload_time": "2019-07-10T21:25:09", "url": "https://files.pythonhosted.org/packages/4f/e9/161c53c3551cb84fea222b003124a79b8782c04674e10be2c411b23e86f0/gnureadline-8.0.0-cp38-cp38-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "47951eb3fc606de8319bb5ef898e63cf", "sha256": "61eef72ed02dad415ede49752e972a1d2bd8c35c1e4464565d7effd806c99476" }, "downloads": -1, "filename": "gnureadline-8.0.0.tar.gz", "has_sig": true, "md5_digest": "47951eb3fc606de8319bb5ef898e63cf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3056344, "upload_time": "2019-07-10T21:17:41", "url": "https://files.pythonhosted.org/packages/b2/e9/0f3c62faa8e471541d77068f440b4f5df8f396a3760fccf1b88697e282a8/gnureadline-8.0.0.tar.gz" } ] }