Urllib 引用问题:处理 â latin-1 数据库中的字符
我需要将 â
字符转换为可以传递到 URL 的格式。我以 json 列表的形式获取一些名称,然后将它们传递到其他地方。
result = json.load(urllib2.urlopen(LIST_URL), encoding='latin-1')
for item in result:
name = item["name"]
print name
print urllib2.quote(name.lower())
当名称为 Siân 时,这会产生 urllib 错误:
Siân
Line 24 - print urllib2.quote(mp_name.lower())
/usr/lib/python2.6/urllib.py -- quote((s=u'si\xe2n', safe='/'))
KeyError(u'\xe2')
请问有人可以建议吗?
I need to get an â
character into a format that can be passed to a URL. I'm obtaining some names as a json list, and then passing them elsewhere.
result = json.load(urllib2.urlopen(LIST_URL), encoding='latin-1')
for item in result:
name = item["name"]
print name
print urllib2.quote(name.lower())
This produces a urllib error when the name is Siân:
Siân
Line 24 - print urllib2.quote(mp_name.lower())
/usr/lib/python2.6/urllib.py -- quote((s=u'si\xe2n', safe='/'))
KeyError(u'\xe2')
Please could anyone advise?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
quote()
函数需要 str 参数,而不是 unicode。使用 urllib2.quote(name.lower().encode('latin1')) (假设您的网站接受 latin1 编码)。quote()
function requires str argument, not unicode. Useurllib2.quote(name.lower().encode('latin1'))
(assuming your site accepts latin1 encoding).