Skip to content

Commit

Permalink
cleanup and flask setup
Browse files Browse the repository at this point in the history
  • Loading branch information
gautamb02 committed Mar 16, 2024
1 parent b2b24f9 commit 7e00504
Show file tree
Hide file tree
Showing 30 changed files with 30 additions and 32,147 deletions.
23 changes: 0 additions & 23 deletions .gitignore

This file was deleted.

79 changes: 0 additions & 79 deletions README.md

This file was deleted.

1 change: 1 addition & 0 deletions model/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
env/
15 changes: 15 additions & 0 deletions model/app.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
from flask import Flask, request, jsonify
from flask_cors import CORS

app = Flask(__name__)
CORS(app)

@app.route('/',methods=["GET"])
def home():
return jsonify({"message":"Working Test"})



if __name__ == "__main__":
app.run(debug=True)

14 changes: 14 additions & 0 deletions model/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
blinker==1.7.0
click==8.1.7
colorama==0.4.6
dlib==19.24.2
face-recognition==1.3.0
face-recognition-models==0.3.0
Flask==3.0.2
itsdangerous==2.1.2
Jinja2==3.1.3
MarkupSafe==2.1.5
numpy==1.26.4
opencv-python==4.9.0.80
pillow==10.2.0
Werkzeug==3.0.1
Loading

0 comments on commit 7e00504

Please sign in to comment.