Skip to content

Tag: beautifulsoup

web scraping returns an empty list

The problem here that printing job_titles returns an empty list instead of the job titles in the web site please help me fix this problem and any help would be appreciated Answer When I first went to the URL you’re requesting, I was shown a search page with no jobs listed. It was only after I submitted …

Python Web Scrape Query DIV data-brand

I’m trying to grab a div tag in an html page, but the result is showing an empty list. I’ve provided the code and a picture of the html. The page_text variable is an empty list. Answer You are close to your goal, just add True as value in your dict: As alternative you can go with css selectors and

How to scrape Trusted Shops?

I would appreciate your help on this scraping problem. I would like to scrape this site: https://www.trustedshops.de/bewertung/info_XDAD39B874C275A0751198C2510C3C670.html Although my code does not give me an error message, I do not see any output. I believe the problem is the bs.find_all statement; basically,…

how to remove /n from list results?

Hello everyone I’m scraping a table and separating the headers and the body of the table into separate lists but the body data has a lot of ‘/n’ and I’m trying to remove them but I cant seem to get them out. code: Results: As you can see in the table body results ‘n’ is in …