用lxml下载Python的图像

Jil*_*loc 5 python lxml web-scraping python-requests

我需要在类似于这个的HTML代码中找到一个图像:

...
<a href="/example/1"> 
    <img id="img" src="http://example.net/example.jpg" alt="Example" />
</a>
...
Run Code Online (Sandbox Code Playgroud)

我正在使用lxml和请求.

这是代码:

import lxml
from lxml import html
import requests

url = 'http://www.example.com'

r = requests.get(url)
tree = lxml.html.fromstring(r.content)

img = tree.get_element_by_id("img")
f = open("image.jpg",'wb')
f.write(requests.get(img['src']).content)
Run Code Online (Sandbox Code Playgroud)

但我收到一个错误:

Traceback (most recent call last):
  File "/Users/Name/Documents/Python/Example/Script.py", line 13, in <module>
    s = requests.get(img['src'])
  File "/Library/Python/2.6/site-packages/lxml/lxml.etree.pyx", line 1052, in lxml.etree._Element.__getitem__ (src/lxml/lxml.etree.c:38272)
TypeError: 'str' object cannot be interpreted as an index
Run Code Online (Sandbox Code Playgroud)

建议?

asc*_*moo 5

尝试f.write(requests.get(img.attrib['src']).content)