-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgetfollowers.py
53 lines (41 loc) · 1.63 KB
/
getfollowers.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
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
import time
class TwitterBot:
def __init__(self, username, password):
self.username = 'youremailhere'
self.password = 'yourpasswordhere'
self.bot = webdriver.Firefox()
def login(self):
bot = self.bot
bot.get('https://twitter.com/login')
time.sleep(5)
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.username)
password.send_keys(self.password)
password.send_keys(Keys.RETURN)
time.sleep(3)
def like_tweet(self, hashtag):
bot = self.bot
bot.get('https://twitter.com/search?q='+hashtag+'&src=typd')
time.sleep(5)
for i in range(1, 3):
bot.execute_script('window.scrollTo(0, document.body.scrollHeight)')
time.sleep(5)
tweets = bot.find_element_by_xpath('//article[@data-testid="tweet"]')
# the following line is currently broken.
links = [elem.get_attribute('data-permalink-path') for elem in tweets]
for link in links:
bot.get('https://twitter.com' + link)
try:
bot.find_element_by_class_name('HeartAnimation').click()
time.sleep(5)
except Exception as ex:
time.sleep(60)
ed = TwitterBot('your email here','your password here')
ed.login()
# the hashtag you want to get followers from
ed.like_tweet('webdevlopment')