https://github.com/fastily/rar2zip
↔️ Webservice that makes it easy to convert rar to zip
https://github.com/fastily/rar2zip
python3 rar zip
Last synced: 12 months ago
JSON representation
↔️ Webservice that makes it easy to convert rar to zip
- Host: GitHub
- URL: https://github.com/fastily/rar2zip
- Owner: fastily
- License: gpl-3.0
- Created: 2024-06-24T00:35:02.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2025-02-17T08:50:08.000Z (over 1 year ago)
- Last Synced: 2025-06-25T04:32:10.629Z (12 months ago)
- Topics: python3, rar, zip
- Language: HTML
- Homepage:
- Size: 30.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# rar2zip
[](https://www.python.org)
[](https://www.gnu.org/licenses/gpl-3.0.en.html)
A simple web service that makes it easy to convert rar to zip
## Dependencies
* [unar](https://theunarchiver.com/command-line)
## Usage
```bash
# install dependencies
pip install -r requirements.txt
# start in development mode, visit http://127.0.0.1:8000 to view the web interface
python -m rar2zip
# run w/ gunicorn, accessible at localhost:8000
gunicorn -w 2 -k uvicorn.workers.UvicornWorker -b "0.0.0.0" rar2zip.__main__:app
```