Piękna Klasa Znajdź
mydivs = soup.findAll("div", {"class": "stylelistrow"})
Tommyom
mydivs = soup.findAll("div", {"class": "stylelistrow"})
from bs4 import BeautifulSoup
with open("index.html") as fp:
soup = BeautifulSoup(fp)
soup = BeautifulSoup("<html>a web page</html>")
li = soup.find('li', {'class': 'text'})
children = li.findChildren("a" , recursive=False)
for child in children:
print child
from bs4 import BeautifulSoup
# html source
html = """
<div>
<h1>This is H1</h1>
<h2>This is H2</h2>
<h3>This is H3</h3>
</div>
"""
# BeautifulSoup
soup = BeautifulSoup(html, 'html.parser')
# Find all by selector
els = soup.select('div > *')
print(els)
#output
#[<h1>This is H1</h1>, <h2>This is H2</h2>, <h3>This is H3</h3>]