diff --git a/README.md b/README.md index b3c1ebb..fdac885 100644 --- a/README.md +++ b/README.md @@ -14,12 +14,12 @@ The bot will be runnable in three modes: ## Roadmap * ~~Read past tweets of members from both companies~~ * ~~Create screenshot of tweet~~ -* Track tweets in queue files -* Post tweets along with screenshot of tweet +* ~~Track tweets in queue files~~ +* ~~Post tweets along with screenshot of tweet~~ * Include screenshot of tweet being replied to? +* ~~Combine image with quote tweet~~ +* ~~Don't tweet already-existing tweets (check our past quote tweets; might be saved in a file for quicker access)~~ * Track posted tweets in a history file -* Combine image with quote tweet -* Don't tweet already-existing tweets (check our past quote tweets; might be saved in a file for quicker access) ## Notes * Tweets should only occur if involved parties are cross-company diff --git a/src/catchup.py b/src/catchup.py index 0d3f917..7bbdabb 100644 --- a/src/catchup.py +++ b/src/catchup.py @@ -111,9 +111,7 @@ async def get_cross_talent_tweets(queue_path): with open(queue_path, 'w') as f: print('Pulling tweets from online!') try: - print('TODO: using test_talents') - for talent_id in talent_lists.test_talents: - # for talent_id in talent_lists.talents: + for talent_id in talent_lists.talents: if talent_id not in finished_user_timestamps or \ finished_user_timestamps[talent_id] < datetime.datetime.now().timestamp(): try: @@ -188,5 +186,4 @@ async def run(program_args): print(f'found {len(ttweets_dict)} cross-company tweets') if await process_queue(ttweets_dict) == 0: print('Posted no new tweets; we\'re caught up!') - break - # TODO: go to listen mode \ No newline at end of file + break \ No newline at end of file diff --git a/src/main.py b/src/main.py index 7fea52a..3c91c05 100644 --- a/src/main.py +++ b/src/main.py @@ -29,7 +29,7 @@ def init_argparse(): return p def command_line(): - # TODO: implement command line mode for manually controlling the bot + # TODO (extra): implement command line mode for manually controlling the bot print('Shell coming soon. For now, here\'s a Python interpretor.') code.interact(local=globals()) pass