python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Using soup.select('p > strong'), how do i get the values that are false to the condition?
Given
<p>**44. Best Regional Mexican Music Album (Including Tejano)**<br><em>For albums containing at least 51% playing time of new regional Mexican (banda, norteño, corridos, gruper...
whoistari
Votes: 0
Answers: 0
BeautifulSoup scraping certain word
Just to clarify everything, I'm new to Python and trying to scrape data using BeautifulSoup. The problem is, how do I scrape certain words in a middle of a sentence? Below is the HTML that I try to sc...
Ahmad Nasaiei
Votes: 0
Answers: 1
Using Selenium to click page and scrape Info from routed page
I am working on a project to analyze the SuperCluster Astronaut Database. I am trying to scrape the data for each astronaut into a nice, clean pandas dataframe. There is plenty of descriptive inform...
user2813606
Votes: 0
Answers: 2
How to scrape specific information on a website
Here's my script :
import re
import requests
from requests import get
from bs4 import BeautifulSoup
import pandas as pd
import numpy as np
URLs = ['https://www.iwc.com/fr/fr/watch-collections/pilot-w...
Anima300
Votes: 0
Answers: 1