私は次のようなhtmlファイルを持っています:
<form action="/2811457/follow?gsid=3_5bce9b871484d3af90c89f37" method="post">
<div>
<a href="/2811457/follow?page=2&gsid=3_5bce9b871484d3af90c89f37">next_page</a>
<input name="mp" type="hidden" value="3" />
<input type="text" name="page" size="2" style='-wap-input-format: "*N"' />
<input type="submit" value="jump" /> 1/3
</div>
</form>
ファイルから「1/3」を抽出する方法は?
それはhtmlの一部です、私はそれを明らかにするつもりです。私が美しいスープを使うとき、
私はbeautifulsoupを初めて使用し、ドキュメントを確認しましたが、それでも混乱しています。
HTMLファイルから「1/3」を抽出する方法は?
total_urls_num = re.findall('\d+/\d+',response)
作業コード:
from BeautifulSoup import BeautifulSoup
import re
with open("html.txt","r") as f:
response = f.read()
print response
soup = BeautifulSoup(response)
delete_urls = soup.findAll('a', href=re.compile('follow\?page')) #works,should escape ?
print delete_urls
#total_urls_num = re.findall('\d+/\d+',response)
total_urls_num = soup.find('input',type='submit')
print total_urls_num