Answer the question
In order to leave comments, you need to log in
Why might the parsed text not be displayed?
I'm trying to parse the list of series from the site https://myseries.ru/series?page=1
import requests
from bs4 import BeautifulSoup
url = 'https://myseries.ru/series?page=1'
r = requests.get(url)
soup = BeautifulSoup(r.text, 'html.parser')
inf = soup.find('a', class_='series-link')
print(inf)
<a class="series-link" href="/series/chernobyl"> ==$0
"
Чернобыль/Chernobyl
"
</a>
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question