forked from alxndrtarasov/iroha-rest
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.py
More file actions
executable file
·71 lines (58 loc) · 1.44 KB
/
app.py
File metadata and controls
executable file
·71 lines (58 loc) · 1.44 KB
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
#!flask/bin/python
from flask import Flask, jsonify
from flask import make_response
from flask import request
from flask import abort
app = Flask(__name__)
items = [
{
"id": "1",
"address": "house1",
"insured_total": 1000,
},
{
"id": "2",
"address": "house2",
"insured_total": 10000,
}
]
#
# @app.route('/iroha_rest/api/v1.0/items', methods=['POST'])
# def put_item():
# item = {
# "id": tasks[-1]['id'] + 1,
# "address": request.json["address"],
# "insured_total": request.json["insured_total"]
# }
# items.append(item)
# return jsonify({'item': item}), 201
tasks = [
{
'id': 1,
'title': u'Buy groceries',
'description': u'Milk, Cheese, Pizza, Fruit, Tylenol',
'done': False
},
{
'id': 2,
'title': u'Learn Python',
'description': u'Need to find a good Python tutorial on the web',
'done': False
}
]
@app.route('/todo/api/v1.0/tasks', methods=['POST'])
def create_task():
task = {
'id': tasks[-1]['id'] + 1,
'title': request.json['title'],
'description': request.json.get('description', ""),
'done': False
}
tasks.append(task)
return jsonify({'task': task}), 201
@app.route('/todo/api/v1.0/tasks', methods=['GET'])
def get_tasks():
return jsonify({'tasks': tasks})
if __name__ == '__main__':
app.run(debug=True)
# Result: