Reactor count = none
ducle063 opened this issue · 0 comments
ducle063 commented
here my code
from facebook_scraper import get_posts
import pandas as pd
import numpy as np
FANPAGE_LINK ="EatingSleepingWithOP"
FOLDER_PATH = "Data"
COOKIE_PATH = "www.facebook.com_cookies.txt"
PAGES_NUMBER = 10 # Number of pages to crawl
post_list = []
count = 0
for post in get_posts(FANPAGE_LINK,
options={"comments": True, "reactions": True, "allow_extra_requests": True},
extra_info= True, page = PAGES_NUMBER , cookies=COOKIE_PATH):
print(post)
post_list.append(post)
count += 1
if count == 10:
break
i got the count for reactor in the first time i scawl but the output for reactor is all none in next time. how can i fix this