Python Forum
pagination for non standarded pages
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
pagination for non standarded pages
#9
(Sep-02-2019, 10:52 AM)buran Wrote: you need to retrieve the num_pages before being able to use it.

Could i ask you for some additional help? I got stucked :( i would appreciate any help


How it come that i cant get num_pages from it?

#pagination- find max pages
page1 = soup.find('ul', {'class': 'pagination'})
pages = page1.find_all('li')
last_page = pages[-3]
num_pages = last_page.find('a').text
#print(num_pages)

for n in range(1, num_pages):
    page = 'https://www.pararius.com/apartments/amsterdam/page-1' + n
    print(num_pages)
it returns me: TypeError: 'str' object cannot be interpreted as an integer
so i tried to change it to int but didn't work.

I guess i have to make a function that returns me num_pages and then i could call it? It would be my first function :P can i get an assist?
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,505 Jun-30-2021, 10:55 AM
Last Post: snippsat
  Python beautifulsoup pagination error The61 5 3,593 Apr-09-2020, 09:17 PM
Last Post: Larz60+
  Pagination prejni 2 2,508 Nov-18-2019, 10:45 AM
Last Post: alekson
  Scrapy Javascript Pagination (next_page) nazmulfinance 2 3,183 Nov-18-2019, 01:01 AM
Last Post: nazmulfinance
  Python - Scrapy Javascript Pagination (next_page) Baggelhsk95 3 10,203 Oct-08-2018, 01:20 PM
Last Post: stranac
  Filtering and pagination garynobles 0 44,357 Jun-14-2018, 08:11 PM
Last Post: garynobles
  BeautifulSoup and pagination. Mike Ru 1 7,982 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