beautifulsoup tag

65 questions


1 answers
82 views
0
While performing web crawling for data analysis, html is called up, but it is not called by the .select('table') method that I always used.

### Calling Pandas### Include in variable called page url to crawl webimport pandas as pd url = 'https://api.xangle.io/project/exchange/price?lang=ko&currency=krw&page=0&items_per_page=50'...


1 answers
82 views
0
Is there a method that converts the selected table into a data frame right away with Beautiful Soup?

I want to scratch a table on a website and convert it into a data frame, or save it as an Excel file right awayIs there a function that converts the table selected by bs4 into a data frame right away?...


1 answers
124 views
0
Max retries exceeded with url & [SSL: CERTIFICATE_VERIFY_FAILED] impossible to get local issuer certificate error when using selenium and BS4

Hi, everyoneqpldocs.dla.mil/search/parts.aspx?qpl=1780We would like to extract the lists shown in the image below as text from the url above. (Since we are going to go through each list and perform ad...


1 answers
118 views
0
I'm trying to crawl the website, but I can't proceed because of the HTML error.

import urllib.requestfrom bs4 import BeautifulSoupurl = 'https://kr.iherb.com/search?kw=21st%20century'html = urllib.request.urlopen(url).read()soup = BeautifulSoup(html, 'html.parser')address = soup....

2 years ago

1 answers
121 views
0
[Python] If an error occurs during crawling repetition, I ask you to re-run the repetition statement.

Hello, we are producing a Python crawling program through the request module.After starting crawling in the program you are designing, due to a network error, etc. I wonder if there is an error in the...

2 years ago
« - 7 -

© 2024 OneMinuteCode. All rights reserved.