반응형
[PYTHON] python QRCode 만들기
pyqrcode
>> pip install pyqrcode
pypng
>> pip install pypng
Pillow (PIL Fork)
>> pip install Pillow
1.pip 를 업데이트 하고 설치 하는 것이 좋다.
2.Prompt는 "관리자로 실행" 해서 설치 하시오.
python.exe -m pip install --upgrade pip
* 설치된 패키지 확인
pip list -v
""" pyqrcode
https://pypi.org/project/PyQRCode/
>> pip install pyqrcode
pypng
https://pypi.org/project/pypng/
>> pip install pypng
Pillow (PIL Fork)
https://pillow.readthedocs.io/en/latest/installation.html
>> pip install Pillow
1.pip 를 업데이트 하고 설치 하는 것이 좋다.
2.Prompt는 "관리자로 실행" 해서 설치 하시오.
python.exe -m pip install --upgrade pip
* 설치된 패키지 확인
pip list -v
"""
import os
import sys
os.environ['JAVA_OPTS'] = 'Xmx4096M'
import pyqrcode
import png
from PIL import Image
print(" os.getcwd() : ", os.getcwd())
prePath = "./Project/QR/"
file_name = prePath + "QRCode.png"
link = input("URL을 입력하세요~ : ")
qr_code = pyqrcode.create(link)
qr_code.png( file_name, scale=5)
Image.open(file_name)
반응형
'프로그래밍 > Python' 카테고리의 다른 글
[PYTHON] Gradio 웹앱 만들기 (0) | 2023.02.16 |
---|---|
[PYTHON] (most likely due to a circular import) 에러 발생 할때 (0) | 2023.02.14 |
[PYTHON] FLASK 플라스크 (0) | 2023.02.07 |
[python] Python 3.11: 진정으로 즐길 수 있는 새로운 기능 (0) | 2023.01.25 |
[PYTHON] 데이터 과학자를 위한 6가지 Python 팁 (0) | 2023.01.25 |