Skip to main content

The standard Python readline extension statically linked against the GNU readline library.

Project description

Stand-alone GNU readline module

GitHub Workflow Status

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:

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.

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

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

gnureadline-8.1.2.tar.gz (3.1 MB view details)

Uploaded Source

Built Distributions

gnureadline-8.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (638.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

gnureadline-8.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (637.0 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

gnureadline-8.1.2-cp311-cp311-macosx_11_0_arm64.whl (149.8 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

gnureadline-8.1.2-cp311-cp311-macosx_10_9_x86_64.whl (155.3 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

gnureadline-8.1.2-cp311-cp311-macosx_10_9_universal2.whl (287.8 kB view details)

Uploaded CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64)

gnureadline-8.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (636.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

gnureadline-8.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (635.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

gnureadline-8.1.2-cp310-cp310-macosx_11_0_arm64.whl (149.8 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

gnureadline-8.1.2-cp310-cp310-macosx_10_9_x86_64.whl (155.2 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

gnureadline-8.1.2-cp310-cp310-macosx_10_9_universal2.whl (287.8 kB view details)

Uploaded CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64)

gnureadline-8.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (636.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

gnureadline-8.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (634.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

gnureadline-8.1.2-cp39-cp39-macosx_11_0_arm64.whl (149.8 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

gnureadline-8.1.2-cp39-cp39-macosx_10_9_x86_64.whl (155.2 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

gnureadline-8.1.2-cp39-cp39-macosx_10_9_universal2.whl (287.8 kB view details)

Uploaded CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64)

gnureadline-8.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (633.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

gnureadline-8.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (631.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

gnureadline-8.1.2-cp38-cp38-macosx_11_0_arm64.whl (149.7 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

gnureadline-8.1.2-cp38-cp38-macosx_10_9_x86_64.whl (155.1 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

gnureadline-8.1.2-cp38-cp38-macosx_10_9_universal2.whl (287.6 kB view details)

Uploaded CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64)

gnureadline-8.1.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (630.8 kB view details)

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

gnureadline-8.1.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (628.4 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

gnureadline-8.1.2-cp37-cp37m-macosx_10_9_x86_64.whl (155.0 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

gnureadline-8.1.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (628.5 kB view details)

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

gnureadline-8.1.2-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (626.3 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

gnureadline-8.1.2-cp36-cp36m-macosx_10_9_x86_64.whl (154.8 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

Details for the file gnureadline-8.1.2.tar.gz.

File metadata

  • Download URL: gnureadline-8.1.2.tar.gz
  • Upload date:
  • Size: 3.1 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for gnureadline-8.1.2.tar.gz
Algorithm Hash digest
SHA256 4262a6aa356ab22ef642f43a7f94eb42a72d6f0c532edb4e8c6b933f573056d2
MD5 28839a3424012f3532213f1717d7e3ae
BLAKE2b-256 f2e848c0162a732522c7b4568da35ed07d0db07d725f640676b4c9a8ec874d1a

See more details on using hashes here.

File details

Details for the file gnureadline-8.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for gnureadline-8.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8c4690d6c89dbead0958b19263ae67ef995e6109d6bc880cb0e40720cb1ba301
MD5 a9feca563f587031a1d005a0c3c7675b
BLAKE2b-256 35830c0824c7b4d8d1bbbcd920cbc91e6ea5950ef60ca6629c00484f6c191d62

See more details on using hashes here.

File details

Details for the file gnureadline-8.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for gnureadline-8.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3903cba2987d42340f1d85c38d3780e954c95e64bfe1839002c7818aa63f8ac3
MD5 85920c0eb9844d39588342e79be9f26c
BLAKE2b-256 7b242d046400eaaa5862659dff4febb38a364c36c1b1a3c1ab747df0b15def88

See more details on using hashes here.

File details

Details for the file gnureadline-8.1.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for gnureadline-8.1.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 74f2538ac15ff4ef9534823abdef077bb34c7dd343e204a36d978f09e168462f
MD5 3c3c82cb188aa32a6b76b3099ba40024
BLAKE2b-256 830365d82e9290ae8a2a3b2285dc8aebd304437a6ba7ad03823438730525ab45

See more details on using hashes here.

File details

Details for the file gnureadline-8.1.2-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for gnureadline-8.1.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c1bcb32e3b63442570d6425055aa6d5c3b6e8b09b9c7d1f8333e70203166a5a3
MD5 73ca2464f2a3fdf8f69967539a0d625a
BLAKE2b-256 a7f277195ef94f56b61ad881685e3a87cc39a9972e01ccacd555acaa001a92a0

See more details on using hashes here.

File details

Details for the file gnureadline-8.1.2-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for gnureadline-8.1.2-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 aa29a18594277ea691f92b0c6627d594c0f3387a6685e2e42038ab3f718c794e
MD5 ddc103b25cf80df67f44067cd7e485c4
BLAKE2b-256 bb72b9ce28859d83a186dab03ce19ececc057818028a781795e0dd7f1ffc0611

See more details on using hashes here.

File details

Details for the file gnureadline-8.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for gnureadline-8.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1e3a8aaf1d61d351c16ad2d3425caf5768603ff5d0e86ba61da9b8756bdd1b95
MD5 a820ae914217472feccc3803f237abf2
BLAKE2b-256 46dc5c9e5471807a47fe9317a2fa259bdb461ba8156c6b6f815c1975ebb31249

See more details on using hashes here.

File details

Details for the file gnureadline-8.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for gnureadline-8.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 deb921c2cbc14671bb81f3f33d9363a9d0720203b5d716baee32e51c399e914b
MD5 08984da25f18a298556f5ceb2d4dc8dc
BLAKE2b-256 a6ce9a7ab382fff22e8e6800d127197c38fcbbad815258f73624e2468ef07c91

See more details on using hashes here.

File details

Details for the file gnureadline-8.1.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for gnureadline-8.1.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2753aa1e46b4260b38da424c6a7da7a3ddac161a0b4e6fb71c1093e9ef3d2e73
MD5 0531fae4a99a1b072a123352d65fec66
BLAKE2b-256 569b770a37612ae5f00a6282b3302b6423e2cffddcc9d9e4a3381260231eb6ae

See more details on using hashes here.

File details

Details for the file gnureadline-8.1.2-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for gnureadline-8.1.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2ce5c49ecc54e1df0193e90422806a5940f908553206689aeaa04bc959d3aa9a
MD5 b14f25b8e1c7a28f3b462b8bdcbc61c6
BLAKE2b-256 9510f28e0d34f70452e381629983ff7338fea9107c2b5507927eada531693420

See more details on using hashes here.

File details

Details for the file gnureadline-8.1.2-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for gnureadline-8.1.2-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 861936c9b362d96152af2d73ccb6f3e901e70f0e4a2e7e62f4e226e91d349edb
MD5 763ebdb2af8aceb0bbb28768e80ca6c1
BLAKE2b-256 f2bf6a6ac0996562c0f801f6d2ad585aab057e7c140af6ece2257143e1e6a32c

See more details on using hashes here.

File details

Details for the file gnureadline-8.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for gnureadline-8.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5e1e2d34b0c4ad81c7b00019fafa6de2faf6969c55fa58229e26267cae34047e
MD5 5ae32fe8c81afd8c8c695fac4f622106
BLAKE2b-256 445c302af642266ae71b83a8e5a847f6e070f40ee594153fd5558326b4889561

See more details on using hashes here.

File details

Details for the file gnureadline-8.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for gnureadline-8.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 33ea248385e0d87a3fada38c9164a5756861aa59d6ee010c8be30eeb41f41b49
MD5 ffdaaae2db1baf57505a6371e17c4bc0
BLAKE2b-256 2bbb99ff0ce5ca85d0010976bd10188a358066a3e278474ae701c5330e741e20

See more details on using hashes here.

File details

Details for the file gnureadline-8.1.2-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for gnureadline-8.1.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c402bc6e107beb015ae18c3d2e11f28375f049e464423ead88b35affe80f9be0
MD5 84f180bf0c424424a5a3ab52a5a30463
BLAKE2b-256 ee8b0058acfddde12b7294f0bdd3e9626dddce934f9f466afaf4c3f4101f23b7

See more details on using hashes here.

File details

Details for the file gnureadline-8.1.2-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for gnureadline-8.1.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2816bac8be6bc0e3aa2301acac76e308137eeef1b618c9e0c95c1f89a139a4d8
MD5 c1e4b7ae847bac70d7abfd10284e8720
BLAKE2b-256 b8475048a31b8c40583897d9de8acba0c5956ff20d0c53e0c45b39c22ac04398

See more details on using hashes here.

File details

Details for the file gnureadline-8.1.2-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for gnureadline-8.1.2-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 17a651e0c49d4b44e8ccf8992edc5a544e33ed9695d3b940ef002858c2215744
MD5 d5e486fa99f401967db28bb0fc3b075e
BLAKE2b-256 963b5449e48ca85339cf8fff8a633d76b32c46626fe8cbafdcbbd04ae419d2a7

See more details on using hashes here.

File details

Details for the file gnureadline-8.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for gnureadline-8.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5fde3e6417d9004381e8e9835e0a89d81d2d77eeace9364d2e3d9fb64054d449
MD5 f683de1dd5595483ba864f9ea142c236
BLAKE2b-256 33ba5ec49ad323e93b7516cc855aac5e47deeff7c4c926d31357d86f1645971c

See more details on using hashes here.

File details

Details for the file gnureadline-8.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for gnureadline-8.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ecdc4368bd2f7ae9a22de31b024455222082cb49b98ee69ffd0a59734bf648e1
MD5 cf57b39a398ce33dfd41eee25ca1dd30
BLAKE2b-256 908d8d2cf4b1bdc339d05cb41bdf7cd27e76898a98b73da243e630a88fa363e4

See more details on using hashes here.

File details

Details for the file gnureadline-8.1.2-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for gnureadline-8.1.2-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4ad9b10409d969ba42acbf89e58352cf3043a5155c2ee677d061e292336b5479
MD5 dea804713e7a83a240832702533de32d
BLAKE2b-256 0f62c9d4d173394ceddfc8778ce8e6afba7f4d21bb3a669b4b9ed0aee0fbe5fb

See more details on using hashes here.

File details

Details for the file gnureadline-8.1.2-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for gnureadline-8.1.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c7971653083a48049abd52baa9c8c0188aee362e7b2dd236fe51ecd4e6bc9bbe
MD5 2fae53f7f574b3d4d04b9765fbf7b586
BLAKE2b-256 f2bc3268cf381428cedc8751a977185c2e79494fb3347a6acd38388d6f6a240c

See more details on using hashes here.

File details

Details for the file gnureadline-8.1.2-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for gnureadline-8.1.2-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 264f22e865975a3c2ac1183f431dddd8ff7de5a645b89a801c6a276d800f49f3
MD5 868c1818c3618b6fcea8283b86f40248
BLAKE2b-256 5cafe2f69abbe10d5f369bfe5767a58190f17b3fdf12619b34b5db76ddd71d45

See more details on using hashes here.

File details

Details for the file gnureadline-8.1.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for gnureadline-8.1.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b422ff3a78e281ee2e19b0eff70efa48396284bbefa86b83438d668ea9d038a3
MD5 d5f18d3d25c98fd6f1fc0887c869dc73
BLAKE2b-256 fab7a85fb5422ce1c3c96762ff139281bd1d115614ba62fd7d60ff214508cf3a

See more details on using hashes here.

File details

Details for the file gnureadline-8.1.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for gnureadline-8.1.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e84e903de1514043e6a22866a1973c2ad5f5717f78e9d54e4d6809c48fbd3d81
MD5 2ede30a0ffe6c0f9b3a31c76cefa7322
BLAKE2b-256 df7586a5b9aba4440fddbae7d133e97bb6124c578d0eea0cc776b1129dfb2e0b

See more details on using hashes here.

File details

Details for the file gnureadline-8.1.2-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for gnureadline-8.1.2-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 49df5a432e4ff39cee1b0632c6d0e5fb304757113e502d70b50e33d9ffa47372
MD5 83f6e3840ecb08a564c8414e4738cd15
BLAKE2b-256 519fad3fde90a357a5bff9d2ade6ca5d832ef8f6ff45f585e26bdc9e5ecfbc83

See more details on using hashes here.

File details

Details for the file gnureadline-8.1.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for gnureadline-8.1.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 194bafa818d0fc3d46f8d71a8811a297a493c1264d3e2d0a71b1b1ff05f8fc15
MD5 78cf0cf511d6a22d0c2a63101c3b9cb4
BLAKE2b-256 4c3b7a9ee343cb910792097280a75ce13332ec41783a22fd7a3d29fe7e764838

See more details on using hashes here.

File details

Details for the file gnureadline-8.1.2-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for gnureadline-8.1.2-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 de3d8ea66f1b5d00ed843b8925fc07476b8c838c38e584af8639c6a976a43d08
MD5 ac4ef277b5b4b981af892bac9452c1b8
BLAKE2b-256 f34089d7e8d63093e2817386b25f18dbb1fcba52cfaec61052c3d7042efc443a

See more details on using hashes here.

File details

Details for the file gnureadline-8.1.2-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for gnureadline-8.1.2-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 72da8bac1eb24b6c8237a33d7019a3f004a3d5ba867337175ed764831d9a2c99
MD5 02efd9816cba59d98d51958fd95b497e
BLAKE2b-256 83d67d0daf35e145803f1e9a51e7efb51dc58ac9536f7d9649d1e1ee643d7acd

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page