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

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

我写的UrlManager代码如下:

class UrlManager(object):

      

    def __init__(self):

        self.new_urls=set()

        self.old_urls=set()

        

        def add_new_url(self, 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)

                

        def add_new_urls(self, urls):

            if urls is None or len(urls) ==0:

                return

            for url in urls:

                self.add_new_url(url)   


        def has_new_url(self):

            return len(self.new_urls)!=0


        def get_new_url(self):

            new_url=self.new_urls.pop()

            self.old_urls.add(new_url)

            return new_url

    


正在回答

1 回答

ok了

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

举报

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

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

进入课程

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

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