에러 모음

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 로  연결해야됨!

.

.

.

.

.

.

오늘도 새로운 걸 알아간다.

나자신 화이팅.