Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
30 views

I'm trying to update a program that fetches comics each morning and emails them to me. The website I'm scraping has changed the page structure so the main image (the one I want) is now loaded by ...
AdamF's user avatar
  • 609
2 votes
1 answer
88 views

background: by default the website is only showing few names and there s a "moreBtn" to generate the full list code idea: create Html session, render with script clicking the "moreBtn&...
Beginner's user avatar
0 votes
0 answers
51 views

I've encountered this issue a few times while developing an app that uses PyPartPicker, but it has usually resolved itself when I fixed other problems. But now I'm in a bit of a stalemate. I've just ...
Stylus's user avatar
  • 1
0 votes
1 answer
49 views

I've just begun building a database updater that takes parts from PCPartPicker using PyPartPicker and uploads them to a supabase database. I've setup async functionality, but I'm having trouble with ...
Stylus's user avatar
  • 1
1 vote
0 answers
24 views

Page B(2nd page) request depending on Page (1st page) click which trigger an event in another js files to encrypt a value. How to automate this with Python and requests/requests-html? E.g. the content ...
Lewis Lee's user avatar
2 votes
2 answers
113 views

I'm trying to retrieve some data from a website with python. The website seems to generate its content with Javascript so I cannot use the standard requests library. I tried the module requests-html ...
Weiqi's user avatar
  • 23
0 votes
2 answers
68 views

I have a mongodb that is accessed through an API via the "requests" package. Within the database there are numerous schema we've set up; as an example, one of these is a "surveys" ...
X. Star's user avatar
0 votes
1 answer
218 views

UPDATE: The issue is resolved after I reinstalled Python from a different source. I was previously using the Windows store Python and am now using the download from python.org Same issue as this and ...
Shurong Ge's user avatar
0 votes
1 answer
126 views

I am currently working on a webscraper, and for the most part it works quite well. I have been using beautiful soup to extract html content; to extract javascript content, I just started with ...
Adi's user avatar
  • 3
-2 votes
3 answers
141 views

I have written a code that accesses a webpage and searches the page for the link to another website from the inspect element. After accessing that website, I need to get the zip code of an address ...
100PrcntSwag's user avatar
0 votes
1 answer
64 views

I'm learning requests-html and would like to know how to run multiple tasks asynchronously. While attempting to perform an asynchronous task using requests-html, I encountered an error message stating ...
user avatar
0 votes
0 answers
53 views

# Import packages import requests from bs4 import BeautifulSoup # Specify url: url url = 'https://www.nts.live/shows' # Package the request, send the request and catch the response: r r = requests....
pepperjohn's user avatar
0 votes
0 answers
68 views

So I have the following script: #!/usr/bin/env python3 import requests from bs4 import BeautifulSoup def parse_marketwatch_calendar(url): #page=requests.get(url).text #soup=BeautifulSoup(page,...
murkywaters's user avatar
0 votes
0 answers
171 views

So I am working in a program that sends multiple (around 100) requests per second, each to a different website. The requests are sent asynchronously in around 10 different threads, so they aren't ...
user18191682's user avatar
0 votes
0 answers
165 views

I'm somewhat new to programming. The basic idea is that I'm working on a project and need to send a request to a website and scrape some data from it. However, the website I'm trying to retrieve data ...
Cashyup's user avatar
0 votes
1 answer
203 views

i´m pretty new in Python programming. I have python3 and i installed requests via pip. I cant connect to any site with .get... Is it a firewall or some connection problems ? I´m clueless my code: ...
Maciek's user avatar
  • 3
0 votes
1 answer
170 views

Here's what I try to achieve: I have a Raspberry Pi 4 with a Pimoroni Inky Frame. I want to use it for a sponsoring event (Tour for Life) to show the recent amount of gifted money. This gifted amount ...
Marcel-Jan Krijgsman's user avatar
0 votes
1 answer
91 views

I'm scraping from a website and it prints out the characters ' " - as �. It copies this: “It’s only after we’ve lost everything that we’re free to do anything.” – Fight Club, Tyler Durden But ...
zelbow's user avatar
  • 17
3 votes
0 answers
180 views

I have this code that iterates through several links. For each one, it retrieves the HTML response and runs response_html.find('relative-time') import pandas as pd import requests_html def main(): ...
Carlos Eduardo de Schuller Ban's user avatar
0 votes
0 answers
56 views

I'm just trying to change my request location without using any kind of proxies, I was ended up with the following URL which is working perfectly in the browser and selenium library (python). https://...
win_ter's user avatar
0 votes
1 answer
102 views

When i try to scrape this site site i run into an issue and i can't figure out what's wrong. i tried using Htmlsession but python told me to use AsyncHTMLSession because the former can't perform ...
moyato's user avatar
  • 9
0 votes
0 answers
165 views

I wrote some code Monday last week that worked. By Wednesday, it did not work. I am scraping data from a website, and by Wednesday the code: driver = uc.Chrome(use_subprocess=True) produced error ...
Martin Dinesen's user avatar
0 votes
1 answer
65 views

Does anyone know where this problem comes from? I run the same code in a few seconds and sometimes it gives me that error and sometimes error it doesn't. page = requests.get(URL, headers=headers) ...
A ch b's user avatar
  • 1
0 votes
1 answer
286 views

