Skip to main content

Python 2 to the power of 3. A lightweight porting helper library.

Project description

Eight is a Python module that provides a minimalist compatibility layer between Python 3 and 2. Eight lets you write code for Python 3.3+ while providing limited compatibility with Python 2.7 with no code changes. Eight is inspired by six, nine, and python-future, but is more lightweight, easier to use, and unambiguously biased toward Python 3 code: if you remove eight from your code, it will continue to function exactly as it did with eight on Python 3.

To write code for Python 3 that is portable to Python 2, you may also want to read Armin Ronacher’s excellent Python 3 porting guide, as well as the official porting guide.

Writing from eight import * in your code is a no-op in Python 3. In Python 2, it binds a bunch of Python 3 names to their Python 2 equivalents. Also, if you need to import a module or module member that was renamed in Python 3, writing from eight import <module> will do the right thing (equivalent to import <module> on Python 3 and import <old_name> as <module> on Python 2). Finally, eight can optionally wrap your standard streams to use text, not bytes (see below).

Installation

pip install eight

Synopsis

from eight import *
from eight import queue
from eight.collections import UserList, deque

If you use print, division, non-ASCII literals, or relative imports, you should also add this future import at the top of each source file:

from __future__ import (print_function, division, unicode_literals, absolute_import)

Wrapping stdio

Eight provides wrappers for sys.stdin, sys.stdout, and sys.stderr to make them (and methods that use them) behave like they do on Python 3. Specifically, in Python 3 these streams accept text data, and their .buffer attributes refer to the underlying streams that accept bytes. Eight uses the io module to do the same for you, but subclasses the TextIOWrapper class for sys.stdout and sys.stderr to coerce non-unicode input to unicode on Python 2 (otherwise, because of the Python 2 semantics, things like exception printing cease to work).

To enable stdio wrapping, use the following:

import eight
eight.wrap_stdio()

To revert the effects of this on any of the streams, use the detach method, e.g. sys.stdin = sys.stdin.detach() (but remember to condition this on eight.USING_PYTHON2). See the io module documentation for more information.

Selecting from the buffet

You can see what from eight import * will do by running IPython and typing import eight, then eight.<TAB>. Here is a full list of what’s available:

  • ascii

  • bytes

  • chr

  • filter

  • hex

  • input

  • int

  • map

  • oct

  • open

  • range

  • round

  • str

  • super

  • zip

You can import these symbols by listing them explicitly. If for any reason you see an issue with importing them all (which is recommended), you can of course import a subset.

In addition to names imported by from eight import *, the following modules are available and must be imported by name:

TODO

Acknowledgments

Python-future for doing a bunch of heavy lifting on backports of Python 3 features.

License

Licensed under the terms of the Apache License, Version 2.0.

https://travis-ci.org/kislyuk/eight.png https://coveralls.io/repos/kislyuk/eight/badge.png?branch=master https://pypip.in/v/eight/badge.png https://pypip.in/d/eight/badge.png

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

eight-0.2.0.tar.gz (6.0 kB view details)

Uploaded Source

File details

Details for the file eight-0.2.0.tar.gz.

File metadata

  • Download URL: eight-0.2.0.tar.gz
  • Upload date:
  • Size: 6.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for eight-0.2.0.tar.gz
Algorithm Hash digest
SHA256 5d3a222e241a5c0e3685839bb4d968a1a7398305750f45c96406cee13d4b5a83
MD5 f1c355469eeea8fea01470a9e58610e5
BLAKE2b-256 00704419df62461720b895de539093105843bc242a712cd43214f9e4dea19693

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