https://github.com/saberzero1/unzip-jp-gui
Unzip Japanese Shift-JIS zip archives on non-Japanese systems.
https://github.com/saberzero1/unzip-jp-gui
japanese python shift-jis unzip unzipping unzipping-files utf8 zip
Last synced: 2 months ago
JSON representation
Unzip Japanese Shift-JIS zip archives on non-Japanese systems.
- Host: GitHub
- URL: https://github.com/saberzero1/unzip-jp-gui
- Owner: saberzero1
- License: other
- Created: 2021-08-11T10:17:33.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2024-05-28T09:09:05.000Z (about 1 year ago)
- Last Synced: 2025-03-19T07:14:08.420Z (3 months ago)
- Topics: japanese, python, shift-jis, unzip, unzipping, unzipping-files, utf8, zip
- Language: Python
- Homepage:
- Size: 76.2 KB
- Stars: 22
- Watchers: 2
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README

# Unzip JP GUI
Unzip Japanese Shift-JIS zip archives on non-Japanese systems. This script unzips the file while converting the file names from Shift-JIS to UTF-8.
Japanese versions of Windows use Shift-JIS encoding to store file names. When a zip file is created from files containing Japanese characters and later opened on a non-Japanese system, the file names are [scrambled](https://en.wikipedia.org/wiki/Mojibake). This program aims to fix that problem.
## Usage/Examples
Run the program as described in [Run Locally](#run-locally).
## Run Locally### Express
Download the latest exe file from the [release tab](https://github.com/saberzero1/unzip-jp-gui/releases) and execute it.
### Manual
Ensure you have TKinter installed if you want to run the file manually.
#### On windows:
```
python pip install tk
```#### On Linux:
```
sudo apt-get install python3-tk
```execute the following command in Command Prompt from the folder
```
python archive_gui.py
```
## Acknowledgements- [Norbert Pozar](https://github.com/rekka/unzip-jp)