Changes between Version 44 and Version 45 of en/ProgrammingRobotsCourse/GettingWwwInfo


Ignore:
Timestamp:
Nov 9, 2022, 12:48:52 PM (17 months ago)
Author:
Ales Horak
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • en/ProgrammingRobotsCourse/GettingWwwInfo

    v44 v45  
    4141page = requests.get(url).text
    4242soup = BeautifulSoup(page, features="lxml")
    43 results = soup.findAll('h2', attrs={'class':'article-title'})
     43results = soup.findAll('h3', attrs={'class':'article-title'})
    4444}}}
    4545