I’m having a really hard time finding a good comprehensive source for Mechanize’s documentation. Even the main documentation on mechanize’s site isn’t really that great: it only seems to list examples.
Is there a more formal place for documentation where I can see lists of classes and methods for this module? I’m a bit new to python, so maybe there’s a simple answer for this.
More specifically I need a good source of information for mechanize.Browser(), which I’ve only been able to find information on through random questions on Stack Overflow.
If you’re not happy with mechanize’s site, then I’m afraid the best you can do is look at the examples you’ve found or at the code from the library ifself.
Regarding
mechanize.Browserif you take a look at the code, then you’ll see:So, for starters, you can assume that a
mechanize.Browserobject is just a specializedurllib2.OpenerDirector.