Convert Segno's (Micro) QR Codes into more advanced SVG documents
Project description
Segno Quark: Plugin for creating more advanced (or less usefull) QR Code SVG documents
This (experimental) Segno plugin changes the default SVG output in different ways (i.e. applying SVG filters).
Tested under PyPy, Python 2.7 and Python 3.4. Unlike Segno itself, this package does not work with Python 2.6.
Installation
Use pip to install this quark from PyPI:
$ pip install segno-quark
Usage
Once installed, the quark is automatically detected as Segno plugin and therefore available via qrcode.to_XXX(...).
Available converters
All converters use the same keyword parameters as Segno’s SVG serializer, see segno.QRCode.save() for details.
ETree
Creates a SVG QR Code and returns the SVG document as xml.etree.ElementTree.
Usage: to_etree
This converter provides no additional keyword arguments.
Pacman
Creates a QR Code with a smiley (and optional ghosts).
Usage: to_pacman
Keyword |
Description |
---|---|
pacman_color |
Color of the smiley, default: #fc0 |
dot_color |
Color of the dots which the smiley should eat, default: #fc0 |
ghosts |
Number of ghosts, default: 5. If set to 0, no ghost appears. Note: Setting this to a very high value may cause an infinite loop iff number of ghosts > number of available dark modules. Additionally, the QR Code may not be readable by common QR Code decoders. The positions of the ghosts are choosen at random. |
ghost_colors |
A tuple of colors which the ghosts may get. Default: ('#ff0c13', '#f2aeaf', '#1bb1e6', '#f97e16') Not all colors may be used, the colors for the ghosts are choosen at random. |
Example:
>>> import segno
>>> qr = segno.make_qr('Ob-La-Di, Ob-La-Da')
>>> qr.to_pacman('obladioblada.svg', scale=10, ghosts=7)
Result:
Glow
Creates a QR Code with a “glow” effect.
Usage: to_glow
Keyword |
Description |
---|---|
filter_id |
Indicates the id of the filter, default: segno-glow |
deviation |
Indicates the standard deviation for the blur operation, default: .6 |
Example:
>>> import segno
>>> qr = segno.make_qr('Ob-La-Di, Ob-La-Da')
>>> qr.to_glow('obladioblada.svg', scale=10, color='darkblue')
Result:
Blur
Creates a QR Code with a “blur” effect.
Usage: to_blur
Keyword |
Description |
---|---|
filter_id |
Indicates the id of the filter, default: segno-blur |
deviation |
Indicates the standard deviation for the blur operation, default: .3 |
Example:
>>> import segno
>>> qr = segno.make_qr('Ob-La-Di, Ob-La-Da')
>>> qr.to_blur('obladioblada.svg', scale=10, color='darkred')
Result:
Changes
0.1.1 – 2016-08-18
Initial release
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file segno-quark-0.1.1.tar.gz
.
File metadata
- Download URL: segno-quark-0.1.1.tar.gz
- Upload date:
- Size: 6.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 062fd1daeddcad82b15b27c6f31cdf9c48cb2fb05382468d8736f2d1ec0c08af |
|
MD5 | f074f8c2b49470a2762cb2cc5462a669 |
|
BLAKE2b-256 | 98858e32c5150b25b7946b15f96cb2c0d7c0a22ef7777f2f2b8f6250f74a2cde |
File details
Details for the file segno_quark-0.1.1-py2.py3-none-any.whl
.
File metadata
- Download URL: segno_quark-0.1.1-py2.py3-none-any.whl
- Upload date:
- Size: 8.7 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 163004a365b106762d5a52145c7e055c2cee389f5e3f275f46f1aba6099e72bc |
|
MD5 | e1aef695db0ce78fa871e52dcbb4ca3a |
|
BLAKE2b-256 | 6310d0b324fa112c2bbf9f7f7a2a4cf3e473538f4a1eddbdabec01485a9a67c9 |