Errors with Python's mechanize module - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T15:42:42Zhttp://stackoverflow.com/feeds/question/151929http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/151929/errors-with-pythons-mechanize-module1Errors with Python's mechanize moduleeliben2008-09-30T06:03:47Z2008-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#1519350Answer by Alexander Kojevnikov for Errors with Python's mechanize moduleAlexander Kojevnikov2008-09-30T06:06:44Z2008-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#1551272Answer by J.F. Sebastian for Errors with Python's mechanize moduleJ.F. Sebastian2008-09-30T21:15:47Z2008-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>>>> import mechanize
>>> filter(lambda s: "Error" in s, dir(mechanize))
['BrowserStateError', 'ContentTooShortError', 'FormNotFoundError', 'GopherError'
, 'HTTPDefaultErrorHandler', 'HTTPError', 'HTTPErrorProcessor', 'LinkNotFoundErr
or', 'LoadError', 'ParseError', 'RobotExclusionError', 'URLError']
</code></pre>