import requests
from bs4 import BeautifulSoup as BS
r = requests.get("
https://av.by/")
html = BS(r.content, "html.parser")
for el in html.select(".catalog__list > .catalog__items > .catalog__item"):
brand = el.select(".catalog__title")
print(brand[0].text)