Need to add a class that pulls the comments from all the top posts on a selected subreddit. So the method would first grab the top 'n' posts in one request. Then it should formulate the url's of those threads and send one request per url.
Example: if the program grabs the top 15 posts, there should be a total of 16 requests. Also, to prevent too many requests at once, the program should only get one request at a time, read the comments, then proceed to the next.
Need to add a class that pulls the comments from all the top posts on a selected subreddit. So the method would first grab the top 'n' posts in one request. Then it should formulate the url's of those threads and send one request per url.
Example: if the program grabs the top 15 posts, there should be a total of 16 requests. Also, to prevent too many requests at once, the program should only get one request at a time, read the comments, then proceed to the next.