huanggab's picture
add processing code
b01d6d3
raw
history blame contribute delete
No virus
315 Bytes
import praw
print('Go to https://praw.readthedocs.io/en/stable/getting_started/authentication.html for authentication instructions')
def get_agent():
reddit = praw.Reddit(
client_id="<fill this up>",
client_secret="<fill this up>",
user_agent="<fill this up>",
)
return reddit