Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
error in code web scraping
#4
I think you've misunderstood what you've been told. find will return some object and you'll need to use the text attribute to, well, get the text from it. In your case, find is returning None as an element matching the criteria you specified (e.g. a "div" element with a class of "_3wU53n" could not be found. So, None is going to be assigned to your variable and then when you try and access attributes or call methods on that, the same kind of problem will occur.

As mlieqo suggests, you should check the criteria you're using to find the elements: are you using the right tag and class names?
Reply


Messages In This Thread
error in code web scraping - by alexisbrunaux - Aug-17-2020, 02:28 AM
RE: error in code web scraping - by mlieqo - Aug-17-2020, 06:10 AM
RE: error in code web scraping - by alexisbrunaux - Aug-18-2020, 01:31 AM
RE: error in code web scraping - by ndc85430 - Aug-18-2020, 05:18 AM
RE: error in code web scraping - by snippsat - Aug-18-2020, 10:05 AM
RE: error in code web scraping - by alexisbrunaux - Aug-19-2020, 02:31 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  I am scraping a web page but got an Error Sarmad54 3 2,636 Mar-02-2023, 08:20 PM
Last Post: Sarmad54
  scraping code misses listings kolarmi19 0 1,900 Jan-27-2023, 10:00 AM
Last Post: kolarmi19
  Code Help, web scraping non uniform lists(ul) luke_m 4 4,376 Apr-22-2021, 05:16 PM
Last Post: luke_m
  scraping code nexuz89 0 2,053 Sep-28-2020, 12:16 PM
Last Post: nexuz89
  In need of web scraping code! kolbyng 1 2,439 Sep-21-2020, 06:02 AM
Last Post: buran
  error zomato scraping data syxzetenz 3 4,449 Jun-23-2020, 08:53 PM
Last Post: Gribouillis
  scraping from a website that hides source code PIWI_Protein 1 2,777 Mar-27-2020, 05:08 PM
Last Post: Larz60+
  Web scraping error jithin123 0 3,340 Mar-22-2020, 08:13 PM
Last Post: jithin123
  Web Scraping Error : Not getting expected result adminravi 4 3,424 Oct-08-2019, 09:53 AM
Last Post: snippsat
  Scraping data saving to DB error with Cursor cubangt 3 3,896 May-20-2019, 08:30 PM
Last Post: Yoriz

Forum Jump:

User Panel Messages

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