Update app.py
Browse files
app.py
CHANGED
@@ -211,9 +211,12 @@ def google(name):
|
|
211 |
f_result = f_result + str(n)+"\t"+(w[0]['summary_text'])+"\n\n"+r"\\"
|
212 |
n=n+1
|
213 |
return f_result
|
214 |
-
|
215 |
def greet(name1):
|
216 |
name = name1.lower()
|
|
|
|
|
|
|
217 |
|
218 |
|
219 |
|
|
|
211 |
f_result = f_result + str(n)+"\t"+(w[0]['summary_text'])+"\n\n"+r"\\"
|
212 |
n=n+1
|
213 |
return f_result
|
214 |
+
from PyDictionary import PyDictionary
|
215 |
def greet(name1):
|
216 |
name = name1.lower()
|
217 |
+
|
218 |
+
dictionary=PyDictionary()
|
219 |
+
return dictionary.meaning(name)
|
220 |
|
221 |
|
222 |
|