“Как получить все ссылки с сайта python beautifulsoup” Ответ

Как получить все ссылки с сайта python beautifulsoup

from bs4 import BeautifulSoup
import requests

response = requests.get('url')
all_links = response.find_all('a')  # this will return all links+text
Tejas Naik

Как получить все ссылки текст с сайта python beautifulsoup

from bs4 import BeautifulSoup
import requests

response = requests.get('url')
all_links = response.find_all('a')  # this will return all links+text
for link in all_links:
  print(link.get_text())	# this will prints all text
  print(link.get('href'))	# this will print all links
Tejas Naik

Ответы похожие на “Как получить все ссылки с сайта python beautifulsoup”

Вопросы похожие на “Как получить все ссылки с сайта python beautifulsoup”

Смотреть популярные ответы по языку

Смотреть другие языки программирования