Guest User

Untitled

a guest
Jul 18th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. all_stories = []
  2. florida_collection_id = 38379430
  3. stories_per_page = 100
  4. last_id = 0
  5. more_stories = True
  6. while more_stories:
  7. story_page = mc.storyList('(puppy OR puppies) AND tags_id_media:{}'.format(florida_collection_id),
  8. 'publish_date:[NOW-30DAY TO NOW]', last_processed_stories_id=last_id,
  9. rows=stories_per_page)
  10. last_id = story_page[-1]['processed_stories_id']
  11. more_stories = len(story_page ) == stories_per_page
  12. all_stories += story_page
  13. print(len(all_stories))
Add Comment
Please, Sign In to add comment