Skip to content

Instantly share code, notes, and snippets.

@dev4Fun
Created February 7, 2020 04:04
Show Gist options
  • Save dev4Fun/cd5bacb19ec292888eef5db190c638fd to your computer and use it in GitHub Desktop.
Save dev4Fun/cd5bacb19ec292888eef5db190c638fd to your computer and use it in GitHub Desktop.
# bot.py
import praw
class RedditBot:
def __init__(self, credentials: dict):
self.credentials = credentials
username = credentials['username']
self.credentials['user_agent'] = f"testscript by /u/{username}"
self.reddit_client = praw.Reddit(**self.credentials)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment