Extracting data by scrapy

quote=response.css(“div.quote”).get()
title=quote.css(“span.text”).get()


quote=response.css(“div.quote”)[0]
title=quote.css(“span.text”).get()

The second one is working but the first one yields an error. what is the difference b/w the two?

Hey @yashikakhurana00, try printing type(response.css(“div.quote”)) and try to figure it out yourself.

Happy Learning :blush:

I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.

On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.