-
Notifications
You must be signed in to change notification settings - Fork 577
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Getting error with main code inside beatifulSoup #372
Comments
Has anyone found a solve for this? |
hey I know how to solve this issue I would Like to work on this |
D:\twitterscraper\twitterscraper>python main.py D:\twitterscraper\twitterscraper> I am getting this output is this right or wrong |
yes just put soup.find('table') as the table id has been dropped from the page |
got hte same issue. |
/usr/local/lib/python3.7/dist-packages/twitterscraper/query.py in get_proxies()
47 soup = BeautifulSoup(response.text, 'lxml')
48 table = soup.find('table',id='proxylisttable')
---> 49 list_tr = table.find_all('tr')
50 list_td = [elem.find_all('td') for elem in list_tr]
51 list_td = list(filter(None, list_td))
AttributeError: 'NoneType' object has no attribute 'find_all'
When I run CLI or in python It get error from BeautifulSoup lib, please help
The text was updated successfully, but these errors were encountered: