I'm trying to use BeautifulSoup
to extract input fields for a specific form only.
Extracting the form using the following:
soup.find('form')
Now I want to extract all input fields which are a child to that form only.
How can I do that with BS?
As noted in comments, chain
find
andfind_all()
for the context-specific search:If you want direct
input
elements only, addrecursive=False
:Or, using CSS selectors:
And, getting direct
input
child elements only: