import requests
from bs4 import BeautifulSoup
def get_article_titles(url):
response = requests.get(url)
if response.status_code != 200:
print(f"Chyba: Nelze načíst stránku (kód: {response.status_code})")
return []
soup = BeautifulSoup(response.content, "html.parser")
# Najděte všechny elementy, které mají třídu "article-title"
title_elements = soup.find_all(class_="article-title")
# Získejte text z každého elementu s třídou "article-title"
titles = [title.text for title in title_elements]
return titles
if __name__ == "__main__":
url = "https://example-blog.com/" # Nahraďte vlastním URL
article_titles = get_article_titles(url)
for title in article_titles:
print(title)