This repository was archived by the owner on Dec 16, 2017. It is now read-only.
forked from juancri/retweetbot
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmy_bot.py
72 lines (63 loc) · 2.31 KB
/
my_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
#!/usr/bin/env python2
# -*- coding: utf-8 -*-
#
# Copyright (c) 2013 Malte Bublitz, https://malte-bublitz.de
# Copyright (c) 2013 Benjamin Leuckefeld, https://atroxlp.de
#
import bot
import os
config = {
"me": "myownscreenname", # Your own screen name
"hashtag": '#myhashtag1', # Any hashtag or magic word that triggers the retweet
"additionalHashtags": ["tag1", "#tag2"], # At least one of the most be contained in the tweet. write "[]" for no additionalHashtags
"blacklist": ["nsfw", "#porn"], # If one the these words is contained in the tweet, it won't retweet. write "[]" for no blacklist
"blacklistusers": ["example"], # The bot ignores tweets by these users. USERNAMES WITHOUT @! write "[]" for no blacklistuser
"sleep": 5, # Time betweet queries to Twitter
"count": 100, # Amount of tweets per request (max 100)
"nativeRetweet": True, # If true, retweets natively. If false, retweets using "RT @user:"
"General_Configs": ["blacklist", "blacklistusers", "additionalHashtags"], # Valid options: "blacklist", "blacklistusers", "additionalHashtags". write "[]" for no generalconfigs.
# Example: If General_Configs contains "blacklist" your bot will check the blacklist file (config/blacklist.bc).
# If a tweet contains one word of the blacklist file, it won't retweet.
# Twitter API Config
"Consumer_Key": "",
"Consumer_Secret": "",
"Acces_Token_Key": "",
"Acces_Token_Secret": ""
}
def get_conditions():
def check_conditions(tweet):
# is it a mention?
if tweet.text.lower().startswith("@"):
return False
# is it a RT?
if tweet.text.lower().startswith("rt"):
return False
# at least 3 words
if len(tweet.text.split(" ")) < 3:
return False
return True
return check_conditions
def main():
rtbot = bot.RetweetBot()
rtbot.run(
config["me"],
config["hashtag"],
config["additionalHashtags"],
config["blacklist"],
config["blacklistusers"],
config["sleep"],
config["count"],
config["nativeRetweet"],
config["Consumer_Key"],
config["Consumer_Secret"],
config["Acces_Token_Key"],
config["Acces_Token_Secret"],
config["General_Configs"],
get_conditions(),
os.path.join(os.path.dirname(__file__), ".".join(os.path.basename(__file__).split(".")[:-1])+".log")
)
if __name__=="__main__":
try:
main()
except KeyboardInterrupt:
pass