-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.py
More file actions
26 lines (23 loc) · 704 Bytes
/
main.py
File metadata and controls
26 lines (23 loc) · 704 Bytes
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
from handler import data_handler
"""
"C:\python_2.7\python.exe" "C:\Program Files (x86)\Google\google_appengine\dev_appserver.py" "./app.yaml"
pip install -t lib -r requirements.txt
pip install -t lib <filename>
"""
analysis_handler = data_handler()
results=analysis.modelize()
print(results)
analysis_handler = data_handler()
results=analysis_handler.modelize()
if(results is None):
self.response.out.write("""
<ul><li>
No Results Data
</li></ul>
""")
else:
self.response.out.write('<ul>')
for X in results:
self.response.out.write('<li> %s </li>' % X)
self.response.out.write('</ul>')
self.response.out.write('</body></html>')