-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscrape.py
974 lines (875 loc) · 40.3 KB
/
scrape.py
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
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
"""Python module for web browsing and scraping.
Done:
- navigate to absolute and relative URLs
- follow links in page or region
- find strings or regular expressions: first, all, split
- find tags: first, last, next, previous, all, splittag
- find elements: first, last, next, previous, enclosing, all
- set form fields
- submit forms
- strip tags from arbitrary strings of HTML
- support HTTPS
- handle entities > 255 and Unicode documents
- accept and store cookies during redirection
- store and send cookies according to domain and path
To do:
- split by element
- detect ends of elements in most cases even if matching end tags are missing
- make the line breaks in striptags correctly reflect whitespace significance
- handle <![CDATA[ marked sections ]]>
- submit forms with file upload
- use Regions in striptags instead of duplicating work?
- remove dependency on urllib.urlencode
"""
__author__ = 'Ka-Ping Yee <[email protected]>'
__date__ = '$Date: 2008/07/06 11:54:25 $'.split()[1].replace('/', '-')
__version__ = '$Revision: 1.44 $'
from urlparse import urlsplit, urljoin
from htmlentitydefs import name2codepoint
import sys, re
def regex(template, *params, **kwargs):
"""Compile a regular expression, substituting in any passed parameters
for placeholders of the form __0__, __1__, __2__, etc. in the template.
Specify the named argument 'flags' to set regular expression compilation
flags; by default, DOTALL is set ('.' matches anything including '\n')."""
flags = kwargs.get('flags', re.DOTALL)
for i, param in enumerate(params):
template = template.replace('__%d__' % i, param)
return re.compile(template, flags)
def iregex(template, *params, **kwargs):
"""Compile a regular expression, substituting in any passed parameters
for placeholders of the form __0__, __1__, __2__, etc. in the template.
Specify the named argument 'flags' to set regular expression compilation
flags; by default, DOTALL and IGNORECASE are set."""
kwargs['flags'] = kwargs.get('flags', 0) | re.IGNORECASE
return regex(template, *params, **kwargs)
class ScrapeError(Exception):
pass
def request(scheme, method, host, path, headers, data='', verbose=0):
"""Make an HTTP or HTTPS request; return the entire reply as a string."""
request = method + ' ' + path + ' HTTP/1.0\r\n'
for name, value in headers.items():
capname = '-'.join([part.capitalize() for part in name.split('-')])
request += capname + ': ' + str(value) + '\r\n'
request += '\r\n' + data
host, port = host.split('@')[-1], [80, 443][scheme == 'https']
if ':' in host:
host, port = host.split(':', 1)
import socket
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
if verbose >= 3:
print >>sys.stderr, 'connect:', host, port
sock.connect((host, int(port)))
file = scheme == 'https' and socket.ssl(sock) or sock.makefile()
if verbose >= 3:
print >>sys.stderr, ('\r\n' + request.rstrip()).replace(
'\r\n', '\nrequest: ').lstrip()
file.write(request)
if hasattr(file, 'flush'):
file.flush()
chunks = []
try:
while not (chunks and len(chunks[-1]) == 0):
chunks.append(file.read())
except socket.error:
pass
return ''.join(chunks)
def shellquote(text):
"""Quote a string literal for /bin/sh."""
return "'" + text.replace("'", "'\\''") + "'"
def curl(url, data=None, agent=None, referrer=None, cookies=None, verbose=0):
"""Use curl to make a request; return the entire reply as a string."""
import os, tempfile
fd, tempname = tempfile.mkstemp(prefix='scrape')
command = 'curl --include --insecure --silent --max-redirs 0'
if data:
if not isinstance(data, str): # Unicode not allowed here
data = urlencode(data)
command += ' --data ' + shellquote(data)
if agent:
command += ' --user-agent ' + shellquote(agent)
if referrer:
command += ' --referer ' + shellquote(referrer)
if cookies:
command += ' --cookie ' + shellquote(cookies)
command += ' ' + shellquote(url)
if verbose >= 3:
print >>sys.stderr, 'execute:', command
os.system(command + ' > ' + tempname)
reply = open(tempname).read()
os.remove(tempname)
return reply
def getcookies(cookiejar, host, path):
"""Get a dictionary of the cookies from 'cookiejar' that apply to the
given request host and request path."""
cookies = {}
for cdomain in cookiejar:
if ('.' + host).endswith(cdomain):
for cpath in cookiejar[cdomain]:
if path.startswith(cpath):
for key, value in cookiejar[cdomain][cpath].items():
cookies[key] = value
return cookies
def setcookies(cookiejar, host, lines):
"""Store cookies in 'cookiejar' according to the given Set-Cookie
header lines."""
for line in lines:
pairs = [(part.strip().split('=', 1) + [''])[:2]
for part in line.split(';')]
(name, value), attrs = pairs[0], dict(pairs[1:])
cookiejar.setdefault(attrs.get('domain', host), {}
).setdefault(attrs.get('path', '/'), {})[name] = value
RAW = object() # This sentinel value for 'charset' means "don't decode".
def fetch(url, data='', agent=None, referrer=None, charset=None, verbose=0,
cookiejar={}):
"""Make an HTTP or HTTPS request. If 'data' is given, do a POST;
otherwise do a GET. If 'agent' and/or 'referrer' are given, include
them as User-Agent and Referer headers in the request, respectively.
'cookiejar' should have the form {domain: {path: {name: value, ...}}};
cookies will be sent from it and received cookies will be stored in it.
Return the 5-element tuple (url, status, message, headers, content)
where 'url' is the final URL retrieved, 'status' is the integer status
code, 'message' is the reply status message, 'headers' is a dictionary of
HTTP headers, and 'content' is a string containing the received content.
For multiple occurrences of the same header, 'headers' will contain a
single key-value pair where the values are joined together with newlines.
If the Content-Type header specifies a 'charset' parameter, 'content'
will be a Unicode string, decoded using the given charset. Giving the
'charset' argument overrides any received 'charset' parameter; a charset
of RAW ensures that the content is left undecoded in an 8-bit string."""
scheme, host, path, query, fragment = urlsplit(url)
host = host.split('@')[-1]
# Prepare the POST data.
method = data and 'POST' or 'GET'
if data and not isinstance(data, str): # Unicode not allowed here
data = urlencode(data)
# Get the cookies to send with this request.
cookieheader = '; '.join([
'%s=%s' % pair for pair in getcookies(cookiejar, host, path).items()])
# Make the HTTP or HTTPS request using Python or cURL.
if verbose:
print >>sys.stderr, 'fetch:', url
import socket
if scheme == 'http' or scheme == 'https' and hasattr(socket, 'ssl'):
if query:
path += '?' + query
headers = {'host': host, 'accept': '*/*'}
if data:
headers['content-type'] = 'application/x-www-form-urlencoded'
headers['content-length'] = len(data)
if agent:
headers['user-agent'] = agent
if referrer:
headers['referer'] = referrer
if cookieheader:
headers['cookie'] = cookieheader
reply = request(scheme, method, host, path, headers, data, verbose)
elif scheme == 'https':
reply = curl(url, data, agent, referrer, cookieheader, verbose)
else:
raise ValueError, scheme + ' not supported'
# Take apart the HTTP reply.
headers, head, content = {}, reply, ''
if '\r\n\r\n' in reply:
head, content = (reply.split('\r\n\r\n', 1) + [''])[:2]
else: # Non-conformant reply. Some servers really do this!
match = re.search('\r?\n[ \t]*\r?\n', reply)
if match:
head, content = head[:match.start()], head[match.end():]
else:
match = re.search('\r?\n\W', reply)
if match:
head, content = head[:match.start()], head[match.end() - 1:]
head = head.replace('\r\n', '\n').replace('\r', '\n')
response, head = head.split('\n', 1)
status = int(response.split()[1])
message = ' '.join(response.split()[2:])
for line in head.split('\n'):
if verbose >= 3:
print >>sys.stderr, 'reply:', line.rstrip()
name, value = (line.split(': ', 1) + [''])[:2]
name = name.lower()
if name in headers:
headers[name] += '\n' + value
else:
headers[name] = value
if verbose >= 2:
print >>sys.stderr, 'content: %d byte%s\n' % (
len(content), content != 1 and 's' or '')
# Store any received cookies.
if 'set-cookie' in headers:
setcookies(cookiejar, host, headers['set-cookie'].split('\n'))
# Handle the 'charset' parameter.
if 'content-type' in headers and not charset:
for param in headers['content-type'].split(';')[1:]:
if param.strip().startswith('charset='):
charset = param.strip()[8:]
break
if charset and charset is not RAW:
content = content.decode(charset)
return url, status, message, headers, content
class Session:
"""A Web-browsing session. Exposed attributes:
agent - the User-Agent string (clients can set this attribute)
url - the last successfully fetched URL
status - the status code of the last request
message - the status message of the last request
headers - the headers of the last request as a dictionary
content - the content of the last fetched document
doc - the Region spanning the last fetched document
"""
def __init__(self, agent=None, verbose=0):
"""Specify 'agent' to set the User-Agent. Set 'verbose' to 1, 2, or
3 to display status messages on stderr during document retrieval."""
self.agent = agent
self.url = self.status = self.message = self.content = self.doc = None
self.verbose = 0
self.headers = {}
self.cookiejar = {}
self.history = []
def go(self, url, data='', redirects=10, referrer=True, charset=None):
"""Navigate to a given URL. If the URL is relative, it is resolved
with respect to the current URL. If 'data' is provided, do a POST;
otherwise do a GET. Follow redirections up to 'redirects' times.
If 'referrer' is given, send it as the referrer; if 'referrer' is
True (default), send the current URL as the referrer; if 'referrer'
is a false value, send no referrer. If 'charset' is given, it
overrides any received 'charset' parameter; setting 'charset' to RAW
leaves the content undecoded in an 8-bit string. If the document is
successfully fetched, return a Region spanning the entire document.
Any relevant previously stored cookies will be included in the
request, and any received cookies will be stored for future use."""
historyentry = (self.url, self.status, self.message,
self.headers, self.content, self.doc)
url = self.resolve(url)
if referrer is True:
referrer = self.url
while 1:
self.url, self.status, self.message, self.headers, self.content = \
fetch(url, data, self.agent, referrer, charset, self.verbose,
self.cookiejar)
if redirects:
if self.status in [301, 302] and 'location' in self.headers:
url, data = urljoin(url, self.headers['location']), ''
redirects -= 1
continue
break
self.history.append(historyentry)
self.doc = Region(self.content)
return self.doc
def back(self):
"""Restore the state of this session before the previous request."""
(self.url, self.status, self.message,
self.headers, self.content, self.doc) = self.history.pop()
return self.url
def follow(self, anchor, region=None):
"""Find the first link that has the given anchor text, and follow it.
The anchor may be given as a string or a compiled RE. If 'region' is
specified, only that region is searched for a matching link, instead
of the whole document."""
link = (region or self.doc).first('a', content=anchor)
if not link:
raise ScrapeError('link %r not found' % anchor)
if not link.get('href', ''):
raise ScrapeError('link %r has no href' % link)
return self.go(link['href'])
def submit(self, region, paramdict=None, url=None, redirects=10, **params):
"""Submit a form, optionally by clicking a given button. The 'region'
argument can be the form itself or a button in the form to click.
Obtain the parameters to submit by (a) starting with the 'paramdict'
dictionary if specified, or the default parameter values as returned
by get_params; then (b) adding or replacing parameters in this
dictionary according to the keyword arguments. The 'url' argument
overrides the form's action attribute and submits the form elsewhere.
After submission, follow redirections up to 'redirects' times."""
form = region.tagname == 'form' and region or region.enclosing('form')
if not form:
raise ScrapeError('%r is not contained in a form' % region)
if paramdict is not None:
p = paramdict.copy()
else:
p = form.params
if 'name' in region:
p[region['name']] = region.get('value', '')
p.update(params)
method = form['method'].lower() or 'get'
url = url or form['action']
if method == 'get':
return self.go(url + '?' + urlencode(p), '', redirects)
elif method == 'post':
return self.go(url, p, redirects)
else:
raise ScrapeError('unknown form method %r' % method)
def resolve(self, url):
"""Resolve a URL with respect to the current location."""
if self.url and not (
url.startswith('http://') or url.startswith('https://')):
url = urljoin(self.url, url)
return url
def setcookie(self, cookieline):
"""Put a cookie in this session's cookie jar. 'cookieline' should
have the format "<name>=<value>; domain=<domain>; path=<path>"."""
scheme, host, path, query, fragment = urlsplit(self.url)
host = host.split('@')[-1].split(':')[0]
setcookies(self.cookiejar, host, [cookieline])
# This pattern has been carefully tuned, but re.search can still cause a
# stack overflow. Try re.search('(a|b)*', 'a'*10000), for example.
tagcontent_re = r'''(('[^']*'|"[^"]*"|--([^-]+|-[^-]+)*--|-(?!-)|[^'">-])*)'''
def tag_re(tagname_re):
return '<' + tagname_re + tagcontent_re + '>'
anytag_re = tag_re(r'(\?|!\w*|/?[a-zA-Z_:][\w:.-]*)')
tagpat = re.compile(anytag_re)
# This pattern matches a character entity reference (a decimal numeric
# references, a hexadecimal numeric reference, or a named reference).
charrefpat = re.compile(r'&(#(\d+|x[\da-fA-F]+)|[\w.:-]+);?')
def htmldecode(text):
"""Decode HTML entities in the given text."""
if type(text) is unicode:
uchr = unichr
else:
uchr = lambda value: value > 127 and unichr(value) or chr(value)
def entitydecode(match, uchr=uchr):
entity = match.group(1)
if entity.startswith('#x'):
return uchr(int(entity[2:], 16))
elif entity.startswith('#'):
return uchr(int(entity[1:]))
elif entity in name2codepoint:
return uchr(name2codepoint[entity])
else:
return match.group(0)
return charrefpat.sub(entitydecode, text)
def htmlencode(text):
"""Use HTML entities to encode special characters in the given text."""
text = text.replace('&', '&')
text = text.replace('"', '"')
text = text.replace('<', '<')
text = text.replace('>', '>')
return text
urlquoted = dict((chr(i), '%%%02X' % i) for i in range(256))
urlquoted.update(dict((c, c) for c in 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' +
'abcdefghijklmnopqrstuvwxyz' +
'0123456789._-'))
def urlquote(text):
return ''.join(map(urlquoted.get, text))
def urlencode(params):
pairs = ['%s=%s' % (urlquote(key), urlquote(value).replace('%20', '+'))
for key, value in params.items()]
return '&'.join(pairs)
def no_groups(re):
return re.replace('(', '(?:').replace('(?:?', '(?')
tagsplitter = re.compile(no_groups(anytag_re))
parasplitter = re.compile(no_groups(tag_re('(p|table|form)')), re.I)
linesplitter = re.compile(no_groups(tag_re('(div|br|tr)')), re.I)
cdatapat = re.compile(r'<(!\s*--|style\b|script\b)', re.I)
endcdatapat = {'!': re.compile(r'--\s*>'),
'script': re.compile(r'</script[^>]*>', re.I),
'style': re.compile(r'</style[^>]*>', re.I)}
def striptags(html):
"""Strip HTML tags from the given string, yielding line breaks for DIV,
BR, or TR tags and blank lines for P, TABLE, or FORM tags."""
# Remove comments and elements with CDATA content (<script> and <style>).
# These are special cases because tags are not parsed in their content.
chunks, pos = [], 0
while 1:
startmatch = cdatapat.search(html, pos)
if not startmatch:
break
tagname = startmatch.group(1).rstrip('-').strip()
tagname = tagname.lower().encode('utf-8')
endmatch = endcdatapat[tagname].search(html, startmatch.end())
if not endmatch:
break
chunks.append(html[pos:startmatch.start()])
pos = endmatch.end()
chunks.append(html[pos:])
html = ''.join(chunks)
# Break up the text into paragraphs and lines, then remove all other tags.
paragraphs = []
for paragraph in parasplitter.split(html):
lines = []
for line in linesplitter.split(paragraph):
line = ''.join(tagsplitter.split(line))
line = htmldecode(line)
nbsp = (type(line) is unicode) and u'\xa0' or '\xa0'
line = line.replace(nbsp, ' ')
lines.append(' '.join(line.split()))
paragraph = '\n'.join(lines)
if type(paragraph) is str:
try:
paragraph.decode('ascii')
except:
# Assume Latin-1 for characters > 127.
paragraph = paragraph.decode('latin-1')
paragraphs.append(paragraph)
return re.sub('\n\n+', '\n\n', '\n\n'.join(paragraphs)).strip()
attr_re = r'''\s*([\w:.-]+)(\s*=\s*('[^']*'|"[^"]*"|[^\s>]*))?'''
attrpat = re.compile(attr_re)
def parseattrs(text):
"""Turn a string of name=value pairs into an attribute dictionary."""
attrs = {}
pos = 0
while 1:
match = attrpat.search(text, pos)
if not match:
break
pos = match.end()
name, value = match.group(1), match.group(3) or ''
if value[:1] in ["'", '"']:
value = value[1:-1]
try:
name = str(name)
except:
pass
try:
value = str(value)
except:
pass
attrs[name.lower()] = htmldecode(value)
return attrs
MISSING = object() # the sentinel for "not present"
PRESENT = lambda x: 1 # the sentinel for "present with any value"
ANY = lambda x: x.strip() # the sentinel for "contains non-whitespace"
def NUMERIC(x): # the sentinel for "contains a numeric value"
try:
getnumber(x)
return 1
except:
return 0
def matchcontent(specimen, desired):
"""Match a string specimen to a desired string or compiled RE."""
if hasattr(desired, 'match'):
return desired.match(specimen)
elif callable(desired):
return desired(specimen)
else:
return specimen == desired
def matchattrs(specimen, desired):
"""Match an attribute dictionary to a dictionary of desired attribute
values, where each value can be a string or a compiled RE. For
convenience, the keys of the dictionary have their underscores turned
into hyphens, and trailing underscores are removed."""
for name, value in desired.items():
name = name.rstrip('_').replace('_', '-')
if value is MISSING:
if name in specimen:
return 0
else:
if not (name in specimen and matchcontent(specimen[name], value)):
return 0
return 1
class Region:
"""A Region object represents a contiguous region of a document (in terms
of a starting and ending position in the document string) together with
an associated HTML or XML tag and its attributes. Dictionary-like access
retrieves the name-value pairs in the attributes. Various other methods
allow slicing up a Region into subregions and searching within, before,
or after a Region for tags or elements. For a Region that represents a
single tag, the starting and ending positions are the start and end of
the tag itself. For a Region that represents an element, the starting
and ending positions are just after the starting tag and just before the
ending tag, respectively."""
def __init__(self, parent, start=0, end=None, starttag=None, endtag=None):
"""Create a Region. The 'parent' argument is a string or another
Region. The 'start' and 'end' arguments, if given, are non-negative
indices into the original string (not into the parent region). The
'starttag' and 'endtag' arguments are indices into an internal array
of tags, intended for use by the implementation only."""
if isinstance(parent, basestring):
self.document = parent
self.tags = self.scantags(self.document)
else:
self.document = parent.document
self.tags = parent.tags
if end is None:
end = len(self.document)
self.start, self.end = start, end
self.tagname, self.attrs = None, {}
# If only starttag is specified, this Region is a tag.
# If starttag and endtag are specified, this Region is an element.
self.starttag, self.endtag = starttag, endtag
if starttag is not None:
self.start, self.end, self.tagname, self.attrs = self.tags[starttag]
if endtag is not None:
self.start, self.end = self.tags[starttag][1], self.tags[endtag][0]
# Find the minimum and maximum indices of tags within this Region.
if starttag and endtag:
self.tagmin, self.tagmax = starttag + 1, endtag - 1
else:
self.tagmin, self.tagmax = len(self.tags), -1
for i, (start, end, tagname, attrs) in enumerate(self.tags):
if start >= self.start and i < self.tagmin:
self.tagmin = i
if end <= self.end and i > self.tagmax:
self.tagmax = i
def __repr__(self):
if self.tagname:
attrs = ''.join([' %s=%r' % item for item in self.attrs.items()])
return '<Region %d:%d %s%s>' % (
self.start, self.end, self.tagname, attrs)
else:
return '<Region %d:%d>' % (self.start, self.end)
def __str__(self):
return self.content
# Utilities that operate on the array of scanned tags.
def scantags(self, document):
"""Generate a list of all the tags in a document."""
tags = []
pos = 0
while 1:
match = tagpat.search(document, pos)
if not match:
break
start, end = match.span()
tagname = match.group(1).lower().encode('utf-8')
attrs = match.group(2)
tags.append([start, end, tagname, attrs])
if tagname in ['script', 'style']:
match = endcdatapat[tagname].search(document, end)
if not match:
break
start, end = match.span()
tags.append([start, end, '/' + tagname, ''])
pos = end
return tags
def matchtag(self, i, tagname, attrs):
"""Return 1 if the ith tag matches the given tagname and attributes."""
itagname, iattrs = self.tags[i][2], self.tags[i][3]
if itagname[:1] not in ['', '/']:
if itagname == tagname or tagname is None:
if isinstance(iattrs, basestring):
if itagname[:1] in ['?', '!']:
self.tags[i][3] = iattrs = {}
else:
self.tags[i][3] = iattrs = parseattrs(iattrs)
return matchattrs(iattrs, attrs)
def findendtag(self, starttag, enders=[], outside=0):
"""Find the index of the tag that ends an element, given the index of
its start tag, by scanning for a balanced matching end tag or a tag
whose name is in 'enders'. 'enders' may contain plain tag names (for
start tags) or tag names prefixed with '/' (for end tags). If
'outside' is 0, scan within the current region; if 'outside' is 1,
scan starting from the end of the current region onwards."""
if isinstance(enders, basestring):
enders = enders.split()
tagname = self.tags[starttag][2]
depth = 1
for i in range(starttag + 1, len(self.tags)):
if self.tags[i][2] == '/' + tagname:
depth -= 1
if depth == 0 or depth == 1 and self.tags[i][2] in enders:
if not outside and i <= self.tagmax:
return i
if outside and i > self.tagmax:
return i
break
if self.tags[i][2] == tagname:
depth += 1
def matchelement(self, starttag, content=None, enders=[], outside=0):
"""If the element with the given start tag matches the given content,
return the index of the tag that ends the element. The end of the
element is found by scanning for either a balanced matching end
tag or tag whose name is in 'enders'. 'enders' may contain plain tag
names (for start tags) or tag names prefixed with '/' (for end tags).
If 'outside' is 0, scan within the current region; if 'outside' is 1,
scan starting from the end of the current region onwards."""
endtag = self.findendtag(starttag, enders, outside)
if endtag is not None:
start, end = self.tags[starttag][1], self.tags[endtag][0]
if content is None or matchcontent(
striptags(self.document[start:end]), content):
return endtag
# Provide the "content" and "text" attributes to access the contents.
content = property(lambda self: self.document[self.start:self.end])
text = property(lambda self: striptags(self.content))
# Provide information on forms.
def get_params(self):
"""Get a dictionary of default values for all the form parameters."""
if self.tagname == 'form':
params = {}
for input in self.alltags('input'):
if 'name' in input and 'disabled' not in input:
type = input['type'].lower()
if type in ['text', 'password', 'hidden'] or (
type in ['checkbox', 'radio'] and 'checked' in input):
params[input['name']] = input.get('value', '')
for select in self.all('select'):
if 'disabled' not in select:
selections = [option['value']
for option in select.alltags('option')
if 'selected' in option]
if 'multiple' in select:
params[select['name']] = selections
elif selections:
params[select['name']] = selections[0]
for textarea in self.all('textarea'):
if 'disabled' not in textarea:
params[textarea['name']] = textarea.content
return params
def get_buttons(self):
"""Get a list of all the form submission buttons."""
if self.tagname == 'form':
return [tag for tag in self.alltags('input')
if tag['type'].lower() in ['submit', 'image']
] + [tag for tag in self.alltags('button')
if tag['type'].lower() in ['submit', '']]
params = property(get_params)
buttons = property(get_buttons)
# Provide access to numeric content.
def get_number(self):
return getnumber(self.text)
number = property(get_number)
# Provide a dictionary-like interface to the tag attributes.
def __contains__(self, name):
return name in self.attrs
def __getitem__(self, name):
if isinstance(name, slice):
return self.__getslice__(name.start, name.stop)
if name in self.attrs:
return self.attrs[name]
raise AttributeError('no attribute named %r' % name)
def get(self, name, default):
if name in self.attrs:
return self.attrs[name]
return default
def keys(self):
return self.attrs.keys()
# Report the length of the region.
def __len__(self):
return self.end - self.start
# Access subregions by slicing. The starting and ending positions of a
# slice can be given as string positions within the region (just like
# slicing a string), or as regions. A slice between two regions begins
# at the end of the start region and ends at the start of the end region.
def __getslice__(self, start, end):
if start is None:
start = 0
if end is None:
end = len(self)
if hasattr(start, 'end'):
start = start.end
elif start < 0:
start += self.end
else:
start += self.start
if hasattr(end, 'start'):
end = end.start
elif end < 0:
end += self.end
else:
end += self.start
return Region(self, max(self.start, start), min(self.end, end))
def after(self):
"""Return the Region for everything after this Region."""
return Region(self, self.end)
def before(self):
"""Return the Region for everything before this Region."""
return Region(self, 0, self.start)
# Search for text.
def find(self, target, group=0):
"""Search this Region for a string or a compiled RE and return a
Region representing the match. If 'group' is given, it specifies
which grouped subexpression should be returned as the match."""
if hasattr(target, 'search'):
match = target.search(self.content)
if match:
return self[match.start(group):match.end(group)]
else:
start = self.content.find(target)
if start > -1:
return self[start:start+len(target)]
raise ScrapeError('no match found for %r' % target)
def findall(self, target, group=0):
"""Search this Region for a string or a compiled RE and return a
sequence of Regions representing all the matches."""
pos = 0
content = self.content
matches = []
if hasattr(target, 'search'):
while 1:
match = target.search(content, pos)
if not match:
break
start, pos = match.span(group)
matches.append(self[start:pos])
else:
while 1:
start = content.find(target, pos)
if start < 0:
break
pos = start + len(target)
matches.append(self[start:pos])
return matches
def split(self, separator):
"""Find all occurrences of the given string or compiled RE and use
them as separators to split this Region into a sequence of Regions."""
pos = 0
content = self.content
matches = []
if hasattr(separator, 'search'):
while 1:
match = separator.search(content, pos)
if not match:
break
start, end = match.span(0)
matches.append(self[pos:start])
pos = end
matches.append(self[pos:])
else:
while 1:
start = content.find(separator, pos)
if start < 0:
break
end = start + len(separator)
matches.append(self[pos:start])
pos = end
matches.append(self[pos:])
return matches
# Search for tags.
def firsttag(self, tagname=None, **attrs):
"""Return the Region for the first tag entirely within this Region
with the given tag name and attributes."""
for i in range(self.tagmin, self.tagmax + 1):
if self.matchtag(i, tagname, attrs):
return Region(self, 0, 0, i)
tag = tagname is None and 'tag' or '<%s> tag' % tagname
a = attrs and ' matching %r' % attrs or ''
raise ScrapeError('no %s found%s' % (tag, a))
def lasttag(self, tagname=None, **attrs):
"""Return the Region for the last tag entirely within this Region
with the given tag name and attributes."""
for i in range(self.tagmax, self.tagmin - 1, -1):
if self.matchtag(i, tagname, attrs):
return Region(self, 0, 0, i)
tag = tagname is None and 'tag' or '<%s> tag' % tagname
a = attrs and ' matching %r' % attrs or ''
raise ScrapeError('no %s found%s' % (tag, a))
def alltags(self, tagname=None, **attrs):
"""Return a list of Regions for all the tags entirely within this
Region with the given tag name and attributes."""
tags = []
for i in range(self.tagmin, self.tagmax + 1):
if self.matchtag(i, tagname, attrs):
tags.append(Region(self, 0, 0, i))
return tags
def nexttag(self, tagname=None, **attrs):
"""Return the Region for the nearest tag after the end of this Region
with the given tag name and attributes."""
return self.after().firsttag(tagname, **attrs)
def previoustag(self, tagname=None, **attrs):
"""Return the Region for the nearest tag before the start of this
Region with the given tag name and attributes."""
return self.before().lasttag(tagname, **attrs)
def splittag(self, tagname=None, **attrs):
"""Split this Region into a list of the subregions separated by tags
with the given tag name and attributes."""
subregions, start = [], 0
for tag in self.alltags(tagname, **attrs):
subregions.append(self[start:tag])
start = tag
subregions.append(self[tag:])
return subregions
# Search for elements.
def first(self, tagname=None, content=None, enders=[], **attrs):
"""Return the Region for the first element entirely within this Region
with the given tag name, content, and attributes. The element ends at
a balanced matching end tag or any tag listed in 'enders'. 'enders' may
may contain plain tag names (for start tags) or tag names prefixed with
'/' (for end tags). The element content is passed through striptags()
for comparison. If 'content' has a match() method, the stripped content
is passed to it; otherwise it is compared directly as a string."""
for starttag in range(self.tagmin, self.tagmax + 1):
if self.matchtag(starttag, tagname, attrs):
endtag = self.matchelement(starttag, content, enders)
if endtag is not None:
return Region(self, 0, 0, starttag, endtag)
tag = tagname is None and 'element' or '<%s> element' % tagname
a = attrs and ' matching %r' % attrs or ''
c = content is not None and ' with content %r' % content or ''
raise ScrapeError('no %s found%s%s' % (tag, a, c))
def last(self, tagname=None, content=None, enders=[], **attrs):
"""Return the Region for the last element entirely within this Region
with the given tag name, content, and attributes. The element ends at
a balanced matching end tag or at any tag listed in 'enders'."""
for starttag in range(self.tagmax, self.tagmin - 1, -1):
if self.matchtag(starttag, tagname, attrs):
endtag = self.matchelement(starttag, content, enders)
if endtag is not None:
return Region(self, 0, 0, starttag, endtag)
tag = tagname is None and 'element' or '<%s> element' % tagname
a = attrs and ' matching %r' % attrs or ''
c = content is not None and ' with content %r' % content or ''
raise ScrapeError('no %s found%s%s' % (tag, a, c))
def all(self, tagname=None, content=None, enders=[], **attrs):
"""Return Regions for all non-overlapping elements entirely within
this Region with the given tag name, content, and attributes, where
each element ends at a balanced matching end tag or any tag listed
in 'enders'."""
elements = []
starttag = self.tagmin
while starttag <= self.tagmax:
if self.matchtag(starttag, tagname, attrs):
endtag = self.matchelement(starttag, content, enders)
if endtag is not None:
elements.append(Region(self, 0, 0, starttag, endtag))
starttag = endtag - 1
starttag += 1
return elements
def next(self, tagname=None, content=None, enders=[], **attrs):
"""Return the Region for the nearest element after the end of this
Region with the given tag name, content, and attributes. The element
ends at a balanced matching end tag or any tag listed in 'enders'."""
return self.after().first(tagname, content, enders, **attrs)
def previous(self, tagname=None, content=None, enders=[], **attrs):
"""Return the Region for the nearest element before the start of this
Region with the given tag name, content, and attributes. The element
ends at a balanced matching end tag or any tag listed in 'enders'."""
return self.before().last(tagname, content, enders, **attrs)
def enclosing(self, tagname=None, content=None, enders=[], **attrs):
"""Return the Region for the nearest element that encloses this Region
with the given tag name, content, and attributes. The element ends at
ends at a balanced matching end tag or any tag listed in 'enders'."""
if self.starttag and self.endtag: # skip this Region's own start tag
laststarttag = self.starttag - 1
else:
laststarttag = self.tagmin - 1
for starttag in range(laststarttag, -1, -1):
if self.matchtag(starttag, tagname, attrs):
endtag = self.matchelement(starttag, content, enders, outside=1)
if endtag is not None:
return Region(self, 0, 0, starttag, endtag)
tag = tagname is None and 'element' or '<%s> element' % tagname
a = attrs and ' matching %r' % attrs or ''
c = content is not None and ' with content %r' % content or ''
raise ScrapeError('no %s found%s%s' % (tag, a, c))
def read(path):
"""Read and return the entire contents of the file at the given path."""
return open(path).read()
def write(path, text):
"""Write the given text to a file at the given path."""
file = open(path, 'w')
file.write(text)
file.close()
def load(path):
"""Return the deserialized contents of the file at the given path."""
import marshal
return marshal.load(open(path))
def dump(path, data):
"""Serialize the given data and write it to a file at the given path."""
import marshal
file = open(path, 'w')
marshal.dump(data, file)
file.close()
def getnumber(text):
"""Find and parse an integer or floating-point number in the given text,
ignoring commas, dollar signs, and percentage signs."""
text = re.sub(r'[,$%]', '', striptags(text)).strip()
try:
return int(text)
except:
try:
return float(text)
except:
pass
raise ScrapeError('%r is not a number' % text)
s = Session()