Python Forum
pull data from python web - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: Web Scraping & Web Development (https://python-forum.io/forum-13.html)
+--- Thread: pull data from python web (/thread-25149.html)



pull data from python web - yunussyes - Mar-21-2020

How can I pull data from all the pages on
https://www.resignation.info/list&p
site


RE: pull data from python web - Larz60+ - Mar-21-2020

see web scraping tutorials under tutorials (this site) specifically the part on selenium
part 1
part 2


RE: pull data from python web - yunussyes - Mar-22-2020

import urllib.request
from bs4 import BeautifulSoup
url="https://www.resignation.info/list"
url_oku=urllib.request.urlopen(url)
soup=BeautifulSoup(url_oku,'html.parser')
ana= soup.find('figcaption')
alt=ana.find_all('thead',attrs={'class':'standard-table'})
print(alt)