Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
pull data from python web
#1
How can I pull data from all the pages on
https://www.resignation.info/list&p
site
Reply
#2
see web scraping tutorials under tutorials (this site) specifically the part on selenium
part 1
part 2
Reply
#3
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)
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  What is the error of not being able to pull data in this code? i didn't see an error? TestPerson 2 1,183 Sep-30-2022, 02:36 PM
Last Post: DeaD_EyE
  pull streams from Twitch with a keyword in title maddensplayers 1 2,132 Feb-18-2019, 03:19 AM
Last Post: SheeppOSU
  Pull Down Menu Problem using Selenium ber 1 2,437 Nov-15-2018, 01:22 AM
Last Post: Larz60+

Forum Jump:

User Panel Messages

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