Spaces:
Runtime error
Runtime error
chandrakalagowda
commited on
Commit
•
c79e854
1
Parent(s):
eb0324d
Update 1_reverse_video_search_engine.py
Browse files
1_reverse_video_search_engine.py
CHANGED
@@ -51,13 +51,13 @@
|
|
51 |
# In[1]:
|
52 |
|
53 |
import time
|
54 |
-
from zipfile import
|
55 |
|
56 |
-
with
|
57 |
# printing all the contents of the zip file
|
58 |
# extracting all the files
|
59 |
print('Extracting all the files now...')
|
60 |
-
|
61 |
print('Done!')
|
62 |
|
63 |
|
|
|
51 |
# In[1]:
|
52 |
|
53 |
import time
|
54 |
+
from zipfile import ZipFile
|
55 |
|
56 |
+
with ZipFile('reverse_video_search.zip', 'r') as zips:
|
57 |
# printing all the contents of the zip file
|
58 |
# extracting all the files
|
59 |
print('Extracting all the files now...')
|
60 |
+
zips.extractall()
|
61 |
print('Done!')
|
62 |
|
63 |
|