skip to Main Content

Twitter-api – 403 Forbidden 453 – You currently have access to a subset of Twitter API v2 endpoints and limited v1.1 endpoints only

I had registered for Free level Twitter API recently and I would like to use Tweepy to help me in extracting tweets from user. api_key = config['twitter']['api_key'] api_secret = config['twitter']['api_key_secret'] access_token = config['twitter']['access_token'] access_token_secret = config['twitter']['access_token_secret'] auth = tweepy.OAuthHandler(api_key, api_secret)…

VIEW QUESTION

MongoDB 10m search documents

How can I optimize mongoDB search if I have 10+ million documents in one collection? If anything, please, don't advise me to switch to mysql. I need mongodb specifically For example one of the logs { "_id": { "$oid": "Some…

VIEW QUESTION

JSONDecodeError: Extra data

I'm trying to convert a payload into json but I get the a JSONDecodeError: Extra data error. I need them to be 3 separate payloads to be posted to an API. "data": { "CustomerID": "15263", "Timestamp": "2023-07-28T17:08:23Z", "Status": "networkOk" }…

VIEW QUESTION
Back To Top
Search