Dragneel commited on
Commit
776f57c
·
1 Parent(s): ce31562

Update sentiment.py

Browse files
Files changed (1) hide show
  1. sentiment.py +3 -3
sentiment.py CHANGED
@@ -26,9 +26,9 @@ def load_data(filename):
26
 
27
 
28
  # PRAW configs
29
- REDDIT_CLIENT_ID = "lI0C_W9_eESoiS2mtUMNDg"
30
- REDDIT_CLIENT_SECRET = "IK1Vn7s0EZGiNt6vMZ54sfT6pYvbHA"
31
- REDDIT_USERNAME = "Tiger_in_the_Snow"
32
 
33
  reddit = praw.Reddit(
34
  client_id=REDDIT_CLIENT_ID,
 
26
 
27
 
28
  # PRAW configs
29
+ REDDIT_CLIENT_ID = os.environ['client_id']
30
+ REDDIT_CLIENT_SECRET = os.environ['secret_key']
31
+ REDDIT_USERNAME = os.environ['username']
32
 
33
  reddit = praw.Reddit(
34
  client_id=REDDIT_CLIENT_ID,