Получите все теги абзаца BeautifulSoup

soup = BeautifulSoup('html_file', 'html.parser')
all_paragraphs = soup.find_all('p')
Tejas Naik