I try to parse src from image tag in python with lxml, but when I try to output imageurl I get following:
[<Element img at 0x921f68c>]
Here is my code:
xhtml = lxml.html.document_fromstring(html)
imageUrl = xhtml.xpath('//img[@alt="something"]')
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Just append
/@srcto your xpath expression: