-
-
Notifications
You must be signed in to change notification settings - Fork 314
/
Copy pathtwitter_bot_class.py
172 lines (133 loc) · 5.43 KB
/
twitter_bot_class.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
from selenium import webdriver
from selenium import common
from selenium.webdriver.common import keys
from webdriver_manager.firefox import GeckoDriverManager
import time
driver = webdriver.Firefox(executable_path=GeckoDriverManager().install())
class TwitterBot:
"""
A Bot class that provide features of:
- Logging into your Twitter account
- Liking tweets of your homepage
- Searching for some keyword or hashtag
- Liking tweets of the search results
- Posting tweets
- Logging out of your account
........
Attributes
----------
email : str
user email for Twitter account
password : str
user password for Twitter account
bot : WebDriver
webdriver that carry out the automation tasks
is_logged_in : bool
boolean to check if the user is logged in or not
Methods
-------
login()
logs user in based on email and password provided during initialisation
logout()
logs user out
search(query: str)
searches for the provided query string
like_tweets(cycles: int)
loops over number of cycles provided, scrolls the page down and likes the available tweets on the page in each loop pass
"""
def __init__(self, email, password):
self.email = email
self.password = password
self.bot = driver
self.is_logged_in = False
def login(self):
bot = self.bot
bot.get('https://twitter.com/')
time.sleep(4)
try:
email = bot.find_element_by_name('session[username_or_email]')
password = bot.find_element_by_name('session[password]')
except common.exceptions.NoSuchElementException:
time.sleep(3)
email = bot.find_element_by_name('session[username_or_email]')
password = bot.find_element_by_name('session[password]')
email.clear()
password.clear()
email.send_keys(self.email)
password.send_keys(self.password)
password.send_keys(keys.Keys.RETURN)
time.sleep(10)
self.is_logged_in = True
def logout(self):
if not self.is_logged_in:
return
bot = self.bot
bot.get('https://twitter.com/home')
time.sleep(4)
try:
bot.find_element_by_xpath("//div[@data-testid='SideNav_AccountSwitcher_Button']").click()
except common.exceptions.NoSuchElementException:
time.sleep(3)
bot.find_element_by_xpath("//div[@data-testid='SideNav_AccountSwitcher_Button']").click()
time.sleep(1)
try:
bot.find_element_by_xpath("//a[@data-testid='AccountSwitcher_Logout_Button']").click()
except common.exceptions.NoSuchElementException:
time.sleep(2)
bot.find_element_by_xpath("//a[@data-testid='AccountSwitcher_Logout_Button']").click()
time.sleep(3)
try:
bot.find_element_by_xpath("//div[@data-testid='confirmationSheetConfirm']").click()
except common.exceptions.NoSuchElementException:
time.sleep(3)
bot.find_element_by_xpath("//div[@data-testid='confirmationSheetConfirm']").click()
time.sleep(3)
self.is_logged_in = False
def search(self, query=''):
if not self.is_logged_in:
raise Exception("You must log in first!")
bot = self.bot
try:
searchbox = bot.find_element_by_xpath("//input[@data-testid='SearchBox_Search_Input']")
except common.exceptions.NoSuchElementException:
time.sleep(2)
searchbox = bot.find_element_by_xpath("//input[@data-testid='SearchBox_Search_Input']")
searchbox.clear()
searchbox.send_keys(query)
searchbox.send_keys(keys.Keys.RETURN)
time.sleep(10)
def like_tweets(self, cycles=10):
if not self.is_logged_in:
raise Exception("You must log in first!")
bot = self.bot
for i in range(cycles):
try:
bot.find_element_by_xpath("//div[@data-testid='like']").click()
except common.exceptions.NoSuchElementException:
time.sleep(3)
bot.execute_script('window.scrollTo(0,document.body.scrollHeight/1.5)')
time.sleep(3)
bot.find_element_by_xpath("//div[@data-testid='like']").click()
time.sleep(1)
bot.execute_script('window.scrollTo(0,document.body.scrollHeight/1.5)')
time.sleep(5)
def post_tweets(self,tweetBody):
if not self.is_logged_in:
raise Exception("You must log in first!")
bot = self.bot
try:
bot.find_element_by_xpath("//a[@data-testid='SideNav_NewTweet_Button']").click()
except common.exceptions.NoSuchElementException:
time.sleep(3)
bot.find_element_by_xpath("//a[@data-testid='SideNav_NewTweet_Button']").click()
time.sleep(4)
body = tweetBody
try:
bot.find_element_by_xpath("//div[@role='textbox']").send_keys(body)
except common.exceptions.NoSuchElementException:
time.sleep(3)
bot.find_element_by_xpath("//div[@role='textbox']").send_keys(body)
time.sleep(4)
bot.find_element_by_class_name("notranslate").send_keys(keys.Keys.ENTER)
bot.find_element_by_xpath("//div[@data-testid='tweetButton']").click()
time.sleep(4)