Python Forum
Code scrape more than one time information
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Code scrape more than one time information
#2
Your loop runs 30 times, once for each number between 10 and 40.

Every number 10-19 gets redirected to 10, 20-29 get redirected to 20, and 30-39 get redirected to 30.
This means you scrape each of those pages 10 times, geting 10 duplicates for each review.

Maybe you meant for your loop to be for offset in range(10, 40, 10): instead?
Reply


Messages In This Thread
RE: Code scrape more than one time information - by stranac - Aug-26-2019, 05:49 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  How do I scrape profile information from Twitter People search results? asdad 0 739 Nov-29-2022, 10:25 AM
Last Post: asdad
  Assistance with running a few lines of code at an EXACT time nethatar 5 3,275 Feb-24-2021, 10:43 PM
Last Post: nilamo
  Stumped by my own code (ratio & epoch-time calculation). MvGulik 2 2,149 Dec-30-2020, 12:04 AM
Last Post: MvGulik
  Code taking too much time to process ErPipex 11 4,969 Nov-16-2020, 09:42 AM
Last Post: DeaD_EyE
  What is the run time complexity of this code and please explain? samlee916 2 2,308 Nov-06-2020, 02:37 PM
Last Post: deanhystad
  The count variable is giving me a hard time in this code D4isyy 2 1,983 Aug-09-2020, 10:32 PM
Last Post: bowlofred
  Having a hard time combining two parts of code. Coozeki 6 3,103 May-10-2020, 06:50 AM
Last Post: Coozeki
  Parsing Date/Time from Metar Reports with 6 hourly weather information Lawrence 0 2,359 May-03-2020, 08:15 PM
Last Post: Lawrence
  How to avoid open and save a url every time I run code davidm 4 2,662 Mar-03-2020, 10:37 PM
Last Post: snippsat
  Help to reduce time to execute the code prakash52kar 1 2,241 Oct-14-2019, 10:56 AM
Last Post: scidam

Forum Jump:

User Panel Messages

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