Last active
February 7, 2020 04:27
-
-
Save dev4Fun/52ccce3916a11a9fc71a7568ddb43f9b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| def work_on_subreddit(self, subreddit: str, **generator_kwargs): | |
| if 'limit' not in generator_kwargs: | |
| generator_kwargs['limit'] = 60 | |
| submissions = list(self.reddit_client.subreddit(subreddit).new(**generator_kwargs)) | |
| for submission in submissions: | |
| self._process_submission(submission) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment