/
ilya.petrash
/
SimplePyScripts
Обзор
Документация
Войти
/
ilya.petrash
/
SimplePyScripts
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
qrcode/qrcode__generate/main.py
30 строк
442 B
gil9red
Moved
04 июн 2023, 13:57
04 июн 2023, 13:57
63a992e
Код
Авторство
О чём код?
#!/usr/bin/env python3 # -*- coding: utf-8 -*- __author__ = "ipetrash" # SOURCE: https://github.com/lincolnloop/python-qrcode # In memory import io # pip install qrcode import qrcode text = "Hello World!" img = qrcode.make(text) io_data = io.BytesIO() img.save(io_data, "png") data = io_data.getvalue() print(data) # In file img.save("qr_code_1.png") # # In file, version 2: with open("qr_code_2.png", "wb") as f: f.write(data)