forked from carol80/fraud-detection
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathupdates.py
86 lines (57 loc) · 1.97 KB
/
updates.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
77
78
79
80
81
82
83
84
85
86
from auth import *
#fetching
# add do a variable
db = connect_firebase()
#and now the hard/ easy part that took me a while to figure out:
# notice the value inside the .child, it should be the parent name with all the cats keys
values = db.child('cats').get()
# adding all to a dataframe you'll need to use the .val()
data = pd.DataFrame(values.val())
----------------
#fetching spams
docs = db.child('spam').where(u'1', u'==', True).stream()
for doc in docs:
print(u'{} => {}'.format(doc.id, doc.to_dict()))
----------------
docs = db.child('spam').where(u'0', u'==', True).stream()
for doc in docs:
print(u'{} => {}'.format(doc.id, doc.to_dict()))
----------------------------------
GET
def spam(mails = "", spam = "1"):
data = db.get()
return json.dumps(data.val())
@app.route('/spam', methods=['GET'])
def get_spam():
response = spam()
if response != "null":
return response
else:
return make_response(jsonify({'error': 'Not found'}), 404)
-------------------------------------
def inbox(mails = "", spam = "0"):
data = db.get()
return json.dumps(data.val())
@app.route('/inbox', methods=['GET'])
def get_inbox():
response = inbox()
if response != "null":
return response
else:
return make_response(jsonify({'error': 'Not found'}), 404)
--------------------------------------
POST
def putMail(name):
db.child(name).set("")
@app.route('/', methods=['POST'])
def create_mail():
if not request.json or not 'mail' in request.json:
abort(400)
putMail(request.json['mail'])
return jsonify({'catalogo': request.json['catalogo']}), 201
@app.route('/api/v1.0/catalogos/<string:catalogo>', methods=['PUT'])
def create_area(catalogo):
if not request.json or not 'area' in request.json:
abort(400)
putArea(catalogo,request.json['area'])
return jsonify({'area': request.json['area']}), 201