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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
|
#! /usr/bin/env python
"""Tkinter-based GUI for websucker.
Easy use: type or paste source URL and destination directory in
their respective text boxes, click GO or hit return, and presto.
"""
from Tkinter import *
import Tkinter
import string
import websucker
import sys
import os
VERBOSE = 1
DEFAULT_URL = "http://www.python.org/download/"
try:
class Canceled(Exception):
"Exception used to cancel run()."
except:
Canceled = __name__ + ".Canceled"
class App(websucker.Sucker):
def __init__(self, top=None):
websucker.Sucker.__init__(self)
self.setflags(verbose=VERBOSE)
self.urlopener.addheaders = [
('User-agent', 'websucker/%s' % websucker.__version__),
##('Accept', 'text/html'),
##('Accept', 'text/plain'),
##('Accept', 'text/*'),
##('Accept', 'image/gif'),
##('Accept', 'image/jpeg'),
##('Accept', 'image/*'),
##('Accept', '*/*'),
]
if not top:
top = Tk()
top.title("websucker GUI")
top.iconname("wsgui")
top.wm_protocol('WM_DELETE_WINDOW', self.exit)
self.top = top
top.columnconfigure(99, weight=1)
self.url_label = Label(top, text="URL:")
self.url_label.grid(row=0, column=0, sticky='e')
self.url_entry = Entry(top, width=60)
self.url_entry.insert(END, DEFAULT_URL)
self.url_entry.grid(row=0, column=1, sticky='we', columnspan=99)
self.dir_label = Label(top, text="Directory:")
self.dir_label.grid(row=1, column=0, sticky='e')
self.dir_entry = Entry(top)
self.dir_entry.grid(row=1, column=1, sticky='we', columnspan=99)
self.exit_button = Button(top, text="Exit", command=self.exit)
self.exit_button.grid(row=2, column=0, sticky='w')
self.go_button = Button(top, text="Go", command=self.go)
self.go_button.grid(row=2, column=1, sticky='w')
self.cancel_button = Button(top, text="Cancel", command=self.cancel,
state=DISABLED)
self.cancel_button.grid(row=2, column=2, sticky='w')
self.auto_button = Button(top, text="Paste+Go", command=self.auto)
self.auto_button.grid(row=2, column=3, sticky='w')
self.status_label = Label(top, text="[idle]")
self.status_label.grid(row=2, column=4, sticky='w')
sys.stdout = self
self.top.update_idletasks()
self.top.grid_propagate(0)
def exit(self):
self.stopit = 1
self.message("[exiting...]")
self.top.update_idletasks()
self.top.quit()
buffer = ""
def write(self, text):
sys.stderr.write(text)
lines = string.split(text, "\n")
if len(lines) > 1:
self.buffer = ""
self.buffer = self.buffer + lines[-1]
if string.strip(self.buffer):
self.message(self.buffer)
self.top.update()
if self.stopit:
raise Canceled
def message(self, text, *args):
if args:
text = text % args
self.status_label.config(text=text)
stopit = 0
def go(self):
if self.stopit:
return
self.url_entry.selection_range(0, END)
url = self.url_entry.get()
url = string.strip(url)
if not url:
self.top.bell()
self.message("[Error: No URL entered]")
return
self.rooturl = url
dir = string.strip(self.dir_entry.get())
if not dir:
self.savedir = None
else:
self.savedir = dir
self.rootdir = os.path.dirname(
websucker.Sucker.savefilename(self, url))
self.go_button.configure(state=DISABLED)
self.auto_button.configure(state=DISABLED)
self.cancel_button.configure(state=NORMAL)
self.status_label['text'] = '[running...]'
self.top.update_idletasks()
self.reset()
self.addroot(url)
self.stopit = 0
try:
try:
self.run()
except Canceled:
self.message("[canceled]")
else:
self.message("[done]")
self.top.bell()
finally:
self.go_button.configure(state=NORMAL)
self.auto_button.configure(state=NORMAL)
self.cancel_button.configure(state=DISABLED)
self.stopit = 0
def cancel(self):
self.stopit = 1
self.message("[canceling...]")
def auto(self):
text = self.top.selection_get(selection='CLIPBOARD')
text = string.strip(text)
if not text:
self.top.bell()
self.message("[Error: clipboard is empty]")
return
self.url_entry.delete(0, END)
self.url_entry.insert(0, text)
self.top.update_idletasks()
self.go()
def mainloop(self):
self.top.mainloop()
def savefile(self, text, path):
self.top.update()
if self.stopit:
raise Canceled
websucker.Sucker.savefile(self, text, path)
def getpage(self, url):
self.top.update()
if self.stopit:
raise Canceled
return websucker.Sucker.getpage(self, url)
def savefilename(self, url):
path = websucker.Sucker.savefilename(self, url)
if self.savedir:
n = len(self.rootdir)
if path[:n] == self.rootdir:
path = path[n:]
while path[:1] == os.sep:
path = path[1:]
path = os.path.join(self.savedir, path)
return path
if __name__ == '__main__':
App().mainloop()
|