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)
Why does the code break when removing Try function in R?
I am trying to clean up and package a webscraping script that I built. I have a list of URLs that have their pages html metadata parsed into a list called parsed_pages.
dput(parsed_pages)
list(`https...
d3hero23
Votes: 0
Answers: 0
Extract text within divs using Google Sheet
I am trying to extract headlines from a BostonGlobe website https://www.bostonglobe.com/search/?p1=BGSearch_Overlay&q=problem. The headlines are embedded in divs. I use Google Sheets function impo...
Maeve
Votes: 0
Answers: 3
Save an .xls file in a specific folder
I have a web_scraping script, which generates a download, resulting in
a .xls file
I can't save this .xls file in the folder I want.
I would like to save it to a local folder
I tried like this:
impo...
user18697299
Votes: 0
Answers: 1
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