コード例 #1
0
 def is_valid_url(self, url):
     #print url
     ans = Robot.is_valid_url(self, url) and self.url_pattern.match(
         url) != None and not url.startswith(
             'http://www.ganji.com/fang1') and not url.startswith(
                 'http://help.ganji.com') and not url.startswith(
                     'http://club.ganji.com')
     #print ans
     return ans
コード例 #2
0
ファイル: soufun_bot.py プロジェクト: hushinghai/ZhuFangZhi
 def is_valid_url(self, url):
     return Robot.is_valid_url(self, url) and self.url_pattern.match(url) != None
コード例 #3
0
ファイル: 58_bot.py プロジェクト: sudheer007/ZhuFangZhi
 def is_valid_url(self, url):
     return Robot.is_valid_url(self, url) and self.url_pattern.match(url) != None
コード例 #4
0
ファイル: ganji_bot.py プロジェクト: hushinghai/ZhuFangZhi
 def is_valid_url(self, url):
     #print url
     ans = Robot.is_valid_url(self, url) and self.url_pattern.match(url) != None and not url.startswith('http://www.ganji.com/fang1') and not url.startswith('http://help.ganji.com') and not url.startswith('http://club.ganji.com')
     #print ans
     return ans