We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ab4688 commit 4208c62Copy full SHA for 4208c62
qr_gen.py
@@ -0,0 +1,9 @@
1
+#!/usr/bin/env python3
2
+
3
+from pathlib import Path
4
+from pyqrcode import QRCode
5
6
+home = str(Path.home())
7
8
+url = QRCode("https://github.com/pythoninthegrass/python_template")
9
+url.png(Path(f"{home}/Downloads/repo.png"), scale=8)
0 commit comments