summaryrefslogtreecommitdiffstats
path: root/4grab.py
blob: adb47caa444ad191a72878c9318c573f054d2891 (plain)
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
#!/bin/env python

######################################################################
# Copyright 2009, 2010 ryuslash
#
# This file is part of 4grab.
#
# 4grab is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# 4grab is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with 4grab.  If not, see <http://www.gnu.org/licenses/>.
######################################################################

import optparse
import sys

import config
import download

parser = optparse.OptionParser()

parser.set_usage(
"""%prog [options]

4grab Copyright (C) 2009-2010 ryuslash
This program comes with ABSOLUTELY NO WARRANTY.
This is free software, and you are welcome to redistribute it
under certain conditions.""")
parser.add_option("-e", nargs=2, dest="confval", metavar="CONF VALUE", help="Set configuration option CONF to be VALUE")

(options, args) = parser.parse_args()

if options.confval:
    if not config.Configuration().option_exists(options.confval[0]):
        print "%s: error: %s is not a valid configuration option" % (sys.argv[0], options.confval[0])
        exit(1)
    print "Setting", options.confval[0], "to", options.confval[1]
    config.Configuration().set_option(options.confval[0], options.confval[1])
    config.Configuration().save()
    exit(0)

base_url = "http://boards.4chan.org/%s/" % (config.Configuration().get_category())

t = download.get_thread_links(base_url)
t = download.get_image_links(base_url, t)
download.get_images(t)