I managed to setup a reddit client using PRAW in python, one thing that I can't seem to find a way is to get the current most popular subreddits, I've tried the following:
for item in reddit_client.subreddit("all").top():
#do_something...
But that only returns me an iterator with the top submissions, instead of a subreddit object. If possible I would like a list of those subreddits, containing things like the name and the subscribers number.