You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
import asyncio
from twscrape import API
async def main():
api = API()
async for doc in api.user_tweets(2244994945, limit=10):
print(doc.url, doc.id in doc.user.pinnedIds)
if __name__ == "__main__":
asyncio.run(main())
How would I check to see if a tweet is pinned?
The text was updated successfully, but these errors were encountered: