Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试实现一个OAuth2身份验证服务器,对于客户端部分,我想向服务器发送一个 json 请求(从 Django 视图),我找到了几个库来做到这一点,最常见的是httplib2和urllib2我是想知道它们之间的区别是什么,哪个是用于此目的的最佳库。
提前致谢。
编辑:搜索后,我发现了一个非常有用的库,叫做Requests,从那时起我就使用这个库。( http://docs.python-requests.org/en/latest/ )
urllib2处理打开和读取 URL。它还处理额外的东西,比如存储 cookie。
httplib处理 http 请求,当你打开一个 url 时,它会在幕后发生。
您可以使用 urllib2 发送 json 请求,因此您应该使用它。 看到这个。