跨平台的 urllib 问题
在 Linux 上,urllib.urlopen("https://www.facebook.com/fql.php?query=SELECT first_name FROM user")
将自动引用空格并顺利运行。
(顺便说一句,该 URL 是虚构的)
但是在 mac 上,情况并非如此。不知何故,URL没有被转义,并且会抛出错误。我检查过 python 版本至少为 2.6,urllib 版本为 1.17
这是一个错误吗?
On Linux, urllib.urlopen("https://www.facebook.com/fql.php?query=SELECT first_name FROM user")
will have the spaces automatically quoted and run smoothly.
(By the way, the URL is fictional)
However on mac, this is not the case. Somehow the URL is not escaped, and an error would be thrown. I have checked both python versions to be at least 2.6 and the version of urllib to be 1.17
Is this a bug?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
urlopen 文档不承诺您逃避任何事情。使用 urllib.quote() 自行转义。
urlopen documentation doesn't promise you to escape anything. Use urllib.quote() to escape it yourself.