We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi all I am facing the following issue:
I am executing the following code:
visited = set() tweets = app.search("mcdonalds", pages=30, wait_time=8) logging.info(f"Extracted {len(tweets)} tweets") for tweet in tweets: count += 1 # Duplicate check tweetID = tweet.id if tweetID in visited: logging.info(f"Duplicate tweet ID: {tweetID} found, removing...") duplicate_count += 1 continue visited.add(tweetID)
However for every iteration, I keep getting the same tweet id back
The text was updated successfully, but these errors were encountered:
I can't reproduce this , are you still facing this issue?
Sorry, something went wrong.
No branches or pull requests
Hi all I am facing the following issue:
I am executing the following code:
However for every iteration, I keep getting the same tweet id back
The text was updated successfully, but these errors were encountered: