python exceptions.UnicodeDecodeError: 'ascii' 编解码器无法解码字节 0xa7 [英] python exceptions.UnicodeDecodeError: 'ascii' codec can't decode byte 0xa7 in

查看:35
本文介绍了python exceptions.UnicodeDecodeError: 'ascii' 编解码器无法解码字节 0xa7的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在 python 中使用了scrapy,我在 python 项目管道中有这个代码

I am using scrapy with python and I have this code in a python item pipline

def process_item(self, item, spider):
        import pdb; pdb.set_trace()
        ID = str(uuid.uuid5(uuid.NAMESPACE_DNS, item['link']))

我收到此错误:

        Traceback (most recent call last):
          File "C:\Python27\lib\site-packages\scrapy-0.20.2-py2.7.egg\scrapy\mid
dleware.py", line 62, in _process_chain
            return process_chain(self.methods[methodname], obj, *args)
          File "C:\Python27\lib\site-packages\scrapy-0.20.2-py2.7.egg\scrapy\uti
ls\defer.py", line 65, in process_chain
            d.callback(input)
          File "C:\Python27\lib\site-packages\twisted\internet\defer.py", line 3
82, in callback
            self._startRunCallbacks(result)
          File "C:\Python27\lib\site-packages\twisted\internet\defer.py", line 4
90, in _startRunCallbacks
            self._runCallbacks()
        --- <exception caught here> ---
          File "C:\Python27\lib\site-packages\twisted\internet\defer.py", line 5
77, in _runCallbacks
            current.result = callback(current.result, *args, **kw)
          File "General_Spider_code_version_2\pipelines.py", line 7, in process_
item
            ID = str(uuid.uuid5(uuid.NAMESPACE_DNS, item['link']))
          File "C:\Python27\lib\uuid.py", line 549, in uuid5
            hash = sha1(namespace.bytes + name).digest()
        exceptions.UnicodeDecodeError: 'ascii' codec can't decode byte 0xa7 in p
osition 1: ordinal not in range(128)

我试图调试item['link']

这就是结果

-> ID = str(uuid.uuid5(uuid.NAMESPACE_DNS, item['link']))
(Pdb) item['link']
u'http://dubai.dubizzle.com/property-for-rent/residential/apartmentflat/2014/4/6
/palm-jumeirah-abu-keibal-3-br-maid-partial-2/?back=ZHViYWkuZHViaXp6bGUuY29tL3By
b3BlcnR5LWZvci1yZW50L3Jlc2lkZW50aWFsL2FwYXJ0bWVudGZsYXQv&pos=1'
(Pdb)

如您所见,item['link'] 是 unicode

as you see the item['link'] is unicode

当我将 item['link'] 更改为任何其他属性(如 item['date'])时,代码完美运行

when I change the item['link'] to any other attribute like item['date'] the code works perfectly

推荐答案

使用 .encode('utf-8') 将 unicode 字符串编码为字节字符串,它应该可以工作:

Encode the unicode string into byte string with .encode('utf-8') and it should work:

str(uuid.uuid5(uuid.NAMESPACE_DNS, item['link'].encode('utf-8')))

这篇关于python exceptions.UnicodeDecodeError: 'ascii' 编解码器无法解码字节 0xa7的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