File: image_linkextractor.html

package info (click to toggle)
python-scrapy 0.8-3
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 2,904 kB
  • ctags: 2,981
  • sloc: python: 15,349; xml: 199; makefile: 68; sql: 64; sh: 34
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>