when i scrap tables using tables=android_soup.findAll(‘tables’,{‘class’:‘wikitable’}
output of len(tables) is always 0,even i tried it for other web pages ,every time output is zero . what is problem
Https://online.codingblocks.com/app/player/91586/content/73532/6005/lecture
1 Like
Hello @Jituk48216,
Happy to have you in our community.
Can you try with tables = android_soup.findAll("table", {'class':'wikitable'}
, here, assuming that there exists a table tag that has class=“wikitable”.
Let me know if this works.
Thanks
it is working , Thanks