rhiever / reddit-twitter-bot

Looks up posts from reddit and automatically posts them on Twitter.
GNU General Public License v3.0
137 stars 38 forks source link

Getting user's subreddits #4

Closed simonuvarov closed 8 years ago

simonuvarov commented 8 years ago

Add one function to get user's subreddits. I use the same function name because it does almost the same as yours. You can go through the subreddits like in the following:

subreddits = setup_connection_reddit(LOGIN, PASSWORD)
for subreddit in subreddits:
    do_something()
rhiever commented 8 years ago

Can you please clarify: What would be a use case for this function?

simonuvarov commented 8 years ago

I'm planning to use the bot to check subreddits I follow. To retrieve list of them it must be logged in. That's it.