Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- Mac
- ec2
- 간단
- hive
- java
- Cluster
- Redis
- Kafka
- 예제
- 레디스
- EMR
- fastcampus
- 젠킨스
- Zeppelin
- SpringBoot
- 클러스터
- redash
- 로그인
- login
- 자동
- aws
- Docker
- gradle
- 자바
- Jenkins
- vue
- 설정
- config
- spring
- 머신러닝
Archives
- Today
- Total
목록simple (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