当我抓取原始文本文件时,例如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()
谢谢。