Firstly, I am a beginner, just bordering on intermediate with python, so please be patient with my approach to this problem. I was working on a web scraping mini project using lxml etree and requests (...
intmainvoid's user avatar
0 votes
1 answer
112 views

I want to pass an Authentication object when creating a get request in requests_html. Also want to pass a file path for the certificate. This is what I have so far. def get_url(): s = HTMLSession(...
stirfryp4pi's user avatar
1 vote
0 answers
32 views

I am working on an app that uses a recording of the user, and am using requests to send a wav file to a flask backend Here is the code in my html file, it logs the type of the audio which designates ...
originofpork's user avatar
10 votes
11 answers
20k views

import requests from bs4 import BeautifulSoup from requests_html import HTMLSession url="https://dmarket.com/ingame-items/item-list/csgo-skins?title=recoil%20case" sesion = HTMLSession() ...
Mihali George's user avatar
0 votes
1 answer
400 views

What is difference between strings and stripped_strings in BeautifulSoup import requests from bs4 import BeautifulSoup url = "https://codewithharry.com" r = requests.get(url) htmlcontent = r....
yashviradadiya's user avatar
2 votes
1 answer
109 views

I'm new to web scraping using Python and BeautifulSoup and I'm trying to extract car data (model, price, etc.) from a public site with Requests-HTML. I can successfully output the data I need from ...
greenbananas2's user avatar
1 vote
1 answer
108 views

I'm trying to scrape a radio station website to get the current charts (https://www.energy.de/programm/energy-euro-hot-30 and then https://music.apple.com/de/playlist/energy-euro-hot-30/pl....
Chaos Klaus's user avatar
1 vote
1 answer
329 views

I'm trying to scrape a website, but I'm not getting the correct, analyzable code back. I am using python 3.12 and the requests HTML module to scrape the websites. For some of them it works without ...
Chaos Klaus's user avatar
1 vote
1 answer
256 views

I try to send a request to a website, but after I run my code, it's running forever and getting no response. Please someone help me, here is my code: import requests req = requests.session() url = &...
Soroush's user avatar
  • 13
0 votes
2 answers
126 views

I am learning web scraping. As a part of the mini-project, I am scraping the Amazon.com website for product reviews, review titles, review descriptions, and user names using BeautifulSoup and ...
ml ds's user avatar
  • 11
-1 votes
2 answers
55 views

I am trying to scrape the window.PRELOAEDED_STATE from the following url using requests.json, I cant isolate the element I want so that i can use the json function on it. I tried the below code first....
Sam Kirwan's user avatar
0 votes
1 answer
56 views

I use the following source code: import requests url = "https://www.baha.com/nasdaq-100-index/index/tts-751307/name/asc/1/index/performance/471" web = requests.get(url) print(web....
M14's user avatar
  • 490
0 votes
1 answer
1k views

I'm trying to webscrape a particular url using requests-html module which uses Chromium browser. However Chromium couldn't load what seem to be the Javascript portion and triggers timeout error. I ...
Jason's user avatar
  • 43
0 votes
1 answer
92 views

I have one site trying to scarp it using requests_html but it only take Arabic language I need the English text of the title Etc.. import pandas from requests_html import HTMLSession import time ...
Kernel Technology's user avatar
1 vote
2 answers
310 views

I am trying to scrape the table on this website (https://www.cmegroup.com/markets/fx/g10/canadian-dollar.settlements.html). I tried using the requests library, pandas, and selenium, but to no avail. ...
jare2620's user avatar
-1 votes
1 answer
337 views

I'm trying to scrape a webpage after login. If I use only BeautifulSoup and requests I get Please enable JavaScript to continue using this application. So, I decided to use html_requests with the ...
Fabix's user avatar
  • 281
0 votes
0 answers
21 views

I am trying to Webscrape a website using requests and beautiful soup. But I am getting 'XXX' instead of the text within the tags. code: url = 'https://www.discover.com/student-loans/' req = opener....
Aditi's user avatar
  • 1
-1 votes
1 answer
281 views

I am learning web scraping and I installed requests-html. I want to scrap all "a" elements with class="screener-link-primary" from this page: finviz This is my code: from bs4 ...
Jose Patiño's user avatar
0 votes
1 answer
617 views

I am extracting football results with their odds, I have created 2 for-loops, one for the extraction of team names and results and one for the odds. Every single for loop works well, but I don't know ...
Terra1's user avatar
  • 31
-5 votes
1 answer
1k views

I want use requests-html and Beautifulsoup to get html, but the function of'response.html.render()'didn't work. from requests_html import HTMLSession session = HTMLSession() response = session.get('...
Thoreau I's user avatar
  • 127
3 votes
0 answers
188 views

I am trying to use request.get() to download files from the assist.org website for a research project. Specifically, when you go to the website they have a box for articulation agreements. While it ...
str1's user avatar
  • 31
1 vote
2 answers
170 views

Hello I am trying to get Flickr public images from flicker group and I am able to parse the html and get the image href however struggling to find a way to get all the images from a page as we scroll ...
Explorer's user avatar
  • 1,677
0 votes
1 answer
30 views

everyone I am trying to get data from an website which is called 'biletix.com'. I have tried to solve the problem that I am facing. I have look at the docs and stackoverflow questions but still I dont ...
Alp Eren Gül's user avatar
1 vote
1 answer
45 views

I have a website that uses 2 API calls in order to build the actual link to download a gzip file, the problem is that the headers are changing a lot I think and the cookies too, I tried finding out ...
Dolev Mitz's user avatar
-1 votes
1 answer
90 views

I want to download a .CSV file from this page https://data.anbima.com.br/certificado-de-recebiveis?view=precos, using requests. Get(). When I use the Inspect, there is no link directly to the file. ...
João Tanuri's user avatar
0 votes
1 answer
203 views

I tried to login to my google account with the requests library, but I couldn't, can anyone help? I couldn't find how to post the data it's too complicated, or i dumb... I can see the data in the form ...
Kennys Arnold's user avatar
0 votes
0 answers
514 views

Using the requests_html library I get an AttributeError exception: "AttributeError: 'Future' object has no attribute 'html' Code: asession = requests_html.AsyncHTMLSession() r = await asession....
Khaled Hamdy's user avatar

1
2 3 4 5
11