为了账号安全,请及时绑定邮箱和手机立即绑定

AttributeError: 'UrlManager' object has no attribute 'new_urls'

class UrlManager(object):
    # 管理器要维护待爬取的和爬去过的两个URL列表
    def __int__(self):
        self.new_urls = set()
        self.old_urls = set()
    def add_new_url(self,url):  #向管理器中添加一个url
        if url is None:
            return
        if url not in self.new_urls and url not in self.old_urls:
            self.new_urls.add(url)

哪位大神帮忙看下?用的是python3.6


正在回答

1 回答

自己找到错误了,__init__写成了__int__

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
Python开发简单爬虫
  • 参与学习       227670    人
  • 解答问题       1219    个

本教程带您解开python爬虫这门神奇技术的面纱

进入课程

AttributeError: 'UrlManager' object has no attribute 'new_urls'

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信