-
Notifications
You must be signed in to change notification settings - Fork 2
/
README
83 lines (56 loc) · 1.38 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
current release 0.6
Some usefull scripts to download mangas from http://www.mangareader.net/
###########
BASIC USAGE
###########
./download_manga.py url-to-manga
./download_chapter.py url-to-chapter
#######
INSTALL - required only for automated download of new realeases
#######
# since we are going to use a simple db (sqlite3), we need some modules to be installed
#on debian 6 - as root
apt-get install python-pysqlite2 sqlite3
echo 'deb http://ppa.launchpad.net/storm/ppa/ubuntu natty main' > /etc/apt/sources.list.d/storm.list
apt-get install python-storm
#create db
sqlite3 database < database.sql
# run the menu
./menu.py
# and put in yours options
#
# fetch_news.py now can download new chapters for you
./fetch_news.py
#
# if u want to automate this task, go to cronjob section XD
#######
cronjob
#######
# run
crontab -e
# and insert this line
0 * * * * /path/to/mangareader/fetch_news.py > /dev/null
##########
TO-DO-LIST
##########
- to simulate browser auth
- time limit socket
- to handle errors and exceptions
- code beautify ^_^
- translate comments..
- to write a doc ^_^
epydoc
- to handle stdout, stderr and log
logging
- new branch: a gui!
- various manga statistics
#########
CHANGELOG
#########
# 0.7 still in progress
- syntax beautify del codice
- pep8
# 0.6.1 expanded convert_name function to handle more "manganames"
# 0.6
- menu
- various minor fix