跨平台的 urllib 问题

发布于 2024-10-14 12:53:43 字数 270 浏览 1 评论 0原文

在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

十雾 2024-10-21 12:53:43

urlopen 文档不承诺您逃避任何事情。使用 urllib.quote() 自行转义。

urlopen documentation doesn't promise you to escape anything. Use urllib.quote() to escape it yourself.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文