Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -19,12 +19,13 @@ def search_fn(query):
|
|
19 |
with open("MyFile.txt", "w") as file:
|
20 |
file.writelines(frame_l)
|
21 |
file.close()
|
22 |
-
|
23 |
#print(file1.read())
|
24 |
print (out)
|
25 |
-
|
|
|
26 |
|
27 |
-
return (
|
28 |
|
29 |
|
30 |
def first():
|
|
|
19 |
with open("MyFile.txt", "w") as file:
|
20 |
file.writelines(frame_l)
|
21 |
file.close()
|
22 |
+
|
23 |
#print(file1.read())
|
24 |
print (out)
|
25 |
+
with open("myfile.txt", "r+") as file1:
|
26 |
+
html_out = file1.read()
|
27 |
|
28 |
+
return (html_out)
|
29 |
|
30 |
|
31 |
def first():
|