📜  mechanize python #11 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:45.669000             🧑  作者: Mango

代码示例1
resp = None

for link in br.links():
    siteMatch = re.compile( 'www.foofighters.com' ).search( link.url )

    if siteMatch:
        resp = br.follow_link( link )
        break