Answers for "AttributeError: 'NoneType' object has no attribute 'find_all', while importing twitterscraper module."

0

AttributeError: 'NoneType' object has no attribute 'find_all', while importing twitterscraper module.

In query.py you need to change 
table = soup.find('table',id='proxylisttable') 
to 
table = soup.find('table', {"class": 'table'}) 
because they change proxy site
Posted by: Guest on September-06-2021

Code answers related to "AttributeError: 'NoneType' object has no attribute 'find_all', while importing twitterscraper module."

Browse Popular Code Answers by Language