Notice
Recent Posts
Recent Comments
Link
목록Create (1)
코알못
파이썬으로 구현시 정말 간단하게 QRCode 생성이 가능하다 ㅎ 1. 설치 $ pip install qrcode 2. 파이썬 코드 작성 $ vi qr_create.py import qrcode qr_img = qrcode.make('https://co-de.tistory.com/') qr_img.save('/Users/hongyoolee/document/study/qrcode/test_qr.png') // :wq! 하여 저장한다. 3. 실행 $ python qr_create.py 실행 시 [ModuleNotFoundError: No module named 'Image'] 오류 발생 한다면 아래와 같이 라이브러리 추가로 설치 한다. // 이미지 생성을 위한 라이브러리 설치 $ pip install pill..
PYTHON
2021. 6. 1. 18:19