-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathextra_bot.py
More file actions
27 lines (19 loc) · 753 Bytes
/
extra_bot.py
File metadata and controls
27 lines (19 loc) · 753 Bytes
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
"""
tweetdeck_bot.py, a project by rhaeyx
Please consider giving this repo a star.
https://github.com/rhaeyx/Tweetdeck-Bot
Contents:
tweetdeck_bot.py - code for automating tweetdeck tweet.
extra.py - code for automating likes and follows.
bot.py - file to execute for automating tweetdeck tweets.
extra_bot.py(this) - file to execute for auto follow and like
tweets.txt - Example text file
"""
from bot_scripts.extra import extra
# Set username and password
bot = extra(username='rhaeyx', password='placeholder')
# Start bot. Default values are just placeholders, change as you want.
""" bot.start(to_like=100, to_follow=50) """
# EXAMPLE:
bot.start(to_like=100,
to_follow=50)