-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest2.py
87 lines (62 loc) · 1.99 KB
/
test2.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
from flask import Flask, request, redirect
from twilio.twiml.messaging_response import MessagingResponse
import os.path
import time
import pandas as pd
import numpy as np
import seaborn as sns
import matplotlib as plt
def iris(body):
iris = pd.read_csv("/Users/trinhle/Desktop/hackUTA/iris.csv")
df = pd.DataFrame(iris)
if body == 'len(iris)':
returnEnd = str(len(df))
if body == 'list(iris)':
returnEnd = str(list(df))
if body == 'iris.head()':
returnEnd = str(df.head())
return returnEnd
def some_thing(string):
text_file = open("./read_c/text.meow", "w")
n = text_file.write(string)
text_file.close()
while not os.path.exists("./read_C/pythonMessage.txt"):
print("looking for file")
time.sleep(1)
str = open('./read_C/pythonMessage.txt', 'r').read()
print(str)
return str
app = Flask(__name__)
@app.route("/sms", methods=['GET', 'POST'])
def incoming_sms():
"""Send a dynamic reply to an incoming text message"""
# Get the message the user sent our Twilio number
body = request.values.get('Body', None)
print("body = " + str(body))
# Start our TwiML response
resp = MessagingResponse()
# Determine the right reply for this message
'''elif body == '1+1':
resp.message("2")
elif body == 'bye':
some_thing(body)
resp.message("Goodbye")
elif body == 'iris.head()':
printIris = str(iris(body))
resp.message(printIris)
elif body == 'list(iris)':
printIris = str(iris(body))
resp.message(printIris)
elif body == 'len(iris)':
printIris = str(iris(body))
resp.message(printIris)'''
if 'iris' in body or 'list' in body or 'len' in body:
printIris = str(iris(body))
resp.message(printIris)
elif body:
#print("jfdsafs")
#some_thing(body)
resp.message(some_thing(body))
return str(resp)
if __name__ == "__main__":
app.run(debug=True)