-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathserver.py
90 lines (69 loc) · 2.16 KB
/
server.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
87
88
89
90
from flask import Flask, jsonify, redirect
from symptoms import HealthCare
app = Flask (__name__)
# Client for API requests
client = HealthCare()
######################
# INDEX #
######################
@app.route ('/', methods=['GET'])
def defaultRoute () :
return jsonify({
'author' : 'Aman Pratap Singh',
'email' : '[email protected]',
'endpoints': ['symptoms, disease, condition, sentence, doctor'],
'docs': "https://github.com/apsknight/apscare"
})
######################
# Symptoms #
######################
@app.route ('/symptoms', methods=['GET'])
def symptomsRoute () :
result = client.getSymptoms()
return jsonify (result)
######################
# Disease #
######################
@app.route ('/disease/<sid>/<gender>/<year>', methods=['GET'])
def diseaseRoute (sid, gender, year) :
ids = str(sid).replace('+', ' ')
result = client.getDiseasefromSymptoms(ids, gender, year)
return jsonify (result)
######################
# Condition #
######################
@app.route ('/condition/<disease>', methods=['GET'])
def conditionRoute (disease) :
disease = str(disease).replace('+', ' ')
disease = str(disease).replace('%20', ' ')
result = client.getConditonfromDisease(disease)
return jsonify (result)
######################
# Condition #
######################
@app.route ('/sentence/<text>', methods=['GET'])
def textRoute (text) :
text = str(text).replace('+', ' ')
text = str(text).replace('%20', ' ')
result = client.getConditionfromText(text)
return jsonify (result)
######################
# Doctor #
######################
@app.route ('/doctor/<location>', methods=['GET'])
def doctorRoute (location) :
location = str(location).replace('+', ' ')
location = str(location).replace('%20', ' ')
result = client.getNearestDoctor(location)
return jsonify ({"doctors": result})
######################
# 404 #
######################
@app.route('/<path:dummy>')
def fallback(dummy):
return redirect("/")
######################
# START FLASK #
######################
if __name__ == "__main__":
app.run()