保留原始文本文件的换行符

时间:2019-12-05 18:57:19

标签: scrapy screen-scraping

当我抓取原始文本文件时,例如https://raw.githubusercontent.com/microsoft/TypeScript/master/Gulpfile.js scrapy忽略换行符,并将内容另存为文本blob。有没有办法保留\n字符?

我尝试使用这些命令没有运气:

response.css("body p::text").extract_first()
response.css("body p").xpath("text()").extract_first()
response.css("body p").xpath("string()").extract_first()

谢谢。

0 个答案:

没有答案