1

嘿,我想从一个单词中复制或打印超链接。

例如:礼品卡

使用哪个代码可以做到这一点?

我可以使用 urllib2 吗?

如果有人说德语,那就更简单了:)

4

1 回答 1

0

你会想要使用BeautifulSoup

from bs4 import BeautifulSoup
htmlfile = urllib2.urlopen(url).read()
soup = BeautifulSoup(htmlfile)
a_tag = soup.find('a') # This finds the first occurrence of an a tag.
print a_tag['href'] # Prints the link which the a_tag links to. (hyperlink)

当然,这是非常基本的代码。如果您查看模块的文档,您会看到许多其他方法可以用来实现您的结果:)

于 2013-06-29T14:04:59.263 回答