switch to tweepy

This commit is contained in:
msk
2022-09-12 01:31:09 -07:00
parent 2d7e6324cb
commit 2ab28ec5c8
8 changed files with 93 additions and 16 deletions
+11
View File
@@ -2,5 +2,16 @@
# Scan all accounts for cross-company interactions.
# Terminates when finished scanning.
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
def run():
queue = get_local_queue()
pass