11 lines
218 B
Python
11 lines
218 B
Python
from collect.twitter import tweepy_login, download_user_tweets
|
|
from collect.utils import *
|
|
|
|
|
|
if __name__ == '__main__':
|
|
conf = load_config()
|
|
api = tweepy_login(conf)
|
|
|
|
download_user_tweets(api, 'sauricat')
|
|
|