-
Notifications
You must be signed in to change notification settings - Fork 0
/
sample2.py
419 lines (314 loc) · 11.6 KB
/
sample2.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
# from __future__ import absolute_import
# from __future__ import division
# from __future__ import print_function
# from __future__ import unicode_literals
# import argparse
# import warnings
# import time
import webbrowser
# import nltk
from nltk.corpus import stopwords
# from nltk.tokenize import word_tokenize
# import re
# from flask import Flask, render_template, request
# from chatterbot import ChatBot
# from chatterbot.trainers import ChatterBotCorpusTrainer
# from rasa_core import utils
# from rasa_core.agent import Agent
# from rasa_core.interpreter import RasaNLUInterpreter
# #from rasa_core.channels.console import ConsoleInputChannel
import speech_recognition as sr
from chatterbot import ChatBot
from flask import Flask, render_template, request
from chatterbot import ChatBot
from chatterbot.trainers import ChatterBotCorpusTrainer
import yaml
import urllib3
import json
import sys
import pandas as pd
import ast
from metaphone import doublemetaphone
app = Flask(__name__)
english_bot = ChatBot("Chatterbot", storage_adapter="chatterbot.storage.SQLStorageAdapter")
english_bot.set_trainer(ChatterBotCorpusTrainer)
# english_bot.train("./data")
@app.route("/")
def home():
return render_template("index.html")
@app.route("/get")
def hello():
def get_bot_response():
main_url = 'https://www.arogyarahasya.com/catalogsearch/result/?q={}'
a = request.args.get('msg')
# print(type(a))
# print("a",a)
# a = doublemetaphone(a)
url_text = a.split()
keywords = ['search', 'want', 'show', 'open','need','buy']
stop_words = set(stopwords.words('english'))
data1 = pd.read_csv("AR_All.csv")
cat_name = list(data1['category_name'])
product_list = []
for i in cat_name:
rt=[w.lower() for w in i]
str3 = ''.join(rt)
# print(str3)
if str3 not in product_list:
product_list.append(str3)
product_list = ['almonds', 'almond oil', 'face wash', 'honey', 'flax seed oil capsules',
'hair oils','utensils','soaps','cow products', 'beauty care','perfumes','green tea','ginger tea','lemon tea','masala tea']
# # brands_list = []
data_products_name = pd.read_csv("AR_All.csv")
pro_id = list(data_products_name['product_id'])
pro_name = list(data_products_name['pro_name'])
# print(pro_name[10])
data = pd.read_csv("AR_Parents.csv")
cat = list(data['category_name'])
sub_cat = list(data['parents_name'])
# print(dd)
if any(s.lower() == a.lower() for s in cat):
for m,n in zip(cat, sub_cat):
if a.casefold() == m.casefold():
b = ast.literal_eval(n)
data_products_name = pd.read_csv("AR_All.csv")
pro_name = list(data_products_name['pro_name'])
# print("products",pro_name)
if not b:
c = [i for i in pro_name if a in i]
# print("c",c)
b = [ x.replace(" ", '+') for x in c]
# print("b",b)
d = [ main_url.format(i) for i in b]
# print("d",d)
if not d:
d = a.split()
a = '+'.join(d)
bot = main_url.format(a)
else:
str2 = '&&'.join(d)
bot = str2
else:
b = '&&'.join(b)
bot = b
elif a in product_list:
str2 = a.split()
str2 = '+'.join(str2)
url = main_url.format(str2)
bot =url
webbrowser.open(url)
elif any(i in keywords for i in url_text):
stop_words.update(['search', 'open','show','want','need','some','buy'])
filtered_sentence = [w for w in url_text if not w in stop_words]
str1 = '+'.join(filtered_sentence)
url = main_url.format(str1)
bot = url
else:
text = str(english_bot.get_response(a))
bot = text
b = {"converstaions":[[a,bot]]}
with open("chat.yml","a") as outfile:
yaml.dump(b["converstaions"],outfile,default_flow_style=False)
return bot
@app.route("/get_speech")
# def cart():
def return_audio():
while True:
r = sr.Recognizer()
with sr.Microphone() as source:
r.adjust_for_ambient_noise(source, duration =1)
print("say something:")
audio = r.listen(source)
message = r.recognize_google(audio)
print("You Said:",message)
return message
# text = str(english_bot.get_response(message))
# bot = text
# webbrowser.open(bot)
# return bot
@app.route("/get_cart")
def add_to_cart():
# r= requests.session()
# url = "http://magento.arogyarahasya.com/restapi/rest_mage/getSession"
# payload = {
# 'api_user' : "launchship",
# 'api_key' : "JVYR5UJASE0SHOGW"
# }
# response_session = r.post(url,data= payload)
# ss = response_session.json()
# session_id = ss["session_id"]
# print(session_id)
# data_products_name = pd.read_csv("AR_All.csv")
# pro_id = list(data_products_name['product_id'])
# pro_name = list(data_products_name['pro_name'])
# cart_url = "http://magento.arogyarahasya.com/restapi/rest_cart/updateCart"
# param = {
# 'product_id':4,
# 'qty' :1,
# 'SID':session_id
# }
# response_cart = r.post(cart_url,data = param)
# return (response_cart.text)
return("Message")
if __name__ == "__main__":
app.run()
# 19031218476080S3
# from __future__ import absolute_import
# from __future__ import division
# from __future__ import print_function
# from __future__ import unicode_literals
# import argparse
# import warnings
# import time
import webbrowser
# import nltk
from nltk.corpus import stopwords
# from nltk.tokenize import word_tokenize
# import re
# from flask import Flask, render_template, request
# from chatterbot import ChatBot
# from chatterbot.trainers import ChatterBotCorpusTrainer
# from rasa_core import utils
# from rasa_core.agent import Agent
# from rasa_core.interpreter import RasaNLUInterpreter
# #from rasa_core.channels.console import ConsoleInputChannel
import speech_recognition as sr
from chatterbot import ChatBot
from flask import Flask, render_template, request
from chatterbot import ChatBot
from chatterbot.trainers import ChatterBotCorpusTrainer
import yaml
import urllib3
import json
import sys
import pandas as pd
import ast
from metaphone import doublemetaphone
app = Flask(__name__)
english_bot = ChatBot("Chatterbot", storage_adapter="chatterbot.storage.SQLStorageAdapter")
english_bot.set_trainer(ChatterBotCorpusTrainer)
# english_bot.train("./data")
@app.route("/")
def home():
return render_template("index.html")
@app.route("/get")
def hello():
def get_bot_response():
main_url = 'https://www.arogyarahasya.com/catalogsearch/result/?q={}'
a = request.args.get('msg')
# print(type(a))
# print("a",a)
# a = doublemetaphone(a)
url_text = a.split()
keywords = ['search', 'want', 'show', 'open','need','buy']
stop_words = set(stopwords.words('english'))
data1 = pd.read_csv("AR_All.csv")
cat_name = list(data1['category_name'])
product_list = []
for i in cat_name:
rt=[w.lower() for w in i]
str3 = ''.join(rt)
# print(str3)
if str3 not in product_list:
product_list.append(str3)
product_list = ['almonds', 'almond oil', 'face wash', 'honey', 'flax seed oil capsules',
'hair oils','utensils','soaps','cow products', 'beauty care','perfumes','green tea','ginger tea','lemon tea','masala tea']
# # brands_list = []
data_products_name = pd.read_csv("AR_All.csv")
pro_id = list(data_products_name['product_id'])
pro_name = list(data_products_name['pro_name'])
# print(pro_name[10])
data = pd.read_csv("AR_Parents.csv")
cat = list(data['category_name'])
sub_cat = list(data['parents_name'])
# print(dd)
if any(s.lower() == a.lower() for s in cat):
for m,n in zip(cat, sub_cat):
if a.casefold() == m.casefold():
b = ast.literal_eval(n)
data_products_name = pd.read_csv("AR_All.csv")
pro_name = list(data_products_name['pro_name'])
# print("products",pro_name)
if not b:
c = [i for i in pro_name if a in i]
# print("c",c)
b = [ x.replace(" ", '+') for x in c]
# print("b",b)
d = [ main_url.format(i) for i in b]
# print("d",d)
if not d:
d = a.split()
a = '+'.join(d)
bot = main_url.format(a)
else:
str2 = '&&'.join(d)
bot = str2
else:
b = '&&'.join(b)
bot = b
elif a in product_list:
str2 = a.split()
str2 = '+'.join(str2)
url = main_url.format(str2)
bot =url
webbrowser.open(url)
elif any(i in keywords for i in url_text):
stop_words.update(['search', 'open','show','want','need','some','buy'])
filtered_sentence = [w for w in url_text if not w in stop_words]
str1 = '+'.join(filtered_sentence)
url = main_url.format(str1)
bot = url
else:
text = str(english_bot.get_response(a))
bot = text
b = {"converstaions":[[a,bot]]}
with open("chat.yml","a") as outfile:
yaml.dump(b["converstaions"],outfile,default_flow_style=False)
return bot
def fjhfhjfhgf(x):
return " sfgfd"
x=get_bot_response()
y=fjhfhjfhgf(x)
@app.route("/get_speech")
# def cart():
def return_audio():
while True:
r = sr.Recognizer()
with sr.Microphone() as source:
r.adjust_for_ambient_noise(source, duration =1)
print("say something:")
audio = r.listen(source)
message = r.recognize_google(audio)
print("You Said:",message)
return message
# text = str(english_bot.get_response(message))
# bot = text
# webbrowser.open(bot)
# return bot
@app.route("/get_cart")
def add_to_cart():
# r= requests.session()
# url = "http://magento.arogyarahasya.com/restapi/rest_mage/getSession"
# payload = {
# 'api_user' : "launchship",
# 'api_key' : "JVYR5UJASE0SHOGW"
# }
# response_session = r.post(url,data= payload)
# ss = response_session.json()
# session_id = ss["session_id"]
# print(session_id)
# data_products_name = pd.read_csv("AR_All.csv")
# pro_id = list(data_products_name['product_id'])
# pro_name = list(data_products_name['pro_name'])
# cart_url = "http://magento.arogyarahasya.com/restapi/rest_cart/updateCart"
# param = {
# 'product_id':4,
# 'qty' :1,
# 'SID':session_id
# }
# response_cart = r.post(cart_url,data = param)
# return (response_cart.text)
return("Message")
if __name__ == "__main__":
app.run()
# 19031218476080S3