Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
ajeetkumar01
/
Agri-App
like
1
Running
App
Files
Files
Community
ajeetkumar01
commited on
Mar 21, 2024
Commit
b4c8cbd
·
verified
·
1 Parent(s):
2e55175
added the app.py file
Browse files
Files changed (1)
hide
show
app.py
+10
-0
app.py
ADDED
Viewed
@@ -0,0 +1,10 @@
1
+
from flask import Flask, render_template
2
+
3
+
app = Flask(__name__)
4
+
5
+
@app.route('/')
6
+
def index():
7
+
return render_template('index.html')
8
+
9
+
if __name__ == '__main__':
10
+
app.run(debug=True)