File: image_linkextractor.html

package info (click to toggle)
python-scrapy 0.14.4-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 3,064 kB
  • sloc: python: 19,468; xml: 199; sh: 134; makefile: 67
file content (21 lines) | stat: -rw-r--r-- 500 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<html>
<head>
<base href='http://example.com' />
<title>Sample page with image links for testing HTMLImageLinkExtractor</title>
</head>
<body>
<div id='wrapper'>
<div id='subwrapper'>
<img src='sample1.jpg' alt='sample 1' />

<a href='sample2.html' title='sample 2'>
<img src='sample2.jpg' alt='sample 2' />
</a>

<a href='sample3.html' title='sample 3'>sample 3 image</a>
</div>
<img src='sample4.jpg' title='sample 4' />
<img src='sample4.jpg' title='sample 4 repetition' />
</div>
</body>
</html>