항해99 - 사전준비(4주차)
✍️ Flask 시작하기
Flask 프레임워크: 서버를 구동시켜주는 편한 코드 모음.
vscode에서 진행할때는 flask-snippets
를 다운로드 해준다.
git bash에 pip install flask
를 입력하여 flask 설치
templates 폴더에 index.html 파일을 만들어준다.
따로 repository를 만들어주지 않았기 때문에 가상환경(venv)를 생성하지 않았다.
생성 방법은 python -m venv ./venv
입력
- app.py 기본 코드
from flask import Flask, render_template
app = Flask(__name__)
@app.route('/')
def home():
return render_template('index.html')
@app.route('/mypage')
def mypage():
return 'This is mypage!'
if __name__ == '__main__':
app.run('0.0.0.0',port=5000,debug=True)
✍️ 본격 API 만들기
ajax 통신을 위해 jquery code를 import 해준다.
- GET 요청 확인 Ajax 코드
$.ajax({
type: "GET",
url: "/test?title_give=봄날은간다",
data: {},
success: function(response){
console.log(response)
}
})
- app.py에 code 추가
from flask import Flask, render_template, request, jsonify
app = Flask(__name__)
@app.route('/')
def home():
return render_template('index.html')
@app.route('/test', methods=['GET'])
def test_get():
title_receive = request.args.get('title_give')
print(title_receive)
return jsonify({'result':'success', 'msg': '이 요청은 GET!'})
if __name__ == '__main__':
app.run('0.0.0.0',port=5000,debug=True)
- post 요청 ajax code
$.ajax({
type: "POST",
url: "/test",
data: { title_give:'봄날은간다' },
success: function(response){
console.log(response)
}
})
- post 요청 API 코드
@app.route('/test', methods=['POST'])
def test_post():
title_receive = request.form['title_give']
print(title_receive)
return jsonify({'result':'success', 'msg': '이 요청은 POST!'})
flask
,pymongo
,dnspython
기본 패키지 설치
(+requests
bs4
)
Author And Source
이 문제에 관하여(항해99 - 사전준비(4주차)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@leejuhwan/항해99-사전준비4주차저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)