vote up -1 vote down star

Hi,

I want to use mechanize with python to get all the links of the page, and then open the links.How can I do it?

flag

29% accept rate

2 Answers

vote up 0 vote down

The Browser object in mechanize has a links method that will retrieve all the links on the page.

link|flag
vote up 2 vote down

Here is an example from the project's page:


import re
from mechanize import Browser

br = Browser()
br.open("http://www.example.com/")

# ...

# .links() optionally accepts the keyword args of .follow_/.find_link()
for link in br.links(url_regex="python.org"):
    print link
    br.follow_link(link)  # takes EITHER Link instance OR keyword args
    br.back()
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.