This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """ | |
| Reddit Read-Only Sentiment Analysis Script (Redacted for API Review) | |
| Purpose: Academic/Personal Research for Financial Markets | |
| """ | |
| import requests | |
| import time | |
| # --- Credentials (redacted for security) --- | |
| CLIENT_ID = 'YOUR_CLIENT_ID_HERE' | |
| CLIENT_SECRET = 'YOUR_CLIENT_SECRET_HERE' |