<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="de">
	<id>https://wiki.ixheim.de/index.php?action=history&amp;feed=atom&amp;title=Python_QR_Code_Generator</id>
	<title>Python QR Code Generator - Versionsgeschichte</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.ixheim.de/index.php?action=history&amp;feed=atom&amp;title=Python_QR_Code_Generator"/>
	<link rel="alternate" type="text/html" href="https://wiki.ixheim.de/index.php?title=Python_QR_Code_Generator&amp;action=history"/>
	<updated>2026-06-28T22:46:22Z</updated>
	<subtitle>Versionsgeschichte dieser Seite in Xinux Wiki</subtitle>
	<generator>MediaWiki 1.35.1</generator>
	<entry>
		<id>https://wiki.ixheim.de/index.php?title=Python_QR_Code_Generator&amp;diff=20139&amp;oldid=prev</id>
		<title>Thomas.will: Die Seite wurde neu angelegt: „&lt;syntaxhighlight&gt; #!/usr/bin/python3 #sudo pip3 install qrcodegen from __future__ import print_function from qrcodegen import *    def print_qr(qrcode):…“</title>
		<link rel="alternate" type="text/html" href="https://wiki.ixheim.de/index.php?title=Python_QR_Code_Generator&amp;diff=20139&amp;oldid=prev"/>
		<updated>2020-02-16T14:44:23Z</updated>

		<summary type="html">&lt;p&gt;Die Seite wurde neu angelegt: „&amp;lt;syntaxhighlight&amp;gt; #!/usr/bin/python3 #sudo pip3 install qrcodegen from __future__ import print_function from qrcodegen import *    def print_qr(qrcode):…“&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Neue Seite&lt;/b&gt;&lt;/p&gt;&lt;div&gt;&amp;lt;syntaxhighlight&amp;gt;&lt;br /&gt;
#!/usr/bin/python3&lt;br /&gt;
#sudo pip3 install qrcodegen&lt;br /&gt;
from __future__ import print_function&lt;br /&gt;
from qrcodegen import *&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
def print_qr(qrcode):&lt;br /&gt;
        &amp;quot;&amp;quot;&amp;quot;Prints the given QrCode object to the console.&amp;quot;&amp;quot;&amp;quot;&lt;br /&gt;
        border = 4&lt;br /&gt;
        for y in range(-border, qrcode.get_size() + border):&lt;br /&gt;
                for x in range(-border, qrcode.get_size() + border):&lt;br /&gt;
                        print(u&amp;quot;\u2588 &amp;quot;[1 if qrcode.get_module(x,y) else 0] * 2, end=&amp;quot;&amp;quot;)&lt;br /&gt;
                print()&lt;br /&gt;
        print()&lt;br /&gt;
&lt;br /&gt;
qrtext=input(&amp;quot;your text?: &amp;quot;)&lt;br /&gt;
&lt;br /&gt;
qr0 = QrCode.encode_text(str(qrtext), QrCode.Ecc.MEDIUM)&lt;br /&gt;
svg = qr0.to_svg_str(4)&lt;br /&gt;
print_qr(qr0)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;/div&gt;</summary>
		<author><name>Thomas.will</name></author>
	</entry>
</feed>