팬명록 서버, 클라이언트 만들기

김희정·2022년 12월 7일
0

프로젝트 준비----

  • flask 폴더 구조 만들기
    -static, templates 폴더 + app.py 만들기! 이젠 너무 익숙하죠?
    -templates 폴더 안에 index.html 만들기

패키지 설치하기----
5개 : flask, pymongo, dnspython, bs4, requests

app.py-----
from flask import Flask, render_template, request, jsonify
app = Flask(name)

from pymongo import MongoClient
client = MongoClient('mongodb+srv://test:sparta@cluster0.yroj1zb.mongodb.net/Cluster0?retryWrites=true&w=majority')
db = client.dbsparta

@app.route('/')
def home():
return render_template('index.html')

// POST방식코딩
@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
}
db.homework.insert_one(doc)

return jsonify({'msg': 'POST 응원 남기기 완료!'})

//GET방식코딩
@app.route("/homework", methods=["GET"])
def homework_get():
comment_list = list(db.homework.find({}, {'_id': False}))
return jsonify({'comments': comment_list})

if name == 'main':
app.run('0.0.0.0', port=5000, debug=True)

index.html-----

profile
홍익인간

0개의 댓글