我正在尝试从主URL获取其他子集URL。但是,当我打印以查看是否得到内容时,我注意到我只是得到HTML,而不是其中的URL。
import urllib
file = 'http://example.com'
with urllib.request.urlopen(file) as url:
collection = url.read().decode('UTF-8')
答案 0 :(得分:1)
我认为这就是您要寻找的。 您可以使用漂亮的python汤库,并且此代码应与python3一起使用
import urllib
from urllib.request import urlopen
from bs4 import BeautifulSoup
def get_all_urls(url):
open = urlopen(url)
url_html = BeautifulSoup(open, 'html.parser')
for link in url_html.find_all('a'):
links = str(link.get('href'))
if links.startswith('http'):
print(links)
else:
print(url + str(links))
get_all_urls('url.com')