728x90
qrcode 라이브러리 설치
- pip install qrcode
import qrcode
qr_data = 'www.naver.com'
qr_img = qrcode.make(qr_data) // qrcode.make로 이미지를 만들어 qr_img 변수에 바인딩
save_path = qr_data + '.png'
qr_img.save(save_path) // 이미지 저장
728x90
'Software > Python' 카테고리의 다른 글
[Python] 번역 프로그램 (0) | 2022.11.28 |
---|---|
[Python] 컴퓨터 정보 확인 코드 (0) | 2022.11.24 |
[Python] 텍스트를 음성으로 변환 (0) | 2022.11.24 |
[Python] ModuleNotFoundError (0) | 2022.11.23 |
[Python] 윈도우에서 pip로 설치할 때 '액세스가 거부되었습니다' 해결법 (0) | 2022.11.23 |