검색어 : html window.open
참고 : https://offbyone.tistory.com/312
var win = window.open("/popup.html", "PopupWin", "width=500,height=600");
참고 : https://offbyone.tistory.com/241
<script>
var timer = setInterval(function(){
console.log("Hello!!");
}, 1000)
</script>
예시
// 중지를 위해 ID 보관
var timerId = null;
// 시계 시작
function StartClock() {
PrintTime();
timerId = setInterval(PrintTime, 1000);
}
// 시계 중지
function StopClock() {
if(timerId != null) {
/* CLEARINTERVAL 해줘서 더이상 주기적으로 실행안되게끔 해준다.*/
clearInterval(timerId);
}
}
참고 : https://blog.naver.com/chandong83/221767329995
pip install qrcode pillow
pip install qrcode[pil]
import qrcode
# Hello World! 로 QR 코드 생성
img = qrcode.make('Hello World!')
# 생성된 이미지를 helloworld_qrcode.png로 저장
img.save('static/qrcode.png')