记住用户名密码
一、说明
BeautifulSoup是一种可以从html和xml中快速提取内容的python库
二、代码
def getAllUrl(self,url):
import urllib.request
from bs4 import BeautifulSoup
html = urllib.request.urlopen(url).read().decode("utf-8")
soup = BeautifulSoup(html, features='html.parser')
tags = soup.find_all('a')
for tag in tags:
print(str(tag.get('href')).strip())
三、效果图

目前有 0 条留言 其中:访客:0 条, 博主:0 条