웹개발 일지
-
웹개발일지(서버, 클라이언트 연결) #004웹개발 일지 2021. 12. 18. 11:21
여전히 헤매는 중. 반복으로 익숙해져야 하는 단계 @app.route("/homework", methods=["POST"]) def homework_post(): name_receive = request.form['name_give'] comment_receive = request.form['comment_give'] doc = { 'name': name_receive, 'comment': comment_receive } 그나마 다행인건 이 부분은 그래도 할 수 있다 문제는 왜 어떨땐 안돼서 머리좀 식히고 오면 멀쩡히 되냐고... 아무것도 안건드렸는데 $.ajax({ type: 'POST', url: '/homework', data: {'name_give':name, 'comment_give':comme..
-
웹개발일지 #003웹개발 일지 2021. 12. 16. 12:10
import requests from bs4 import BeautifulSoup headers = {'User-Agent' : 'Mozilla/5.0 (Windows NT 10.0; Win64; x64)AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.86 Safari/537.36'} data = requests.get('https://www.genie.co.kr/chart/top200?ditc=M&rtm=N&ymd=20210701',headers=headers) soup = BeautifulSoup(data.text, 'html.parser') #body-content > div.newest-list > div > table > tbody > tr:n..