Errors with Python's mechanize module - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T15:42:42Z http://stackoverflow.com/feeds/question/151929 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/151929/errors-with-pythons-mechanize-module 1 Errors with Python's mechanize module eliben 2008-09-30T06:03:47Z 2008-09-30T21:30:59Z <p>Hello, I'm using the <code>mechanize</code> module to execute some web queries from Python. I want my program to be error-resilient and handle all kinds of errors (wrong URLs, 403/404 responsese) gracefully. However, I can't find in mechanize's documentation the errors / exceptions it throws for various errors.</p> <p>I just call it with:</p> <pre><code> self.browser = mechanize.Browser() self.browser.addheaders = [('User-agent', browser_header)] self.browser.open(query_url) self.result_page = self.browser.response().read() </code></pre> <p>How can I know what errors / exceptions can be thrown here and handle them ?</p> http://stackoverflow.com/questions/151929/errors-with-pythons-mechanize-module/151935#151935 0 Answer by Alexander Kojevnikov for Errors with Python's mechanize module Alexander Kojevnikov 2008-09-30T06:06:44Z 2008-09-30T06:06:44Z <p>I found this in their docs:</p> <blockquote> <p>One final thing to note is that there are some catch-all bare except: statements in the module, which are there to handle unexpected bad input without crashing your program. If this happens, it's a bug in mechanize, so please mail me the warning text.</p> </blockquote> <p>So I guess they don't raise any exceptions. You can also search the source code for Exception subclasses and see how they are used.</p> http://stackoverflow.com/questions/151929/errors-with-pythons-mechanize-module/155127#155127 2 Answer by J.F. Sebastian for Errors with Python's mechanize module J.F. Sebastian 2008-09-30T21:15:47Z 2008-09-30T21:27:15Z <pre><code>$ perl -0777 -ne'print qq($1) if /__all__ = \[(.*?)\]/s' __init__.py | grep Error 'BrowserStateError', 'ContentTooShortError', 'FormNotFoundError', 'GopherError', 'HTTPDefaultErrorHandler', 'HTTPError', 'HTTPErrorProcessor', 'LinkNotFoundError', 'LoadError', 'ParseError', 'RobotExclusionError', 'URLError', </code></pre> <p>Or:</p> <pre><code>&gt;&gt;&gt; import mechanize &gt;&gt;&gt; filter(lambda s: "Error" in s, dir(mechanize)) ['BrowserStateError', 'ContentTooShortError', 'FormNotFoundError', 'GopherError' , 'HTTPDefaultErrorHandler', 'HTTPError', 'HTTPErrorProcessor', 'LinkNotFoundErr or', 'LoadError', 'ParseError', 'RobotExclusionError', 'URLError'] </code></pre>