從html
你給,你可以做到以下幾點:
from bs4 import BeautifulSoup
html = """<tr><td>PC1</td><td>zz:zz:zz:zz:zz:ce</td><td>10.0.0.244</td><td>23 hours, 55 minutes, 25 seconds</td></tr>
<tr><td>PC2</td><td>zz:zz:zz:zz:zz:cf</td><td>10.0.0.245</td><td>23 hours, 23 minutes, 27 seconds</td></tr>"""
soup = BeautifulSoup(html)
mac_ips = []
for tr in soup.find_all('tr'):
cols = [td.text for td in tr.find_all('td')]
mac_ips.append((cols[1], cols[2]))
for mac, ip in mac_ips:
print '{} {}'.format(mac, ip)
給你:
zz:zz:zz:zz:zz:ce 10.0.0.244
zz:zz:zz:zz:zz:cf 10.0.0.245
即mac_ips
將持有的每一行作爲一個匹配對:
[(u'zz:zz:zz:zz:zz:ce', u'10.0.0.244'), (u'zz:zz:zz:zz:zz:cf', u'10.0.0.245')]
如果你想單獨列出,那麼你可以做到以下幾點:
from bs4 import BeautifulSoup
html = """<tr><td>PC1</td><td>zz:zz:zz:zz:zz:ce</td><td>10.0.0.244</td><td>23 hours, 55 minutes, 25 seconds</td></tr>
<tr><td>PC2</td><td>zz:zz:zz:zz:zz:cf</td><td>10.0.0.245</td><td>23 hours, 23 minutes, 27 seconds</td></tr>"""
soup = BeautifulSoup(html)
mac = []
ip = []
for tr in soup.find_all('tr'):
cols = [td.text for td in tr.find_all('td')]
mac.append(cols[1])
ip.append(cols[2])
print mac
print ip
給你:
[u'zz:zz:zz:zz:zz:ce', u'zz:zz:zz:zz:zz:cf']
[u'10.0.0.244', u'10.0.0.245']
注:如果您解析更多的HTML,那麼你可能還需要先找到封閉<table>
。
由於您已經知道mac地址位於第二列,因此使用xpath查詢使用lxml(比美麗的湯快)。你不需要正則表達式。 –
可能的重複http://stackoverflow.com/questions/13074586/extracting-selected-columns-from-a-table-using-beautifulsoup – maazza