Skip to content
This repository has been archived by the owner on Apr 5, 2024. It is now read-only.

Commit

Permalink
modify link
Browse files Browse the repository at this point in the history
  • Loading branch information
jhk1090 committed Mar 17, 2023
1 parent fd86ebe commit de7260b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Python >= 3.7.9
BeautifulSoap 모듈을 이용해 한국의 코로나19 확진자 현황을 크롤링합니다.\
그리고 크롤링 된 정보를 tkinter 모듈를 이용해 gui로 표시합니다.

> 크롤링 된 사이트: http://ncov.mohw.go.kr/bdBoardList_Real.do?brdId=1&brdGubun=11
> 크롤링 된 사이트: https://ncov.kdca.go.kr/bdBoardList_Real.do?brdId=1&brdGubun=11&ncvContSeq=&contSeq=&board_id=&gubun=
## 주의사항
사이트를 크롤링하다보니 사이트가 다운되거나 잘못된 정보가 제공되었을 경우\
Expand Down
2 changes: 1 addition & 1 deletion main.pyw
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ ctypes.windll.shcore.SetProcessDpiAwareness(1)
root = Tk()
root.title("코로나 확진자 현황")
root.geometry("480x360")
url = 'http://ncov.mohw.go.kr/bdBoardList_Real.do?brdId=1&brdGubun=11'
url = 'https://ncov.kdca.go.kr/bdBoardList_Real.do?brdId=1&brdGubun=11&ncvContSeq=&contSeq=&board_id=&gubun='
target = request.urlopen(url)
soup = BeautifulSoup(target, "html.parser")
now = time.strftime("%Y. %m. %d")
Expand Down

0 comments on commit de7260b

Please sign in to comment.