如何限制对 write 函数的curl 调用次数?
我试图限制调用此 WRITEFUNCTION 的次数。我有什么办法可以做到这一点吗?
定义 write 函数:
conn.setopt(pycurl.WRITEFUNCTION, on_receive)
感谢您的帮助!
I'm trying to limit the number of times this WRITEFUNCTION is called. Is there any way I can do that?
defining the writefunction:
conn.setopt(pycurl.WRITEFUNCTION, on_receive)
Thanks for the help!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是一个应该可以工作的简单版本。构建 PycURL 来测试并找到更好的方法。
Here's a dirty simple version that should work. Building PycURL to test and find a better way.