diff --git a/PKG-INFO b/PKG-INFO index c88669b..d6293b1 100644 --- a/PKG-INFO +++ b/PKG-INFO @@ -1,4 +1,4 @@ -Metadata-Version: 1.1 +Metadata-Version: 2.1 Name: PyQRCode Version: 1.2.1 Summary: A QR code generator written purely in Python with SVG, EPS, PNG and terminal output. @@ -6,79 +6,7 @@ Author: Michael Nooner Author-email: mnooner256@gmail.com License: BSD -Description: ======== - PyQRCode - ======== - - .. contents:: - - The pyqrcode module is a QR code generator that is simple to use and written - in pure python. The module can automates most of the building process for - creating QR codes. Most codes can be created using only two lines of code! - - Unlike other generators, all of the helpers can be controlled manually. You are - free to set any or all of the properties of your QR code. - - QR codes can be saved as SVG, PNG (by using the - `pypng `_ module), and plain text. They can - also be displayed directly in most Linux terminal emulators. PIL is - not used to render the image files. - - The pyqrcode module attempts to follow the QR code standard as closely as - possible. The terminology and the encodings used in pyqrcode come directly - from the standard. This module also follows the algorithm laid out in the - standard. - - **Homepage**: https://github.com/mnooner256/pyqrcode - - **Documentation**: http://pythonhosted.org/PyQRCode/ - - Requirements - ============ - - The pyqrcode module only requires Python 2.6, Python 2.7, or Python 3. You may - want to install `pypng `_ in order to - render PNG files, but it is optional. Note, pypng is a pure python PNG writer - which does not require any other libraries. - - Installation - ============ - - Installation is simple. It can be installed from pip using the following - command:: - - $ pip install pyqrcode - - Or from the terminal:: - - $ python setup.py install - - - Usage - ===== - - The pyqrcode module aims to be as simple to use as possible. Below is a simple - example of creating a QR code for a URL. The code is rendered out as an svg - file. - :: - - >>> import pyqrcode - >>> url = pyqrcode.create('http://uca.edu') - >>> url.svg('uca-url.svg', scale=8) - >>> url.eps('uca-url.eps', scale=2) - >>> print(url.terminal(quiet_zone=1)) - - The pyqrcode module, while easy to use, is powerful. You can set every - property of the QR code. If you install the optional - `pypng `_ module, you can - render the code as a PNG image. Below is a more complex example:: - - >>> big_code = pyqrcode.create('0987654321', error='L', version=27, mode='binary') - >>> big_code.png('code.png', scale=6, module_color=[0, 0, 0, 128], background=[0xff, 0xff, 0xcc]) - >>> big_code.show() - Keywords: qrcode,qr -Platform: UNKNOWN Classifier: Development Status :: 4 - Beta Classifier: Environment :: Console Classifier: Intended Audience :: Developers @@ -91,3 +19,75 @@ Classifier: Programming Language :: Python :: 3 Classifier: Programming Language :: Python :: 2.6 Classifier: Programming Language :: Python :: 2.7 +Provides-Extra: PNG + +======== +PyQRCode +======== + +.. contents:: + +The pyqrcode module is a QR code generator that is simple to use and written +in pure python. The module can automates most of the building process for +creating QR codes. Most codes can be created using only two lines of code! + +Unlike other generators, all of the helpers can be controlled manually. You are +free to set any or all of the properties of your QR code. + +QR codes can be saved as SVG, PNG (by using the +`pypng `_ module), and plain text. They can +also be displayed directly in most Linux terminal emulators. PIL is +not used to render the image files. + +The pyqrcode module attempts to follow the QR code standard as closely as +possible. The terminology and the encodings used in pyqrcode come directly +from the standard. This module also follows the algorithm laid out in the +standard. + +**Homepage**: https://github.com/mnooner256/pyqrcode + +**Documentation**: http://pythonhosted.org/PyQRCode/ + +Requirements +============ + +The pyqrcode module only requires Python 2.6, Python 2.7, or Python 3. You may +want to install `pypng `_ in order to +render PNG files, but it is optional. Note, pypng is a pure python PNG writer +which does not require any other libraries. + +Installation +============ + +Installation is simple. It can be installed from pip using the following +command:: + + $ pip install pyqrcode + +Or from the terminal:: + + $ python setup.py install + + +Usage +===== + +The pyqrcode module aims to be as simple to use as possible. Below is a simple +example of creating a QR code for a URL. The code is rendered out as an svg +file. +:: + + >>> import pyqrcode + >>> url = pyqrcode.create('http://uca.edu') + >>> url.svg('uca-url.svg', scale=8) + >>> url.eps('uca-url.eps', scale=2) + >>> print(url.terminal(quiet_zone=1)) + +The pyqrcode module, while easy to use, is powerful. You can set every +property of the QR code. If you install the optional +`pypng `_ module, you can +render the code as a PNG image. Below is a more complex example:: + + >>> big_code = pyqrcode.create('0987654321', error='L', version=27, mode='binary') + >>> big_code.png('code.png', scale=6, module_color=[0, 0, 0, 128], background=[0xff, 0xff, 0xcc]) + >>> big_code.show() diff --git a/PyQRCode.egg-info/PKG-INFO b/PyQRCode.egg-info/PKG-INFO index c88669b..d6293b1 100644 --- a/PyQRCode.egg-info/PKG-INFO +++ b/PyQRCode.egg-info/PKG-INFO @@ -1,4 +1,4 @@ -Metadata-Version: 1.1 +Metadata-Version: 2.1 Name: PyQRCode Version: 1.2.1 Summary: A QR code generator written purely in Python with SVG, EPS, PNG and terminal output. @@ -6,79 +6,7 @@ Author: Michael Nooner Author-email: mnooner256@gmail.com License: BSD -Description: ======== - PyQRCode - ======== - - .. contents:: - - The pyqrcode module is a QR code generator that is simple to use and written - in pure python. The module can automates most of the building process for - creating QR codes. Most codes can be created using only two lines of code! - - Unlike other generators, all of the helpers can be controlled manually. You are - free to set any or all of the properties of your QR code. - - QR codes can be saved as SVG, PNG (by using the - `pypng `_ module), and plain text. They can - also be displayed directly in most Linux terminal emulators. PIL is - not used to render the image files. - - The pyqrcode module attempts to follow the QR code standard as closely as - possible. The terminology and the encodings used in pyqrcode come directly - from the standard. This module also follows the algorithm laid out in the - standard. - - **Homepage**: https://github.com/mnooner256/pyqrcode - - **Documentation**: http://pythonhosted.org/PyQRCode/ - - Requirements - ============ - - The pyqrcode module only requires Python 2.6, Python 2.7, or Python 3. You may - want to install `pypng `_ in order to - render PNG files, but it is optional. Note, pypng is a pure python PNG writer - which does not require any other libraries. - - Installation - ============ - - Installation is simple. It can be installed from pip using the following - command:: - - $ pip install pyqrcode - - Or from the terminal:: - - $ python setup.py install - - - Usage - ===== - - The pyqrcode module aims to be as simple to use as possible. Below is a simple - example of creating a QR code for a URL. The code is rendered out as an svg - file. - :: - - >>> import pyqrcode - >>> url = pyqrcode.create('http://uca.edu') - >>> url.svg('uca-url.svg', scale=8) - >>> url.eps('uca-url.eps', scale=2) - >>> print(url.terminal(quiet_zone=1)) - - The pyqrcode module, while easy to use, is powerful. You can set every - property of the QR code. If you install the optional - `pypng `_ module, you can - render the code as a PNG image. Below is a more complex example:: - - >>> big_code = pyqrcode.create('0987654321', error='L', version=27, mode='binary') - >>> big_code.png('code.png', scale=6, module_color=[0, 0, 0, 128], background=[0xff, 0xff, 0xcc]) - >>> big_code.show() - Keywords: qrcode,qr -Platform: UNKNOWN Classifier: Development Status :: 4 - Beta Classifier: Environment :: Console Classifier: Intended Audience :: Developers @@ -91,3 +19,75 @@ Classifier: Programming Language :: Python :: 3 Classifier: Programming Language :: Python :: 2.6 Classifier: Programming Language :: Python :: 2.7 +Provides-Extra: PNG + +======== +PyQRCode +======== + +.. contents:: + +The pyqrcode module is a QR code generator that is simple to use and written +in pure python. The module can automates most of the building process for +creating QR codes. Most codes can be created using only two lines of code! + +Unlike other generators, all of the helpers can be controlled manually. You are +free to set any or all of the properties of your QR code. + +QR codes can be saved as SVG, PNG (by using the +`pypng `_ module), and plain text. They can +also be displayed directly in most Linux terminal emulators. PIL is +not used to render the image files. + +The pyqrcode module attempts to follow the QR code standard as closely as +possible. The terminology and the encodings used in pyqrcode come directly +from the standard. This module also follows the algorithm laid out in the +standard. + +**Homepage**: https://github.com/mnooner256/pyqrcode + +**Documentation**: http://pythonhosted.org/PyQRCode/ + +Requirements +============ + +The pyqrcode module only requires Python 2.6, Python 2.7, or Python 3. You may +want to install `pypng `_ in order to +render PNG files, but it is optional. Note, pypng is a pure python PNG writer +which does not require any other libraries. + +Installation +============ + +Installation is simple. It can be installed from pip using the following +command:: + + $ pip install pyqrcode + +Or from the terminal:: + + $ python setup.py install + + +Usage +===== + +The pyqrcode module aims to be as simple to use as possible. Below is a simple +example of creating a QR code for a URL. The code is rendered out as an svg +file. +:: + + >>> import pyqrcode + >>> url = pyqrcode.create('http://uca.edu') + >>> url.svg('uca-url.svg', scale=8) + >>> url.eps('uca-url.eps', scale=2) + >>> print(url.terminal(quiet_zone=1)) + +The pyqrcode module, while easy to use, is powerful. You can set every +property of the QR code. If you install the optional +`pypng `_ module, you can +render the code as a PNG image. Below is a more complex example:: + + >>> big_code = pyqrcode.create('0987654321', error='L', version=27, mode='binary') + >>> big_code.png('code.png', scale=6, module_color=[0, 0, 0, 128], background=[0xff, 0xff, 0xcc]) + >>> big_code.show() diff --git a/PyQRCode.egg-info/requires.txt b/PyQRCode.egg-info/requires.txt index 1612941..7005017 100644 --- a/PyQRCode.egg-info/requires.txt +++ b/PyQRCode.egg-info/requires.txt @@ -1,4 +1,3 @@ - [PNG] -pypng>=0.0.13 \ No newline at end of file +pypng>=0.0.13 diff --git a/debian/changelog b/debian/changelog index 572039d..e3a55ea 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,11 +1,12 @@ -python-pyqrcode (1.2.1-5) UNRELEASED; urgency=medium +python-pyqrcode (1.2.1+git20160619.1.674a77b-1) UNRELEASED; urgency=medium * Bump debhelper from old 12 to 13. * Set upstream metadata fields: Bug-Database, Bug-Submit, Repository, Repository-Browse. * Update standards version to 4.6.0, no changes needed. + * New upstream snapshot. - -- Debian Janitor Wed, 31 Aug 2022 19:21:18 -0000 + -- Debian Janitor Fri, 04 Nov 2022 15:52:53 -0000 python-pyqrcode (1.2.1-4) unstable; urgency=medium diff --git a/setup.cfg b/setup.cfg index 861a9f5..8bfd5a1 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,4 @@ [egg_info] tag_build = tag_date = 0 -tag_svn_revision = 0