-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathHeavyMind_Bot.py
82 lines (62 loc) · 2.08 KB
/
HeavyMind_Bot.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
import tweepy
import configparser
import os
import threading
import time
import sys
from tweepy.error import TweepError
WAIT_TIME = 20
done = False
def get_tokens():
config = configparser.ConfigParser()
config.read('config.ini')
api_key = config['TWITTER']['API_KEY']
api_secret_key = config['TWITTER']['API_SECRET_KEY']
access_token_key = config['TWITTER']['ACCESS_TOKEN']
access_token_secret = config['TWITTER']['ACCESS_TOKEN_SECRET']
return api_key, api_secret_key, access_token_key, access_token_secret
def animate():
for c in range(WAIT_TIME, -1, -1):
if done:
break
sys.stdout.write('\rWaiting for ' + str(c) + ' secs.... ')
sys.stdout.flush()
time.sleep(1)
sys.stdout.write('\rTweeting\n')
def write_tweeted_img(file_name):
file = open('tweeted_imgs.txt', 'a')
file.write('{}\n'.format(file_name))
file.close()
def check_img_tweeted(file_name):
with open('tweeted_imgs.txt') as f:
if file_name in f.read():
return True
return False
if __name__ == '__main__':
consumer_key, consumer_secret, access_token, access_secret = get_tokens()
count = 0
print('Connecting to Twitter...')
auth = tweepy.OAuthHandler(consumer_key, consumer_secret)
auth.set_access_token(access_token, access_secret)
api = tweepy.API(auth)
print('Connected!\n')
os.chdir('images')
for image in os.listdir('.'):
if check_img_tweeted(image):
print('Already Tweeted {} before'.format(image))
os.remove(image)
continue
try:
api.update_with_media(image)
print('Tweeted {}'.format(image))
write_tweeted_img(image)
count += 1
os.remove(image)
done = False
except TweepError:
continue
t = threading.Thread(target=animate)
t.start()
time.sleep(WAIT_TIME)
done = True
print('\nSuccessfully Tweeted {} Images'.format(count))