#python #web-scraping #python-requests
#python #очистка веб-страниц #python-запросы
Вопрос:
У меня есть этот код на python, который показывает мне ссылки. Как мне выбрать одну из этих ссылок? Вы можете выбрать одну из этих ссылок, чтобы она содержала текст «NICZ1524002»
import requests
import json
from bs4 import BeautifulSoup
r= requests.get("https://moredrops.cl/Drops/Brands/c/dropsMarcas")
data=r.text
soup= BeautifulSoup(data, 'html.parser')
tags= soup.find_all('a' , class_='name')
for tag in tags:
print(tag.get('href'))
Комментарии:
1. вы можете выполнить поиск по ключевому слову «BeautifulSoup soup.select()»
Ответ №1:
Использование urlparse для получения листа url:
import os
from urllib.parse import urlparse
import requests
import json
from bs4 import BeautifulSoup
r= requests.get("https://moredrops.cl/Drops/Brands/c/dropsMarcas")
data=r.text
soup= BeautifulSoup(data, 'html.parser')
tags= soup.find_all('a' , class_='name')
for tag in tags:
url = tag.get('href')
a = urlparse(url)
if os.path.basename(a.path) == "NICZ1524002":
print(url)