gpt4 book ai didi

python - 从 BeautifulSoup 结果中获取表单 "action"

转载 作者:行者123 更新时间:2023-11-28 20:22:29 29 4
gpt4 key购买 nike

我正在为一个网站编写一个 Python 解析器来自动完成一些工作,但我不太喜欢 Py 的“re”模块(正则表达式)并且无法让它工作。

req = urllib2.Request(tl2)
req.add_unredirected_header('User-Agent', ua)
response = urllib2.urlopen(req)
try:
html = response.read()
except urllib2.URLError, e:
print "Error while reading data. Are you connected to the interwebz?!", e

soup = BeautifulSoup.BeautifulSoup(html)
form = soup.find('form', id='form_product_page')
pret = form.prettify()

print pret

结果:

<form id="form_product_page" name="form_1362737440" action="/download/791055/164084/" method="get">
<input id="nojssubmit" type="submit" value="Download" />
</form>

的确,代码已经完成,这正是我开始所需要的。现在,我想知道应该以哪种方式从“form”标签中提取“action”属性。这只是我需要从 BeautifulSoup 响应中得到的。

我试过使用 form = soup.find('form', id='form_product_page').parent.get('action') 但结果是“无”。我想提取的是例如“/download/791055/164084/”。这在链接的每个 URL 上都是不同的。


变量(示例):
tl2 = http://example.com
ua = Mozilla Firefox/14.04

最佳答案

您可以一步完成:

action = soup.find('form', id='form_product_page').get('action')

关于python - 从 BeautifulSoup 结果中获取表单 "action",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23462826/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com