update README, remove debug-related line

This commit is contained in:
msk
2022-09-27 22:12:36 -07:00
parent 978ba92901
commit 357e334308
3 changed files with 7 additions and 10 deletions
+4 -4
View File
@@ -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
+1 -4
View File
@@ -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:
@@ -189,4 +187,3 @@ async def run(program_args):
if await process_queue(ttweets_dict) == 0:
print('Posted no new tweets; we\'re caught up!')
break
# TODO: go to listen mode
+1 -1
View File
@@ -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