Zipfile Extract -
The zipfile module is a standard Python library used to read, write, and extract ZIP archives. Because it is built-in, you do not need to install anything extra.
# OR extract to a specific folder zip_ref.extractall('destination_folder') zipfile extract
The most common task is to extract every file from an archive to a specific directory. The zipfile module is a standard Python library