when we use findAll() does it search for only the immediate children. How to get a table that is wrapped in various divs?
Regarding findAll() function
Hello @Shivambansal0804,
soup.findAll
extracts a list of Tag objects that match the given criteria. It recursively finds all the tags. You can use attrs
argument to find tables. Check this.
Happy Learning