Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
lxmlを使用してPythonの画像タグからsrcを解析しようとしましたが、imageurlを出力しようとすると次のようになります。
[<Element img at 0x921f68c>]
これが私のコードです:
xhtml = lxml.html.document_fromstring(html) imageUrl = xhtml.xpath('//img[@alt="something"]')
/@srcxpath式に追加するだけです。
/@src
imageUrl = xhtml.xpath('//img[@alt="something"]/@src')