werkzeug.exceptions.BadRequestKeyError: 400 Bad Request: The browser (or proxy) sent a request that this server could not understand.1 크롤링 사이트 만드는 도중 발생한 Bad Request Error // flask, crawling, bad request 작업 환경 : Visual Studio Code 버전 : Python 3.10.2 | flask 2.1.3 flask로 작성 중이고 templates/index.html 더보기 크롤링할 키워드 페이지수 Submit 템플릿에서 메인이 될 index.html은 부트 스트랩을 사용해 크롤링할 키워드와 페이지수를 입력받는 태그 두 개를 각각 input1, input2 이름을 주어 태그를 통해 /result로 보냅니다. POST로요 app.py 더보기 from flask import Flask, render_template, request app = Flask(__name__) @app.route('/') def hello(): return render_template('index.html') @app.route.. 2022. 8. 17. 이전 1 다음