Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
pull data from python web
#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


Messages In This Thread
pull data from python web - by yunussyes - Mar-21-2020, 05:34 PM
RE: pull data from python web - by Larz60+ - Mar-21-2020, 05:55 PM
RE: pull data from python web - by yunussyes - Mar-22-2020, 06:35 AM

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,230 Sep-30-2022, 02:36 PM
Last Post: DeaD_EyE
  pull streams from Twitch with a keyword in title maddensplayers 1 2,181 Feb-18-2019, 03:19 AM
Last Post: SheeppOSU
  Pull Down Menu Problem using Selenium ber 1 2,493 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