Welcome to MyCafeTalk Community

Join our members and make your free account today, giving you the ability to chat with members

Reddit Bots

RE: Reddit Bots

I would like to make one.
idk if possible but I want a bot to start a thread on reddit when a person I follow adds an image to Instagram.
 
RE: Reddit Bots

This is what I have so far.

Code:
import praw
import tweepy

reddit = praw.Reddit(client_id="*",
                   client_secret="*",
                   user_agent="*",
                   username="*",
                   password="*")

consumer_key = '*'
consumer_secret = '*'
access_token = '*'
access_token_secret = '*'

auth = tweepy.OAuthHandler(consumer_key, consumer_secret)
auth.set_access_token(access_token, access_token_secret)

api = tweepy.API(auth)

base_url = 'https://twitter.com/'
mobole_prefix = 'mobile.'
Code:
{
"Meta": {
  "version": "",
  "name": "",
  "author": "",
  "source": "",
  "message": ""
},
"Reddit": {
  "client_id": "",
  "client_secret": "",
  "user_agent": "",
  "username": "",
  "password": "",
  "Subreddits": [
    "", ""
  ]
},
"Twitter": {
  "consumer_key": "",
  "consumer_secret": "",
  "access_token": "",
  "access_token_secret": "",
   "base_url": "https://twitter.com/",
    "mobile_url": "https://mobile.twitter.com/"
  },
  "Monitor": [
    "", ""
  ]
},
"Google": {
  "": "",
  "YouTube": {
    "channel_id": [
      "", "", ""
    ]
  }
},
"Instagram": {
  "": "",
  "Profiles": {
    "profile_id": [
      "zuck", "jack"
    ]
  }
}
}
 
RE: Reddit Bots

I've never had a use to be on Reddit, but I have previously thought of attempting to create a bot for myself, to automate some things. Probably would take more time than it is worth it, for those things I want to automate. For now, atleast for one item, I have a software that could potentially work with scheduling threads and replies on forums, if I know what I want to put up, and where it will go.
 
I have recently started using Reddit a lot more over the last month or so but I can't say I have used any bots on Reddit or considered making my own bot.
 
I have recently started using Reddit a lot more over the last month or so but I can't say I have used any bots on Reddit or considered making my own bot.
Same here. I like to create my own posts on reddit and interact with their user base, so I can network & meet new people on there.
 
Back
Top