Python Forum
pagination for non standarded pages
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
pagination for non standarded pages
#4
soup.find('ul', {'class': 'pagination'}) will return single element and you cannot iterate over it
no tested, but something like
pagination = soup.find('ul', {'class': 'pagination'})
pages = pagination.find_all('li')
num_pages = int(pages[-2].text)
print(num_pages)
if you inspect the ul element you will notice there are 4 types of li items (without class attribute, class=empty, class=next, class=is-active). you can play with custom function that will return just li items without class.
If you can't explain it to a six year old, you don't understand it yourself, Albert Einstein
How to Ask Questions The Smart Way: link and another link
Create MCV example
Debug small programs

Reply


Messages In This Thread
pagination for non standarded pages - by zarize - Aug-30-2019, 12:53 PM
RE: pagination for non standarded pages - by buran - Aug-30-2019, 01:10 PM
RE: pagination for non standarded pages - by zarize - Aug-30-2019, 01:55 PM
RE: pagination for non standarded pages - by buran - Aug-30-2019, 02:23 PM
RE: pagination for non standarded pages - by zarize - Aug-30-2019, 04:04 PM
RE: pagination for non standarded pages - by buran - Aug-30-2019, 04:40 PM
RE: pagination for non standarded pages - by zarize - Sep-02-2019, 10:46 AM
RE: pagination for non standarded pages - by buran - Sep-02-2019, 10:52 AM
RE: pagination for non standarded pages - by zarize - Sep-02-2019, 12:15 PM
RE: pagination for non standarded pages - by buran - Sep-02-2019, 12:18 PM
RE: pagination for non standarded pages - by zarize - Sep-02-2019, 12:23 PM
RE: pagination for non standarded pages - by buran - Sep-02-2019, 12:24 PM
RE: pagination for non standarded pages - by zarize - Sep-02-2019, 12:35 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  BeautifulSoup pagination using href rhat398 1 2,472 Jun-30-2021, 10:55 AM
Last Post: snippsat
  Python beautifulsoup pagination error The61 5 3,571 Apr-09-2020, 09:17 PM
Last Post: Larz60+
  Pagination prejni 2 2,483 Nov-18-2019, 10:45 AM
Last Post: alekson
  Scrapy Javascript Pagination (next_page) nazmulfinance 2 3,145 Nov-18-2019, 01:01 AM
Last Post: nazmulfinance
  Python - Scrapy Javascript Pagination (next_page) Baggelhsk95 3 10,137 Oct-08-2018, 01:20 PM
Last Post: stranac
  Filtering and pagination garynobles 0 40,800 Jun-14-2018, 08:11 PM
Last Post: garynobles
  BeautifulSoup and pagination. Mike Ru 1 7,966 Sep-22-2017, 10:15 AM
Last Post: snippsat

Forum Jump:

User Panel Messages

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