changed unrar method to use unrar rather than library

this is because it became aparent that this is quite annoying to setup in linux and windows.
also included the rarfile library to save on confusion.
This commit is contained in:
2015-06-22 11:56:51 +01:00
parent 16c74cebe9
commit f90e734bee
3 changed files with 1997 additions and 6 deletions

View File

@@ -3,13 +3,18 @@ Web Based CBR and CBZ file reader.
This is for if you have a collection of comics on a media server and want to read them remotely.
# Requirments
https://github.com/matiasb/python-unrar
Django 1.8
python 2.7
- [Django 1.8](https://www.djangoproject.com/)
- [python 2.7](https://www.python.org/)
- [Unrar by Marko Kreen](https://github.com/markokr/rarfile) (included)
# Installation
pull from git and use like any django project.
havent gotten around to cleaning it up yet.
Pull from git and use like any django project.
BASE_DIR needs to be set in the Settings DB. It should point to the Comic directory.
Haven't gotten around to cleaning it up yet.
# License
https://creativecommons.org/licenses/by-sa/4.0/

View File

@@ -1,7 +1,7 @@
from django.db import models
from django.utils.http import urlsafe_base64_encode, urlsafe_base64_decode
from unrar import rarfile
from comic import rarfile
import zipfile
from os import path
import os

1986
comic/rarfile.py Normal file

File diff suppressed because it is too large Load Diff