web scraping - What are the new enhancements in scrapy 0.24.0? -
What are the features extracted from scrap 0.24.0? How is it different from earlier versions?
Personally, the most important change for me was the namespace cleanliness. Since 0.24 you can:
Spider, request, item, field from scrap import
Firstly, you have to modify the module for each of these Had to remember.
In addition to this, the feedback object received some gifts: Now you can response.selector
to get the selector for that reaction (now someone needs to do the institute Is not), and you also have new shortcuts methods response.css ()
and response.xpath ()
as well.
There are several other minor changes and fixes, full release notes are available here:
Comments
Post a Comment