今天在學習scrapy的時候,在網上找了一段代碼,運行出了一點問題。python
命令行報錯:python2.7
name 'reload' is not defined
緣由是,python版本的問題scrapy
原代碼以下:ide
import time import sys reload(sys) sys.setdefaultencoding('utf8') class Meiju100Pipeline(object): def process_item(self, item, spider): today = time.strftime('%Y%m%d',time.localtime()) fileName = today + 'movie.txt' with open(fileName,'a') as fp: fp.write(item['storyName'][0].encode("utf8") + '\t' + item['storyState'][0].encode("utf8") + '\t' + item['tvStation'][0] + '\t' + item['updateTime'][0] + '\n') return item
此代碼爲python2.7版本,學習
reload(sys) #從新加載sys模塊 sys.setdefaultencoding('utf8') #設置默認編碼格式爲utf-8
在3.x版本中,應改爲以下:編碼
import time import sys import importlib importlib.reload(sys) #sys.setdefaultencoding('utf8') class Meiju100Pipeline(object): def process_item(self, item, spider): today = time.strftime('%Y%m%d',time.localtime()) fileName = today + 'movie.txt' with open(fileName,'a') as fp: fp.write(item['storyName'][0].encode("utf8") + '\t' + item['storyState'][0].encode("utf8") + '\t' + item['tvStation'][0] + '\t' + item['updateTime'][0] + '\n') return item
設置編碼格式的代碼能夠註釋掉,由於3.x版本中默認就是utf-8編碼。