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