Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions Unzip file/Readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# <b>Unzip File</b>

[![forthebadge](https://forthebadge.com/images/badges/made-with-python.svg)](https://forthebadge.com)

## Unzip File Functionalities : 🚀

- Upload the zip file which is to be unzipped
- Then the script will return all the unzipped files into the Unzip files folder

## Unzip File Instructions: 👨🏻‍💻

### Step 1:

Open Termnial 💻

### Step 2:

Locate to the directory where python file is located 📂

### Step 3:

Run the command: python script.py/python3 script.py 🧐

### Step 4:

Sit back and Relax. Let the Script do the Job. ☕

### Requirements

- zipfile

## Author

Amit Kumar Mishra

7 changes: 7 additions & 0 deletions Unzip file/script.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import zipfile

target = input(r"Enter file to be unzipped: ")
handle = zipfile.ZipFile(target)
handle.extractall("./Unzip file/Unzip files")
handle.close()