Python Forum
Unable to print data while looping through list in csv for webscraping - Python
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Unable to print data while looping through list in csv for webscraping - Python
#2
The page strangely lacks classes and ids so no one can target specific element directly. What you could do is to find the table you want to scrape by using the above h3 tag:
table = soup.find('h3', text='CONTRACTOR').find_next_sibling('table')
Note find_next_sibling method.
Then you can get all tr tags and from second, get the desired td. Have to use indices because as I said there is no classes or id to point to.

address = table.find_all('tr')[1].find_all('td')[2].text
Finally, you get 'S-33/34, JDA Shopping Center, Amrapali Circel, Vaishali Nagar, Jaipur' form the first url in the csv
"As they say in Mexico 'dosvidaniya'. That makes two vidaniyas."
https://freedns.afraid.org
Reply


Messages In This Thread
RE: Unable to print data while looping through list in csv for webscraping - Python - by wavic - Oct-04-2017, 11:18 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Webscraping news articles by using selenium cate16 7 3,737 Aug-28-2023, 09:58 AM
Last Post: snippsat
  Webscraping with beautifulsoup cormanstan 3 2,441 Aug-24-2023, 11:57 AM
Last Post: snippsat
  Webscraping returning empty table Buuuwq 0 1,576 Dec-09-2022, 10:41 AM
Last Post: Buuuwq
  WebScraping using Selenium library Korgik 0 1,195 Dec-09-2022, 09:51 AM
Last Post: Korgik
  Selenium innerHTML list, print specific value denis22934 2 3,560 Jun-14-2021, 04:59 AM
Last Post: denis22934
  DJANGO Looping Through Context Variable with specific data Taz 0 2,003 Feb-18-2021, 03:52 PM
Last Post: Taz
  How to get rid of numerical tokens in output (webscraping issue)? jps2020 0 2,060 Oct-26-2020, 05:37 PM
Last Post: jps2020
  Python Webscraping with a Login Website warriordazza 0 2,765 Jun-07-2020, 07:04 AM
Last Post: warriordazza
  Unable to get the data from web API using authentication key lokamaba 0 2,118 May-15-2020, 05:07 AM
Last Post: lokamaba
  Help with basic webscraping Captain_Snuggle 2 4,130 Nov-07-2019, 08:07 PM
Last Post: kozaizsvemira

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020