-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.py
76 lines (56 loc) · 1.86 KB
/
app.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
from flask import Flask, render_template, redirect, request
from flask_sqlalchemy import SQLAlchemy
from datetime import datetime
app = Flask(__name__)
app.config["SQLALCHEMY_DATABASE_URI"] = "sqlite:///database.db"
db = SQLAlchemy(app)
class MyTask(db.Model):
id = db.Column(db.Integer, primary_key=True)
content = db.Column(db.String(100), nullable=False)
complete = db.Column(db.Integer, default=0)
created = db.Column(db.DateTime, default=datetime.utcnow)
def __repr__(self) -> str:
return f"Task {self.id}"
@app.route("/", methods=["POST", "GET"])
def index():
if request.method == "POST":
current_task = request.form["content"]
new_task = MyTask(content=current_task)
try:
db.session.add(new_task)
db.session.commit()
return redirect("/")
except Exception as e:
print(f"ERROR:{e}")
return f"ERROR:{e}"
else:
tasks = MyTask.query.order_by(MyTask.created).all()
return render_template("index.html", tasks=tasks)
@app.route("/delete/<int:id>")
def delete(id: int):
delete_task = MyTask.query.get_or_404(id)
try:
db.session.delete(delete_task)
db.session.commit()
return redirect("/")
except Exception as e:
print(f"ERROR:{e}")
return f"ERROR:{e}"
# Edit
@app.route("/edit/<int:id>", methods=["GET", "POST"])
def edit(id: int):
task = MyTask.query.get_or_404(id)
if request.method == "POST":
task.content = request.form["content"]
try:
db.session.commit()
return redirect("/")
except Exception as e:
print(f"ERROR:{e}")
return f"ERROR:{e}"
else:
return render_template("edit.html", task=task)
if __name__ in "__main__":
with app.app_context():
db.create_all()
app.run(debug=True)