2022-09-10 00:47:47 -05:00
|
|
|
## The bot's catch-up mode
|
|
|
|
|
# Scan all accounts for cross-company interactions.
|
2022-09-20 15:34:38 -07:00
|
|
|
# Terminates when finished scanning and posting.
|
2022-09-10 00:47:47 -05:00
|
|
|
|
2022-09-12 01:31:09 -07:00
|
|
|
import os
|
|
|
|
|
import TwitterAPI as api
|
|
|
|
|
|
|
|
|
|
from util import *
|
|
|
|
|
|
|
|
|
|
## Returns list of tweets present in queue.txt
|
|
|
|
|
def get_local_queue():
|
|
|
|
|
f = open(os.path.join(get_project_dir(), 'queue.txt'))
|
|
|
|
|
pass
|
|
|
|
|
|
2022-09-10 00:47:47 -05:00
|
|
|
def run():
|
2022-09-12 01:31:09 -07:00
|
|
|
queue = get_local_queue()
|
2022-09-10 00:47:47 -05:00
|
|
|
pass
|