gnureadline


Namegnureadline JSON
Version 8.1.2 PyPI version JSON
download
home_pagehttp://github.com/ludwigschwardt/python-gnureadline
SummaryThe standard Python readline extension statically linked against the GNU readline library.
upload_time2022-06-14 12:25:43
maintainerLudwig Schwardt, Sridhar Ratnakumar
docs_urlNone
author
requires_python
license
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            Stand-alone GNU readline module
===============================

.. image:: https://img.shields.io/github/workflow/status/ludwigschwardt/python-gnureadline/Build%20and%20test%20package
   :alt: GitHub Workflow Status
   :target: https://github.com/ludwigschwardt/python-gnureadline/actions/workflows/test.yaml

First... STOP
-------------

Consider this: do you really need this package in 2022? You typically don't if

- you use the Python provided by a standard Linux distribution like Ubuntu,
  Debian, CentOS, etc. *(It already uses the proper readline.)*
- you run **Windows**
  *(It won't work! Try* `pyreadline`_ or `prompt_toolkit`_ *instead.)*
- you use the Python provided by **Homebrew** or Fink on macOS
  *(It has real readline already!)*
- you want it for `IPython`_
  *(It switched to* `prompt_toolkit`_ *in version 5.0.)*
- you use a Python distribution like Anaconda or Enthought / Canopy
  *(Again, real readline.)*

You might need it if

- you use Python provided by MacPorts or the system on macOS
  *(Python compiled against libedit.)*
- you use a Python distribution like ActivePython on Linux or macOS
  *(This used to ship without readline.)*
- you want to get the latest bug fixes and features in either the readline
  library or its Python module *(Typically when stuck on older systems.)*

Still interested?
-----------------

Some platforms, such as macOS, do not ship with `GNU readline`_ installed.
The readline extension module in the standard library of Mac "system" Python
uses NetBSD's `editline`_ (libedit) library instead, which is a readline
replacement with a less restrictive software license.

As the alternatives to GNU readline do not have fully equivalent functionality,
it is useful to add proper readline support to these platforms. This module
achieves this by bundling the standard Python readline module with the GNU
readline source code, which is compiled and statically linked to it. The end
result is a package which is simple to install and requires no extra shared
libraries.

The module is called *gnureadline* so as not to clash with the readline module
in the standard library. This keeps polite installers such as `pip`_ happy and
is sufficient for shells such as `IPython`_. **Please take note that IPython
does not depend on gnureadline anymore since version 5.0 as it now uses**
`prompt_toolkit`_ **instead.**

A typical use case is to override readline in your code like this:

.. code:: python

  try:
      import gnureadline as readline
  except ImportError:
      import readline

If you want to use this module as a drop-in replacement for readline in the
standard Python shell, it has to be installed with the less polite easy_install
script found in `setuptools`_. **Please take note that easy_install has been
deprecated for a while and is about to be dropped from setuptools. Proceed at
your own risk!**

The module can be used with both Python 2.x and 3.x, and has been tested with
Python versions 2.6, 2.7, and 3.2 to 3.10. The first three numbers of the module
version reflect the version of the underlying GNU readline library (major,
minor and patch level), while any additional fourth number distinguishes
different module updates based on the same readline library.

This module is usually unnecessary on Linux and other Unix systems with default
readline support. An exception is if you have a Python distribution that does
not include GNU readline due to licensing restrictions (such as ActiveState's
ActivePython in the past). If you are using Windows, which also ships without
GNU readline, you might want to consider using the `pyreadline`_ module instead,
which is a readline replacement written in pure Python that interacts with the
Windows clipboard.

The latest development version is available from the `GitHub repository`_.

.. _GNU readline: http://www.gnu.org/software/readline/
.. _editline: http://www.thrysoee.dk/editline/
.. _pip: http://www.pip-installer.org/
.. _IPython: http://ipython.org/
.. _prompt_toolkit: http://python-prompt-toolkit.readthedocs.io/en/stable/
.. _setuptools: https://pypi.python.org/pypi/setuptools
.. _pyreadline: http://pypi.python.org/pypi/pyreadline
.. _GitHub repository: http://github.com/ludwigschwardt/python-gnureadline


History
=======

8.1.2 (2022-06-14)
------------------
* #57, #58: Now supports arm64 architecture (Apple M1, Raspberry Pi)
* Moved CI from Travis to GitHub Actions and added cibuildwheel
* Uses Python 3.11.0a7 readline.c (commit aac29af, 2021-10-13), OK for 3.10, 3.9
* Uses Python 3.8.8 readline.c (commit f9d7c12, 2021-02-16), also OK for 3.7
* Uses Python 2.7.18 readline.c (commit f32bcf8, 2019-11-07)
* Updated to build against readline 8.1 (patch-level 2)

8.0.0 (2019-07-10)
------------------

* Uses Python 3.7.4 readline.c (commit ef10f88, 2019-03-20), also OK for 3.8
* Uses Python 3.6.8 readline.c (commit 25555e0, 2018-12-08), also OK for 3.5
* Uses Python 3.4.4 readline.c (commit 7462b64, 2015-11-02)
* Uses Python 2.7.16 readline.c (commit 89b5ea2, 2018-12-19)
* Updated to build against readline 8.0

6.3.8 (2017-10-20)
------------------

* #42, #44: Address compiler issues (avoid Cygwin, fix multi-arch on gcc)
* #40: Make GPLv3 license explicit
* #39: Look for bash shell in more places
* Uses Python 2.x readline.c from hg 2.7 branch (95814:192f9efe4a38)
* Uses Python 3.x readline.c from hg 3.4 / 3.5 branch (95813:ec6ed10d611e)
* Updated to build against readline 6.3 (patch-level 8)

6.3.3 (2014-04-08)
------------------

* Major rework of OS X build process (detect arches, no custom flags)
* #20, #22, #28: Various issues addressed by new streamlined build
* #28: Use $CC or cc to compile libreadline instead of default gcc
* #35: Workaround for clang from Xcode 5.1 and Mac OS X 10.9.2
* Uses Python 3.4 readline.c from hg 3.4 branch (89086:3110fb3095a2)
* Updated to build against readline 6.3 (patch-level 3)

6.2.5 (2014-02-19)
------------------

* Renamed module to *gnureadline* to improve installation with pip
* #23, #25-27, #29-33: Tweaks and package reworked to gnureadline
* Uses Python 2.x readline.c from hg 2.7 branch (89084:6b10943a5916)
* Uses Python 3.x readline.c from hg 3.3 branch (89085:6adac0d9b933)
* Updated to build against readline 6.2 (patch-level 5)

6.2.4.1 (2012-10-22)
--------------------

* #21: Fixed building on Python.org 3.3 / Mac OS 10.8

6.2.4 (2012-10-17)
------------------

* #15: Improved detection of compilers before Xcode 4.3
* Uses Python 3.x readline.c from v3.3.0 tag (changeset 73997)
* Updated to build against readline 6.2 (patch-level 4)

6.2.2 (2012-02-24)
------------------

* #14: Fixed compilation with Xcode 4.3 on Mac OS 10.7
* Updated to build against readline 6.2 (patch-level 2)

6.2.1 (2011-08-31)
------------------

* #10: Fixed '_emacs_meta_keymap' missing symbol on Mac OS 10.7
* #7: Fixed SDK version check to work with Mac OS 10.7 and later
* Uses Python 2.x readline.c from release27-maint branch (r87358)
* Uses Python 3.x readline.c from release32-maint branch (r88446)

6.2.0 (2011-06-02)
------------------

* #5: Removed '-arch ppc' on Mac OS 10.6, as Snow Leopard supports Intel only
* Updated to build against readline 6.2 (patch-level 1)

6.1.0 (2010-09-20)
------------------

* Changed version number to reflect readline version instead of Python version
* #4: Updated to build against readline 6.1 (patch-level 2)
* #2: Python 3 support
* Uses Python 2.x readline.c from release27-maint branch (r83672)
* Uses Python 3.x readline.c from r32a2 tag (r84541)
* Source code moved to GitHub
* Additional maintainer: Sridhar Ratnakumar

2.6.4 (2009-11-26)
------------------

* Added -fPIC to compiler flags to fix linking error on 64-bit Ubuntu
* Enabled all readline functionality specified in pyconfig.h macros
* Uses readline.c from Python svn trunk (r75725), which followed 2.6.4 release
* Patched readline.c to replace Py_XDECREF calls with the safer Py_CLEAR
* Fixed compilation error on Mac OS 10.4 with XCode older than version 2.4

2.6.1 (2009-11-18)
------------------

* Updated package to work with Mac OS 10.6 (Snow Leopard), which ships with
  Python 2.6.1
* Uses readline.c from Python 2.6.1 release
* Backported "spurious trailing space" bugfix from Python svn trunk (see e.g.
  https://bugs.launchpad.net/python/+bug/470824 for details on bug)
* Updated to build against readline 6.0 (patch-level 4)
* Now builds successfully on Linux (removed Mac-specific flags in this case),
  and still supports Mac OS 10.4 and 10.5

2.5.1 (2008-05-28)
------------------

* Updated package to work with Mac OS 10.5 (Leopard), which ships with Python
  2.5.1
* Uses readline.c from Python 2.5.1 release
* Updated to build against readline 5.2 (patch-level 12)
* New maintainer: Ludwig Schwardt

2.4.2 (2005-12-26)
------------------

* Original package by Bob Ippolito, supporting Python 2.3 / 2.4 on Mac OS 10.3
  (Panther) and 10.4 (Tiger)
* Builds against readline 5.1

            

Raw data

            {
    "_id": null,
    "home_page": "http://github.com/ludwigschwardt/python-gnureadline",
    "name": "gnureadline",
    "maintainer": "Ludwig Schwardt, Sridhar Ratnakumar",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "ludwig.schwardt@gmail.com, srid@srid.ca",
    "keywords": "",
    "author": "",
    "author_email": "",
    "download_url": "https://files.pythonhosted.org/packages/f2/e8/48c0162a732522c7b4568da35ed07d0db07d725f640676b4c9a8ec874d1a/gnureadline-8.1.2.tar.gz",
    "platform": null,
    "description": "Stand-alone GNU readline module\n===============================\n\n.. image:: https://img.shields.io/github/workflow/status/ludwigschwardt/python-gnureadline/Build%20and%20test%20package\n   :alt: GitHub Workflow Status\n   :target: https://github.com/ludwigschwardt/python-gnureadline/actions/workflows/test.yaml\n\nFirst... STOP\n-------------\n\nConsider this: do you really need this package in 2022? 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`_ or `prompt_toolkit`_ *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\nA typical use case is to override readline in your code like this:\n\n.. code:: python\n\n  try:\n      import gnureadline as readline\n  except ImportError:\n      import readline\n\nIf you want to use this module as a drop-in replacement for readline in the\nstandard Python shell, it has to be installed with the less polite easy_install\nscript found in `setuptools`_. **Please take note that easy_install has been\ndeprecated for a while and is about to be dropped from setuptools. Proceed at\nyour own risk!**\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.10. 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\nActivePython in the past). If you are using Windows, which also ships without\nGNU readline, 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.. _pyreadline: http://pypi.python.org/pypi/pyreadline\n.. _GitHub repository: http://github.com/ludwigschwardt/python-gnureadline\n\n\nHistory\n=======\n\n8.1.2 (2022-06-14)\n------------------\n* #57, #58: Now supports arm64 architecture (Apple M1, Raspberry Pi)\n* Moved CI from Travis to GitHub Actions and added cibuildwheel\n* Uses Python 3.11.0a7 readline.c (commit aac29af, 2021-10-13), OK for 3.10, 3.9\n* Uses Python 3.8.8 readline.c (commit f9d7c12, 2021-02-16), also OK for 3.7\n* Uses Python 2.7.18 readline.c (commit f32bcf8, 2019-11-07)\n* Updated to build against readline 8.1 (patch-level 2)\n\n8.0.0 (2019-07-10)\n------------------\n\n* Uses Python 3.7.4 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), also OK for 3.5\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\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "The standard Python readline extension statically linked against the GNU readline library.",
    "version": "8.1.2",
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "md5": "763ebdb2af8aceb0bbb28768e80ca6c1",
                "sha256": "861936c9b362d96152af2d73ccb6f3e901e70f0e4a2e7e62f4e226e91d349edb"
            },
            "downloads": -1,
            "filename": "gnureadline-8.1.2-cp310-cp310-macosx_10_9_universal2.whl",
            "has_sig": true,
            "md5_digest": "763ebdb2af8aceb0bbb28768e80ca6c1",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 287773,
            "upload_time": "2022-06-14T12:26:19",
            "upload_time_iso_8601": "2022-06-14T12:26:19.468097Z",
            "url": "https://files.pythonhosted.org/packages/f2/bf/6a6ac0996562c0f801f6d2ad585aab057e7c140af6ece2257143e1e6a32c/gnureadline-8.1.2-cp310-cp310-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "b14f25b8e1c7a28f3b462b8bdcbc61c6",
                "sha256": "2ce5c49ecc54e1df0193e90422806a5940f908553206689aeaa04bc959d3aa9a"
            },
            "downloads": -1,
            "filename": "gnureadline-8.1.2-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": true,
            "md5_digest": "b14f25b8e1c7a28f3b462b8bdcbc61c6",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 155219,
            "upload_time": "2022-06-14T12:26:22",
            "upload_time_iso_8601": "2022-06-14T12:26:22.530665Z",
            "url": "https://files.pythonhosted.org/packages/95/10/f28e0d34f70452e381629983ff7338fea9107c2b5507927eada531693420/gnureadline-8.1.2-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "0531fae4a99a1b072a123352d65fec66",
                "sha256": "2753aa1e46b4260b38da424c6a7da7a3ddac161a0b4e6fb71c1093e9ef3d2e73"
            },
            "downloads": -1,
            "filename": "gnureadline-8.1.2-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": true,
            "md5_digest": "0531fae4a99a1b072a123352d65fec66",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 149795,
            "upload_time": "2022-06-14T12:26:26",
            "upload_time_iso_8601": "2022-06-14T12:26:26.542035Z",
            "url": "https://files.pythonhosted.org/packages/56/9b/770a37612ae5f00a6282b3302b6423e2cffddcc9d9e4a3381260231eb6ae/gnureadline-8.1.2-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "08984da25f18a298556f5ceb2d4dc8dc",
                "sha256": "deb921c2cbc14671bb81f3f33d9363a9d0720203b5d716baee32e51c399e914b"
            },
            "downloads": -1,
            "filename": "gnureadline-8.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": true,
            "md5_digest": "08984da25f18a298556f5ceb2d4dc8dc",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 635309,
            "upload_time": "2022-06-14T12:26:32",
            "upload_time_iso_8601": "2022-06-14T12:26:32.479740Z",
            "url": "https://files.pythonhosted.org/packages/a6/ce/9a7ab382fff22e8e6800d127197c38fcbbad815258f73624e2468ef07c91/gnureadline-8.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "a820ae914217472feccc3803f237abf2",
                "sha256": "1e3a8aaf1d61d351c16ad2d3425caf5768603ff5d0e86ba61da9b8756bdd1b95"
            },
            "downloads": -1,
            "filename": "gnureadline-8.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": true,
            "md5_digest": "a820ae914217472feccc3803f237abf2",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 636589,
            "upload_time": "2022-06-14T12:26:37",
            "upload_time_iso_8601": "2022-06-14T12:26:37.297515Z",
            "url": "https://files.pythonhosted.org/packages/46/dc/5c9e5471807a47fe9317a2fa259bdb461ba8156c6b6f815c1975ebb31249/gnureadline-8.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "ddc103b25cf80df67f44067cd7e485c4",
                "sha256": "aa29a18594277ea691f92b0c6627d594c0f3387a6685e2e42038ab3f718c794e"
            },
            "downloads": -1,
            "filename": "gnureadline-8.1.2-cp311-cp311-macosx_10_9_universal2.whl",
            "has_sig": true,
            "md5_digest": "ddc103b25cf80df67f44067cd7e485c4",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 287824,
            "upload_time": "2022-10-28T09:56:44",
            "upload_time_iso_8601": "2022-10-28T09:56:44.284016Z",
            "url": "https://files.pythonhosted.org/packages/bb/72/b9ce28859d83a186dab03ce19ececc057818028a781795e0dd7f1ffc0611/gnureadline-8.1.2-cp311-cp311-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "73ca2464f2a3fdf8f69967539a0d625a",
                "sha256": "c1bcb32e3b63442570d6425055aa6d5c3b6e8b09b9c7d1f8333e70203166a5a3"
            },
            "downloads": -1,
            "filename": "gnureadline-8.1.2-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": true,
            "md5_digest": "73ca2464f2a3fdf8f69967539a0d625a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 155266,
            "upload_time": "2022-10-28T09:56:46",
            "upload_time_iso_8601": "2022-10-28T09:56:46.883495Z",
            "url": "https://files.pythonhosted.org/packages/a7/f2/77195ef94f56b61ad881685e3a87cc39a9972e01ccacd555acaa001a92a0/gnureadline-8.1.2-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "3c3c82cb188aa32a6b76b3099ba40024",
                "sha256": "74f2538ac15ff4ef9534823abdef077bb34c7dd343e204a36d978f09e168462f"
            },
            "downloads": -1,
            "filename": "gnureadline-8.1.2-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": true,
            "md5_digest": "3c3c82cb188aa32a6b76b3099ba40024",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 149787,
            "upload_time": "2022-10-28T09:56:49",
            "upload_time_iso_8601": "2022-10-28T09:56:49.254009Z",
            "url": "https://files.pythonhosted.org/packages/83/03/65d82e9290ae8a2a3b2285dc8aebd304437a6ba7ad03823438730525ab45/gnureadline-8.1.2-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "85920c0eb9844d39588342e79be9f26c",
                "sha256": "3903cba2987d42340f1d85c38d3780e954c95e64bfe1839002c7818aa63f8ac3"
            },
            "downloads": -1,
            "filename": "gnureadline-8.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": true,
            "md5_digest": "85920c0eb9844d39588342e79be9f26c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 636970,
            "upload_time": "2022-10-28T09:56:52",
            "upload_time_iso_8601": "2022-10-28T09:56:52.160235Z",
            "url": "https://files.pythonhosted.org/packages/7b/24/2d046400eaaa5862659dff4febb38a364c36c1b1a3c1ab747df0b15def88/gnureadline-8.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "a9feca563f587031a1d005a0c3c7675b",
                "sha256": "8c4690d6c89dbead0958b19263ae67ef995e6109d6bc880cb0e40720cb1ba301"
            },
            "downloads": -1,
            "filename": "gnureadline-8.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": true,
            "md5_digest": "a9feca563f587031a1d005a0c3c7675b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 638320,
            "upload_time": "2022-10-28T09:56:56",
            "upload_time_iso_8601": "2022-10-28T09:56:56.118376Z",
            "url": "https://files.pythonhosted.org/packages/35/83/0c0824c7b4d8d1bbbcd920cbc91e6ea5950ef60ca6629c00484f6c191d62/gnureadline-8.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "02efd9816cba59d98d51958fd95b497e",
                "sha256": "72da8bac1eb24b6c8237a33d7019a3f004a3d5ba867337175ed764831d9a2c99"
            },
            "downloads": -1,
            "filename": "gnureadline-8.1.2-cp36-cp36m-macosx_10_9_x86_64.whl",
            "has_sig": true,
            "md5_digest": "02efd9816cba59d98d51958fd95b497e",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 154768,
            "upload_time": "2022-06-14T12:26:40",
            "upload_time_iso_8601": "2022-06-14T12:26:40.015392Z",
            "url": "https://files.pythonhosted.org/packages/83/d6/7d0daf35e145803f1e9a51e7efb51dc58ac9536f7d9649d1e1ee643d7acd/gnureadline-8.1.2-cp36-cp36m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "ac4ef277b5b4b981af892bac9452c1b8",
                "sha256": "de3d8ea66f1b5d00ed843b8925fc07476b8c838c38e584af8639c6a976a43d08"
            },
            "downloads": -1,
            "filename": "gnureadline-8.1.2-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": true,
            "md5_digest": "ac4ef277b5b4b981af892bac9452c1b8",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 626251,
            "upload_time": "2022-06-14T12:26:44",
            "upload_time_iso_8601": "2022-06-14T12:26:44.938204Z",
            "url": "https://files.pythonhosted.org/packages/f3/40/89d7e8d63093e2817386b25f18dbb1fcba52cfaec61052c3d7042efc443a/gnureadline-8.1.2-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "78cf0cf511d6a22d0c2a63101c3b9cb4",
                "sha256": "194bafa818d0fc3d46f8d71a8811a297a493c1264d3e2d0a71b1b1ff05f8fc15"
            },
            "downloads": -1,
            "filename": "gnureadline-8.1.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": true,
            "md5_digest": "78cf0cf511d6a22d0c2a63101c3b9cb4",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 628454,
            "upload_time": "2022-06-14T12:26:48",
            "upload_time_iso_8601": "2022-06-14T12:26:48.461523Z",
            "url": "https://files.pythonhosted.org/packages/4c/3b/7a9ee343cb910792097280a75ce13332ec41783a22fd7a3d29fe7e764838/gnureadline-8.1.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "83f6e3840ecb08a564c8414e4738cd15",
                "sha256": "49df5a432e4ff39cee1b0632c6d0e5fb304757113e502d70b50e33d9ffa47372"
            },
            "downloads": -1,
            "filename": "gnureadline-8.1.2-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": true,
            "md5_digest": "83f6e3840ecb08a564c8414e4738cd15",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 155001,
            "upload_time": "2022-06-14T12:26:51",
            "upload_time_iso_8601": "2022-06-14T12:26:51.476205Z",
            "url": "https://files.pythonhosted.org/packages/51/9f/ad3fde90a357a5bff9d2ade6ca5d832ef8f6ff45f585e26bdc9e5ecfbc83/gnureadline-8.1.2-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "2ede30a0ffe6c0f9b3a31c76cefa7322",
                "sha256": "e84e903de1514043e6a22866a1973c2ad5f5717f78e9d54e4d6809c48fbd3d81"
            },
            "downloads": -1,
            "filename": "gnureadline-8.1.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": true,
            "md5_digest": "2ede30a0ffe6c0f9b3a31c76cefa7322",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 628430,
            "upload_time": "2022-06-14T12:26:57",
            "upload_time_iso_8601": "2022-06-14T12:26:57.069318Z",
            "url": "https://files.pythonhosted.org/packages/df/75/86a5b9aba4440fddbae7d133e97bb6124c578d0eea0cc776b1129dfb2e0b/gnureadline-8.1.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "d5f18d3d25c98fd6f1fc0887c869dc73",
                "sha256": "b422ff3a78e281ee2e19b0eff70efa48396284bbefa86b83438d668ea9d038a3"
            },
            "downloads": -1,
            "filename": "gnureadline-8.1.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": true,
            "md5_digest": "d5f18d3d25c98fd6f1fc0887c869dc73",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 630770,
            "upload_time": "2022-06-14T12:27:00",
            "upload_time_iso_8601": "2022-06-14T12:27:00.540240Z",
            "url": "https://files.pythonhosted.org/packages/fa/b7/a85fb5422ce1c3c96762ff139281bd1d115614ba62fd7d60ff214508cf3a/gnureadline-8.1.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "868c1818c3618b6fcea8283b86f40248",
                "sha256": "264f22e865975a3c2ac1183f431dddd8ff7de5a645b89a801c6a276d800f49f3"
            },
            "downloads": -1,
            "filename": "gnureadline-8.1.2-cp38-cp38-macosx_10_9_universal2.whl",
            "has_sig": true,
            "md5_digest": "868c1818c3618b6fcea8283b86f40248",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 287607,
            "upload_time": "2022-06-14T12:27:04",
            "upload_time_iso_8601": "2022-06-14T12:27:04.340587Z",
            "url": "https://files.pythonhosted.org/packages/5c/af/e2f69abbe10d5f369bfe5767a58190f17b3fdf12619b34b5db76ddd71d45/gnureadline-8.1.2-cp38-cp38-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "2fae53f7f574b3d4d04b9765fbf7b586",
                "sha256": "c7971653083a48049abd52baa9c8c0188aee362e7b2dd236fe51ecd4e6bc9bbe"
            },
            "downloads": -1,
            "filename": "gnureadline-8.1.2-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": true,
            "md5_digest": "2fae53f7f574b3d4d04b9765fbf7b586",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 155100,
            "upload_time": "2022-06-14T12:27:06",
            "upload_time_iso_8601": "2022-06-14T12:27:06.676653Z",
            "url": "https://files.pythonhosted.org/packages/f2/bc/3268cf381428cedc8751a977185c2e79494fb3347a6acd38388d6f6a240c/gnureadline-8.1.2-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "dea804713e7a83a240832702533de32d",
                "sha256": "4ad9b10409d969ba42acbf89e58352cf3043a5155c2ee677d061e292336b5479"
            },
            "downloads": -1,
            "filename": "gnureadline-8.1.2-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": true,
            "md5_digest": "dea804713e7a83a240832702533de32d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 149749,
            "upload_time": "2022-06-14T12:27:10",
            "upload_time_iso_8601": "2022-06-14T12:27:10.072198Z",
            "url": "https://files.pythonhosted.org/packages/0f/62/c9d4d173394ceddfc8778ce8e6afba7f4d21bb3a669b4b9ed0aee0fbe5fb/gnureadline-8.1.2-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "cf57b39a398ce33dfd41eee25ca1dd30",
                "sha256": "ecdc4368bd2f7ae9a22de31b024455222082cb49b98ee69ffd0a59734bf648e1"
            },
            "downloads": -1,
            "filename": "gnureadline-8.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": true,
            "md5_digest": "cf57b39a398ce33dfd41eee25ca1dd30",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 631653,
            "upload_time": "2022-06-14T12:27:15",
            "upload_time_iso_8601": "2022-06-14T12:27:15.415130Z",
            "url": "https://files.pythonhosted.org/packages/90/8d/8d2cf4b1bdc339d05cb41bdf7cd27e76898a98b73da243e630a88fa363e4/gnureadline-8.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "f683de1dd5595483ba864f9ea142c236",
                "sha256": "5fde3e6417d9004381e8e9835e0a89d81d2d77eeace9364d2e3d9fb64054d449"
            },
            "downloads": -1,
            "filename": "gnureadline-8.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": true,
            "md5_digest": "f683de1dd5595483ba864f9ea142c236",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 633518,
            "upload_time": "2022-06-14T12:27:20",
            "upload_time_iso_8601": "2022-06-14T12:27:20.106103Z",
            "url": "https://files.pythonhosted.org/packages/33/ba/5ec49ad323e93b7516cc855aac5e47deeff7c4c926d31357d86f1645971c/gnureadline-8.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "d5e486fa99f401967db28bb0fc3b075e",
                "sha256": "17a651e0c49d4b44e8ccf8992edc5a544e33ed9695d3b940ef002858c2215744"
            },
            "downloads": -1,
            "filename": "gnureadline-8.1.2-cp39-cp39-macosx_10_9_universal2.whl",
            "has_sig": true,
            "md5_digest": "d5e486fa99f401967db28bb0fc3b075e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 287766,
            "upload_time": "2022-06-14T12:27:23",
            "upload_time_iso_8601": "2022-06-14T12:27:23.014819Z",
            "url": "https://files.pythonhosted.org/packages/96/3b/5449e48ca85339cf8fff8a633d76b32c46626fe8cbafdcbbd04ae419d2a7/gnureadline-8.1.2-cp39-cp39-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "c1e4b7ae847bac70d7abfd10284e8720",
                "sha256": "2816bac8be6bc0e3aa2301acac76e308137eeef1b618c9e0c95c1f89a139a4d8"
            },
            "downloads": -1,
            "filename": "gnureadline-8.1.2-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": true,
            "md5_digest": "c1e4b7ae847bac70d7abfd10284e8720",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 155217,
            "upload_time": "2022-06-14T12:27:25",
            "upload_time_iso_8601": "2022-06-14T12:27:25.893608Z",
            "url": "https://files.pythonhosted.org/packages/b8/47/5048a31b8c40583897d9de8acba0c5956ff20d0c53e0c45b39c22ac04398/gnureadline-8.1.2-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "84f180bf0c424424a5a3ab52a5a30463",
                "sha256": "c402bc6e107beb015ae18c3d2e11f28375f049e464423ead88b35affe80f9be0"
            },
            "downloads": -1,
            "filename": "gnureadline-8.1.2-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": true,
            "md5_digest": "84f180bf0c424424a5a3ab52a5a30463",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 149800,
            "upload_time": "2022-06-14T12:27:30",
            "upload_time_iso_8601": "2022-06-14T12:27:30.060899Z",
            "url": "https://files.pythonhosted.org/packages/ee/8b/0058acfddde12b7294f0bdd3e9626dddce934f9f466afaf4c3f4101f23b7/gnureadline-8.1.2-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "ffdaaae2db1baf57505a6371e17c4bc0",
                "sha256": "33ea248385e0d87a3fada38c9164a5756861aa59d6ee010c8be30eeb41f41b49"
            },
            "downloads": -1,
            "filename": "gnureadline-8.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": true,
            "md5_digest": "ffdaaae2db1baf57505a6371e17c4bc0",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 634756,
            "upload_time": "2022-06-14T12:27:33",
            "upload_time_iso_8601": "2022-06-14T12:27:33.989206Z",
            "url": "https://files.pythonhosted.org/packages/2b/bb/99ff0ce5ca85d0010976bd10188a358066a3e278474ae701c5330e741e20/gnureadline-8.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "5ae32fe8c81afd8c8c695fac4f622106",
                "sha256": "5e1e2d34b0c4ad81c7b00019fafa6de2faf6969c55fa58229e26267cae34047e"
            },
            "downloads": -1,
            "filename": "gnureadline-8.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": true,
            "md5_digest": "5ae32fe8c81afd8c8c695fac4f622106",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 636060,
            "upload_time": "2022-06-14T12:27:37",
            "upload_time_iso_8601": "2022-06-14T12:27:37.987216Z",
            "url": "https://files.pythonhosted.org/packages/44/5c/302af642266ae71b83a8e5a847f6e070f40ee594153fd5558326b4889561/gnureadline-8.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "28839a3424012f3532213f1717d7e3ae",
                "sha256": "4262a6aa356ab22ef642f43a7f94eb42a72d6f0c532edb4e8c6b933f573056d2"
            },
            "downloads": -1,
            "filename": "gnureadline-8.1.2.tar.gz",
            "has_sig": true,
            "md5_digest": "28839a3424012f3532213f1717d7e3ae",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 3111003,
            "upload_time": "2022-06-14T12:25:43",
            "upload_time_iso_8601": "2022-06-14T12:25:43.374541Z",
            "url": "https://files.pythonhosted.org/packages/f2/e8/48c0162a732522c7b4568da35ed07d0db07d725f640676b4c9a8ec874d1a/gnureadline-8.1.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2022-06-14 12:25:43",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "ludwigschwardt",
    "github_project": "python-gnureadline",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "tox": true,
    "lcname": "gnureadline"
}
        
Elapsed time: 0.01862s