使用 GIO 的异步 HTTP 请求
我希望有一个关于如何使用 Python 的 GIO 绑定执行异步 HTTP POST 请求的示例。
编辑:不使用 Twisted 寻找示例。
I would appreciate an example on how to perform an async HTTP POST request using Python's GIO binding.
Edit: Example sought without using Twisted.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
James Henstridge 的博客。
An example using Twisted Deferred objects is available on James Henstridge's blog.
抱歉,这不是 HTTP POST(只是 GET),而是使用 Gio 异步请求 URL,并在下载完成后使用回调处理结果数据。
https://github.com/robru/gottengeography/blob/65505bd0cf0060ec7397849e7c6 2c231367c7f1d /gg/datatypes.py#L242
Sorry this is not HTTP POST (just GET), but it is using Gio to asynchronously request a URL, with a callback that processes the resulting data when it's done downloading.
https://github.com/robru/gottengeography/blob/65505bd0cf0060ec7397849e7c62c231367c7f1d/gg/datatypes.py#L242