forked from bitly/pyqrencode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
33 lines (21 loc) · 944 Bytes
/
README
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
Python bindings for libqrencode (http://fukuchi.org/works/qrencode/index.en.html) using Cython
Credit and inspiration to:
- http://pyqrcode.sourceforge.net/
(this is essentially a cleaned up version of the Encoder, eliminating all the Java dependencies)
- libqrencode, by Fukuchi Kentaro
http://megaui.net/fukuchi/works/qrencode/index.en.html
- PyQrCodec, by Stefano Pedemonte
http://www.pedemonte.eu/pyqr/index.py/pyqrhome
Tested on:
* Mac OSX 10.6.4 Snow Leopard, Python 2.6.1 (64-bit)
* CentOS 5.5, Python 2.6.4 (64-bit)
Pre-requisites on all platforms:
--------------------------------
* you need libqrencode somewhere in your LD path (/usr/local/lib)
* you need qrencode.h somewhere on your include path (/usr/local/include)
** if you want to play with the code generation you need Cython (tested with 0.13)
$ easy_install cython
$ cython qrencode.pyx
Installation
------------
$ python setup.py install