-
localhost:5000 연결 안됨에러 모음 2023. 1. 5. 19:31
@app.route("/bucket", methods=["GET"]) def bucket_get(): buckets_list = list(db.bucket.find({},{'_id':False})) return jsonify({'buckets':buckets_list}) if __name__ == '__main__': app.run('0.0.0.0', port=5001, debug=True)
제일 하단에 port=5001 이므로
localhost:5001 로 연결해야됨!
.
.
.
.
.
.
오늘도 새로운 걸 알아간다.
나자신 화이팅.
'에러 모음' 카테고리의 다른 글
SyntaxError: EOL while scanning string literal (0) 2023.01.07 400 Bad Request (0) 2023.01.06 pymongo.errors.InvalidURI (0) 2023.01.05 ModuleNotFoundError: No module named 'certifi' (0) 2023.01.05 IndentationError: unexpected indent 들여쓰기 오류 (0) 2023.01.04