suspectinside
suspectinside
lets say we has some simple config file: ```yaml search: host: 127.0.0.1 port: '1234' token: '[some token for search backend]' report_to: [email protected], some_repo: https://backend.com, ``` and we want that it...
Hi! It is often suitable to start initial requests fetching urls from some async backend, microservice etc, and not just using statically provided attributes/methods. We may use spider arguments for...
Hi, it would be awesome if you gonna add async support (similar to how you [done it for other Scrapy parts](https://docs.scrapy.org/en/latest/topics/asyncio.html)) for all that **Feed Export** components: * `FeedExporter` *...
Hi, it should be very helpfull if you add ability to call ItemLoader's methods (like add_xpath, add_css etc) fluently: ```python loader = (ItemLoader(selector=Selector(html_data)) .add_xpath('name', '//div[@class="product_name"]/text()') .add_xpath('name', '//div[@class="product_title"]/text()') .add_css('price', '#price::text') .add_value('last_updated',...