summaryrefslogtreecommitdiff
path: root/README.md
blob: 98ac9c228feec308a23fb86e3e164f8c8a179daf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
pies!
====================

The simplest (and tastiest) way to write one program that runs on both Python 2.6+ and Python 3.


Let's eat some pies!
======================

Installing pies

    pip install pies

or if you prefer:

    easy_install pies


Integrating pies into your diet
======================

Using and integrating pies into an existing Python 2.6 code base (to achieve Python 3 dual support) couldn't be simpler:

    from pies import *

You will then simply have to make some simple changes to your Python code:

- u'string' -> u('string')
- my_iterable.iteritems -> iteritems(my_iterable)
- my_iterable.itervalues -> itervalues(my_iterable)
- my_iterable.iterkeys -> iterkeys(my_iterable)

The following will work unchanged in Python 3 after import (using the Python 2 syntax):

- xrange
- long
- unicode
- urllib.quote
- urllib.quote_plus
- urllib.unquote
- urllib.unquote_plus
- urllib.urlencode

pies will also automatically install and include the most optimal version of OrderedDict for the python environment
in use, so you should remove any other explicit imports of OrderedDict.