Files
NijiHolo_EN_ID_Bot/src/catchup.py
T

17 lines
361 B
Python
Raw Normal View History

2022-09-10 00:47:47 -05:00
## The bot's catch-up mode
# Scan all accounts for cross-company interactions.
# Terminates when finished scanning.
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