“So erhalten Sie alle Links Text von einer Website Python BeautifulSoup” Code-Antworten

So erhalten Sie alle Links von einer Website 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

So erhalten Sie alle Links Text von einer Website 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

So erhalten Sie alle Links Text von einer Website Python BeautifulSoup

import requests
from bs4 import BeautifulSoup as bs

github_avatar = input('Input git user: ')
url = 'https://github.com/'+ github_avatar
r = requests.get(url)
soup = bs(r.text, 'html.parser')
profile_image = soup.find('img', {'alt' : 'Avatar'})['src']
# print(url)
print(profile_image)
Open Orangutan

Ähnliche Antworten wie “So erhalten Sie alle Links Text von einer Website Python BeautifulSoup”

Fragen ähnlich wie “So erhalten Sie alle Links Text von einer Website Python BeautifulSoup”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen