Python-수출 가치의 숨겨진 입력

0

질문

나를 추출하기 위해 노력하고 가치의 숨겨진 입력된 태그입니다. 도 하지만 요소가 존재하에서는 HTML 나는 그것을 찾을 수 없습니다로 bs4.

이것은 오류 메시지가 나를 얻을:

AttributeError: 'NoneType' object has no attribute 'find'

이것은 html 웹 페이지에서:

<form id="exampleid" class="exampleclass" action="/ex/ex-ex/ex/2" method="post">
    
    <more html>
                                
    <div>
    <input type="hidden" name="csrf" value="abcdefghijklmnopqrstuvwxyz">
    </div></form>

이것은 현재 내 코드:

csrf = soup.find("form", {"id": "exampleid"})
csrf = csrf.find('input', {'name': 'csrf'}).get("value")
print(csrf)

나는 감사하는 모든 종류의 도움으로 그것이 정말로 괴롭다. 사전에 감사합니다!

beautifulsoup forms hidden-field python
2021-11-23 17:09:09
1

최고의 응답

1

당신의 선택은 여전히 작동하고 있다고 생각하는 또 다른 문제,어쩌면 당신은 늘 html 을 얻을 기대하고 있습니다.

로 alternativ 선택하고의 가치를 얻을 이 숨겨진 <input> 다음을 사용할 수 있습니다 css selector:

soup.select_one('#exampleid input[name*="csrf"]')['value']

from bs4 import BeautifulSoup

html = '''
<form id="exampleid" class="exampleclass" action="/ex/ex-ex/ex/2" method="post">
<div>
<input type="hidden" name="csrf" value="abcdefghijklmnopqrstuvwxyz">
</div></form>'''

soup = BeautifulSoup(html, "lxml")

csrf = soup.select_one('#exampleid input[name*="csrf"]')['value']

print(csrf)

출력

abcdefghijklmnopqrstuvwxyz
2021-11-24 07:51:04

다른 언어로

이 페이지는 다른 언어로되어 있습니다

Русский
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................