Posts by Gustavo • 1 point
1 post
-
-2
votes1
answer54
viewsQ: How to use beatifulsoup to search for a certain word on the page
import requests from bs4 import BeautifulSoup url = "https://www.nike.com.br/Snkrs/Produto/Dunk-High-SP/153-169-211-279300" req = requests.get(url) html = req.text soup = BeautifulSoup(html,…