具体来说,我正在使用Scrapy库编写一个蜘蛛,它从它抓取的文件中获取文本,提取一些文本来构造新文件的文件名,然后将HTML文件的第一个div写为字符串进入那个新文件。
对我来说更令人困惑的是,我用来创建文件名的文本都用日语呈现,文件名本身也是如此。是因为我在div上使用str(),我将你的xxxx作为我文件的内容吗?请在代码末尾看到这一行。
这是我的完整代码(请忽略其中的一些hacky):
def parse_item(self, response):
original = 0
author = "noauthor"
title = "notitle"
year = "xxxx"
publisher = "xxxx"
typer = "xxxx"
ispub = 0
filename = response.url.split("/")[-1]
if "_" in filename:
filename = filename.split("_")[0]
if filename.isdigit():
title = response.xpath("//h1/text()").extract()[0].encode("utf-8")
author = response.xpath("//h2/text()").extract()[0].encode("utf-8")
ID = filename
bibliographic_info = response.xpath("//div[2]/text()").extract()
for subyear in bibliographic_info:
ispub = 0
subyear = subyear.encode("utf-8").strip()
if "初出:" in subyear:
publisher = subyear.split(":")[1]
original = 1
ispub = 1
if "入力:" in subyear:
typer = subyear.split(":")[1]
if len(subyear) > 1 and (original == 1) and (ispub == 0):
counter = 0
while counter < len(subyear):
if subyear[counter].isdigit():
break
counter+=1
if counter != len(subyear):
year = subyear[counter:(counter+4)]
original = 0
body = str(response.xpath("//div[1]/text()").extract())
new_filename = author + "_" + title + "_" + publisher + "_" + year + "_" + typer + ".html"
file = open(new_filename, "a")
file.write(body.encode("utf-8")
file.close()
答案 0 :(得分:3)
# -*- coding: utf-8 -*-
# u'初出' and u'\u521d\u51fa' are different ways to specify *the same* string
assert u'初出' == u'\u521d\u51fa'
#XXX don't mix Unicode and bytes!!!
assert u'初出' != '初出' and u'初出' != '\u521d\u51fa'
根本不使用str()
将Unicode字符串作为参数,而是使用显式.encode()
。
除非必要,否则请勿致电.encode()
,.decode()
;改为使用Unicode三明治:
第一步和最后一步都可能是隐含的,即您的程序可能只看到Unicode文本。
注意,这些是三个不同的东西:
repr()
,'backslashreplace'错误处理程序)如果您在输出中看到u'...'
;这意味着在某个时刻repr(unicode_string)
被调用。它可能是隐含的,例如,通过print([unicode_string])
,因为repr()
在列表的项目上被调用,而它被转换为字符串。
print(u'\u521d\u51fa') # -> 初出 #NOTE: no u'', \u..
print(repr(u'\u521d\u51fa')) # -> u'\u521d\u51fa'