항해99 - 사전준비(4주차)

✍️ Flask 시작하기

Flask 프레임워크: 서버를 구동시켜주는 편한 코드 모음.

vscode에서 진행할때는 flask-snippets를 다운로드 해준다.
git bash에 pip install flask를 입력하여 flask 설치

templates 폴더에 index.html 파일을 만들어준다.

따로 repository를 만들어주지 않았기 때문에 가상환경(venv)를 생성하지 않았다.
생성 방법은 python -m venv ./venv 입력

VSCODE에서 Python Flask 개발환경 구축하기

  • 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 )

좋은 웹페이지 즐겨찾기