File size: 224 Bytes
2d43028
2ec702c
2d43028
 
2ec702c
2d43028
 
 
 
1
2
3
4
5
6
7
8
9
import zipfile

# Specify the path to the ZIP file
zip_path = 'app.zip'

# Open the ZIP file
with zipfile.ZipFile(zip_path, 'r') as zip_ref:
    # Extract all files and directories in the ZIP file
    zip_ref.extractall('.')