Я пытаюсь отказаться от веб-страниц. Однако из-за этой ошибки невозможно go вперед.
мой шнур ...
import requests
from bs4 import BeautifulSoup
indeed_result = requests.get("https://kr.indeed.com/jobs?q=python&limit=50")
indeed_soup = BeautifulSoup(indeed_result.text, "html.parser")
pagination = indeed_soup.find("div", {"class": "pagination"})
pages = pagination.fine_all('a')
for page in pages:
print(page.get_text())
и мое сообщение об ошибке ...
Traceback (most recent call last):
File "index.py", line 13, in <module>
pages = pagination.find_all('a')
TypeError: 'NoneType' object is not callable
к вашему сведению, я установил BeautifulSoup4