Update app.py
Browse files
app.py
CHANGED
@@ -9,6 +9,8 @@ def list_attributes_and_values():
|
|
9 |
|
10 |
def append_text_to_file(text):
|
11 |
file_path = 'text_file.txt'
|
|
|
|
|
12 |
with open(file_path, 'a') as file:
|
13 |
file.write(text + '\n')
|
14 |
with open(file_path, 'r') as file:
|
|
|
9 |
|
10 |
def append_text_to_file(text):
|
11 |
file_path = 'text_file.txt'
|
12 |
+
zip_file_path = 'text_file.zip'
|
13 |
+
|
14 |
with open(file_path, 'a') as file:
|
15 |
file.write(text + '\n')
|
16 |
with open(file_path, 'r') as file:
|