Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: about 1 month 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 (6 months ago)
- Default Branch: main
- Last Pushed: 2024-11-20T07:40:28.000Z (about 1 month ago)
- Last Synced: 2024-11-20T09:02:02.254Z (about 1 month ago)
- Topics: python3, rar, zip
- Language: HTML
- Homepage:
- Size: 27.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
[![Python 3.12+](https://upload.wikimedia.org/wikipedia/commons/5/50/Blue_Python_3.12%2B_Shield_Badge.svg)](https://www.python.org)
[![License: GPL v3](https://upload.wikimedia.org/wikipedia/commons/8/86/GPL_v3_Blue_Badge.svg)](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
gunicorn -w 2 -k uvicorn.workers.UvicornWorker -b "0.0.0.0:8000" rar2zip.__main__:app# docker build
docker build -t rar2zip .# docker run
docker run -it -p 8000:8000 rar2zip
```