blob: c2e1bef8bbc38d5017d19bf7962646db0153c624 [file] [log] [blame]
Senthil Kumaranaca8fd72008-06-23 04:41:59 +00001:mod:`urllib.robotparser` --- Parser for robots.txt
2====================================================
3
4.. module:: urllib.robotparser
Georg Brandl0f7ede42008-06-23 11:23:31 +00005 :synopsis: Load a robots.txt file and answer questions about
Senthil Kumaranaca8fd72008-06-23 04:41:59 +00006 fetchability of other URLs.
7.. sectionauthor:: Skip Montanaro <skip@pobox.com>
8
9
10.. index::
11 single: WWW
12 single: World Wide Web
13 single: URL
14 single: robots.txt
15
16This module provides a single class, :class:`RobotFileParser`, which answers
17questions about whether or not a particular user agent can fetch a URL on the
18Web site that published the :file:`robots.txt` file. For more details on the
19structure of :file:`robots.txt` files, see http://www.robotstxt.org/orig.html.
20
21
Terry Jan Reedyf3f06812013-03-15 16:50:23 -040022.. class:: RobotFileParser(url='')
Senthil Kumaranaca8fd72008-06-23 04:41:59 +000023
Terry Jan Reedyf3f06812013-03-15 16:50:23 -040024 This class provides methods to read, parse and answer questions about the
25 :file:`robots.txt` file at *url*.
Senthil Kumaranaca8fd72008-06-23 04:41:59 +000026
Senthil Kumaranaca8fd72008-06-23 04:41:59 +000027 .. method:: set_url(url)
28
29 Sets the URL referring to a :file:`robots.txt` file.
30
Senthil Kumaranaca8fd72008-06-23 04:41:59 +000031 .. method:: read()
32
33 Reads the :file:`robots.txt` URL and feeds it to the parser.
34
Senthil Kumaranaca8fd72008-06-23 04:41:59 +000035 .. method:: parse(lines)
36
37 Parses the lines argument.
38
Senthil Kumaranaca8fd72008-06-23 04:41:59 +000039 .. method:: can_fetch(useragent, url)
40
41 Returns ``True`` if the *useragent* is allowed to fetch the *url*
42 according to the rules contained in the parsed :file:`robots.txt`
43 file.
44
Senthil Kumaranaca8fd72008-06-23 04:41:59 +000045 .. method:: mtime()
46
47 Returns the time the ``robots.txt`` file was last fetched. This is
48 useful for long-running web spiders that need to check for new
49 ``robots.txt`` files periodically.
50
Senthil Kumaranaca8fd72008-06-23 04:41:59 +000051 .. method:: modified()
52
53 Sets the time the ``robots.txt`` file was last fetched to the current
54 time.
55
Berker Peksag960e8482015-10-08 12:27:06 +030056 .. method:: crawl_delay(useragent)
Georg Brandl0f7ede42008-06-23 11:23:31 +000057
Berker Peksag960e8482015-10-08 12:27:06 +030058 Returns the value of the ``Crawl-delay`` parameter from ``robots.txt``
59 for the *useragent* in question. If there is no such parameter or it
60 doesn't apply to the *useragent* specified or the ``robots.txt`` entry
61 for this parameter has invalid syntax, return ``None``.
62
63 .. versionadded:: 3.6
64
65 .. method:: request_rate(useragent)
66
67 Returns the contents of the ``Request-rate`` parameter from
68 ``robots.txt`` in the form of a :func:`~collections.namedtuple`
69 ``(requests, seconds)``. If there is no such parameter or it doesn't
70 apply to the *useragent* specified or the ``robots.txt`` entry for this
71 parameter has invalid syntax, return ``None``.
72
73 .. versionadded:: 3.6
74
75
76The following example demonstrates basic use of the :class:`RobotFileParser`
77class::
Senthil Kumaranaca8fd72008-06-23 04:41:59 +000078
79 >>> import urllib.robotparser
80 >>> rp = urllib.robotparser.RobotFileParser()
81 >>> rp.set_url("http://www.musi-cal.com/robots.txt")
82 >>> rp.read()
Berker Peksag960e8482015-10-08 12:27:06 +030083 >>> rrate = rp.request_rate("*")
84 >>> rrate.requests
85 3
86 >>> rrate.seconds
87 20
88 >>> rp.crawl_delay("*")
89 6
Senthil Kumaranaca8fd72008-06-23 04:41:59 +000090 >>> rp.can_fetch("*", "http://www.musi-cal.com/cgi-bin/search?city=San+Francisco")
91 False
92 >>> rp.can_fetch("*", "http://www.musi-cal.com/")
93 True