Код: Выделить всё
@app.route("/add", methods=["POST"])
def post_new_cafe():
new_cafe = Cafe(
name=request.form.get("name"),
map_url=request.form.get("map_url"),
img_url=request.form.get("img_url"),
location=request.form.get("loc"),
has_sockets=bool(request.form.get("sockets")),
has_toilet=bool(request.form.get("toilet")),
has_wifi=bool(request.form.get("wifi")),
can_take_calls=bool(request.form.get("calls")),
seats=request.form.get("seats"),
coffee_price=request.form.get("coffee_price"),
)
db.session.add(new_cafe)
db.session.commit()
return jsonify(response={"success": "Successfully added the new cafe."})
Код: Выделить всё
Cafe&Wifi API
Welcome to the Cafe & Wifi API
Код: Выделить всё
Method Not Allowed
The method is not allowed for the requested URL.
Подробнее здесь: https://stackoverflow.com/questions/787 ... thon-flask