dmarx / psaw

Python Pushshift.io API Wrapper (for comment/submission search)
BSD 2-Clause "Simplified" License
361 stars 53 forks source link

Not all PushShift shards are active. Query results may be incomplete. #110

Open bybilal opened 1 year ago

bybilal commented 1 year ago

Im running a basic script as a hello world to test connection and I get this error (after taking 1m 40sec to run the script)

from pmaw import PushshiftAPI

api = PushshiftAPI()

comments = api.search_comments(subreddit="science", limit=10)
comment_list = [comment for comment in comments]

print(comment_list)
Not all PushShift shards are active. Query results may be incomplete.
[]