Home
last modified time | relevance | path

Searched refs:robotparser (Results 1 – 25 of 33) sorted by relevance

12

/external/python/cpython2/Doc/library/
Drobotparser.rst2 :mod:`robotparser` --- Parser for robots.txt
5 .. module:: robotparser
18 The :mod:`robotparser` module has been renamed :mod:`urllib.robotparser` in
71 >>> import robotparser
72 >>> rp = robotparser.RobotFileParser()
Dfileformats.rst16 robotparser.rst
/external/python/cpython3/Lib/test/
Dtest_robotparser.py5 import urllib.robotparser
18 self.parser = urllib.robotparser.RobotFileParser()
91 urllib.robotparser.RequestRate
114 request_rate = urllib.robotparser.RequestRate(9, 30)
243 request_rate = urllib.robotparser.RequestRate(3, 15)
310 parser = urllib.robotparser.RobotFileParser()
325 cls.parser = urllib.robotparser.RobotFileParser(cls.robots_txt)
349 parser = urllib.robotparser.RobotFileParser(self.url('i-robot.txt'))
/external/python/cpython2/Lib/test/
Dtest_robotparser.py2 import robotparser
21 self.parser = robotparser.RobotFileParser()
199 parser = robotparser.RobotFileParser()
214 cls.parser = robotparser.RobotFileParser(cls.robots_txt)
236 parser = robotparser.RobotFileParser(self.url('i-robot.txt'))
/external/python/cpython3/Doc/library/
Durllib.robotparser.rst1 :mod:`urllib.robotparser` --- Parser for robots.txt
4 .. module:: urllib.robotparser
10 **Source code:** :source:`Lib/urllib/robotparser.py`
83 >>> import urllib.robotparser
84 >>> rp = urllib.robotparser.RobotFileParser()
Durllib.rst15 * :mod:`urllib.robotparser` for parsing ``robots.txt`` files
Dinternet.rst30 urllib.robotparser.rst
/external/python/cpython2/Misc/NEWS.d/next/Library/
D2018-04-02-20-44-54.bpo-32861.HeBjzN.rst1 The urllib.robotparser's ``__str__`` representation now includes wildcard
/external/python/cpython2/Tools/webchecker/
DREADME11 - Jan 1997. First release. The module robotparser.py was written by
Dwebchecker.py122 import robotparser
332 self.robots[root] = rp = robotparser.RobotFileParser()
/external/python/cpython2/Misc/NEWS.d/
D2.6b2.rst394 Document that robotparser has been renamed to urllib.robotparser in Python
D2.6b3.rst414 Bug fix in robotparser parsing of Allow: lines.
D2.7.6rc1.rst682 urllib.parse.robotparser normalizes the urls before adding to ruleline. This
D2.7.7rc1.rst157 Reduced the risk of false positives in robotparser by checking to make sure
D2.7.1rc1.rst945 In urllib.robotparser, if there are multiple 'User-agent: *' entries,
/external/python/six/documentation/
Dindex.rst668 | ``urllib.robotparser`` | :mod:`py2:robotparser` | :mod:`py3:urllib.robotparser
670 | ``urllib_robotparser`` | :mod:`py2:robotparser` | :mod:`py3:urllib.robotparser
/external/python/six/
Dtest_six.py186 assert item_name in dir(six.moves.urllib.robotparser)
187 getattr(six.moves.urllib.robotparser, item_name)
Dsix.py483 robotparser = _importer._get_module("moves.urllib_robotparser") variable in Module_six_moves_urllib
/external/python/setuptools/pkg_resources/_vendor/
Dsix.py477 robotparser = _importer._get_module("moves.urllib_robotparser") variable in Module_six_moves_urllib
/external/python/setuptools/setuptools/_vendor/
Dsix.py477 robotparser = _importer._get_module("moves.urllib_robotparser") variable in Module_six_moves_urllib
/external/scapy/scapy/modules/
Dsix.py487 robotparser = _importer._get_module("moves.urllib_robotparser") variable in Module_six_moves_urllib
/external/python/cpython3/Misc/NEWS.d/
D3.7.0b5.rst439 The urllib.robotparser's ``__str__`` representation now includes wildcard
D3.6.6rc1.rst398 The urllib.robotparser's ``__str__`` representation now includes wildcard
D3.6.4rc1.rst309 :meth:`RobotFileParser.parse() <urllib.robotparser.RobotFileParser.parse>`
D3.7.0a3.rst389 :meth:`RobotFileParser.parse() <urllib.robotparser.RobotFileParser.parse>`

12