python urllib.request.urlopen 递归失败

发布于 2024-10-20 05:48:17 字数 399 浏览 1 评论 0原文

所以我有代码,

def constructGraph(self,url,doit=5):
    if doit!=0:
        m = urllib.request.urlopen(url)
        print('test')
        self.constructGraph('http://example.com',doit-1)

但当我运行它时,它只运行第一个 m = urllib.request.urlopen(url) 并且只打印一次测试,即使它应该执行两次......

当我运行调试器时,它甚至不会进入第二次递归的 print('test') 行,而只会退出

我做错了什么?

我正在使用 python 3

so i have the code

def constructGraph(self,url,doit=5):
    if doit!=0:
        m = urllib.request.urlopen(url)
        print('test')
        self.constructGraph('http://example.com',doit-1)

but then when I run it, it only runs the first m = urllib.request.urlopen(url) and only prints test once even though it supposed to do it twice...

and when i run the debugger, it wouldn’t even go to the print('test') line on the second recursion and would just exit

what did i do wrong?

i'm using python 3

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

提笔落墨 2024-10-27 05:48:17

也许您一次只能打开一个请求。尝试在 urlopen 调用之前放置一条 print 语句。

Perhaps you can only have one request open at a time. Try putting a print statement before the urlopen call.

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