2021-08-03 14:17:00 +02:00
|
|
|
from dotenv import load_dotenv
|
|
|
|
from os import environ
|
|
|
|
from tweepy import OAuthHandler, API, StreamListener, Stream
|
|
|
|
from re import sub
|
2021-08-03 19:19:30 +02:00
|
|
|
from random import choice
|
2021-08-03 14:17:00 +02:00
|
|
|
|
|
|
|
quoi = ["quoi", "koi"]
|
2021-08-03 19:19:30 +02:00
|
|
|
feur = ["feur", "(feur)", "FEUR", "feur lol"]
|
|
|
|
friends = []
|
2021-08-03 14:17:00 +02:00
|
|
|
|
|
|
|
def load(variables):
|
|
|
|
"""Load env variables."""
|
|
|
|
keys = {}
|
|
|
|
load_dotenv() # load .env file
|
|
|
|
for var in variables:
|
|
|
|
try:
|
|
|
|
keys[var] = environ[var]
|
|
|
|
except KeyError:
|
|
|
|
print(f"Please set the environment variable {var} (.env file supported)")
|
|
|
|
exit(1)
|
|
|
|
return keys
|
|
|
|
|
|
|
|
class Listener(StreamListener):
|
|
|
|
def __init__(self, api = None):
|
|
|
|
super(Listener, self).__init__()
|
|
|
|
self.num_tweets = 0
|
|
|
|
self.api = api
|
|
|
|
|
|
|
|
def on_status(self, status):
|
|
|
|
"""Réponse au tweet"""
|
|
|
|
tweetText = sub(r' ?\?| ?\!', '', status._json["text"])
|
|
|
|
if tweetText.endswith(tuple(quoi)):
|
|
|
|
try:
|
2021-08-03 19:19:30 +02:00
|
|
|
if status._json["user"]["screen_name"] in friends:
|
|
|
|
self.api.update_status(status = choice(feur), in_reply_to_status_id = status._json["id"], auto_populate_reply_metadata = True)
|
|
|
|
print(f"{status._json['user']['screen_name']} est passé au coiffeur !")
|
|
|
|
except Exception as error:
|
|
|
|
print(error)
|
2021-08-03 14:17:00 +02:00
|
|
|
pass
|
|
|
|
|
2021-08-03 19:19:30 +02:00
|
|
|
def main(accessToken, accessTokenSecret, consumerKey, consumerSecret, user):
|
2021-08-03 14:17:00 +02:00
|
|
|
"""Main method."""
|
|
|
|
auth = OAuthHandler(consumerKey, consumerSecret)
|
|
|
|
auth.set_access_token(accessToken, accessTokenSecret)
|
|
|
|
|
|
|
|
api = API(auth)
|
|
|
|
|
|
|
|
listener = Listener(api)
|
2021-08-03 19:19:30 +02:00
|
|
|
stream = Stream(auth = api.auth, listener = listener)
|
|
|
|
|
|
|
|
for friend in api.friends(user, skip_status = True):
|
|
|
|
friends.append(friend._json["screen_name"])
|
|
|
|
|
|
|
|
print(f"Scroll sur Twitter avec les abonnés de @{user}...")
|
|
|
|
stream.filter(track = quoi, languages=["fr"], is_async = True)
|
2021-08-03 14:17:00 +02:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
"""
|
2021-08-03 19:19:30 +02:00
|
|
|
TOKEN is the Access Token available in the Authentication Tokens section under Access Token and Secret sub-heading.
|
|
|
|
TOKEN_SECRET is the Access Token Secret available in the Authentication Tokens section under Access Token and Secret sub-heading.
|
|
|
|
CONSUMER_KEY is the API Key available in the Consumer Keys section.
|
|
|
|
CONSUMER_SECRET is the API Secret Key available in the Consumer Keys section.
|
2021-08-03 14:17:00 +02:00
|
|
|
--
|
2021-08-03 19:19:30 +02:00
|
|
|
PSEUDO is the PSEUDO of the account you want to listen to snipe. A proportion of who s.he follow will be targeted.
|
2021-08-03 14:17:00 +02:00
|
|
|
"""
|
2021-08-03 19:19:30 +02:00
|
|
|
keys = load(["TOKEN", "TOKEN_SECRET", "CONSUMER_KEY", "CONSUMER_SECRET", "PSEUDO"])
|
|
|
|
main(keys["TOKEN"], keys["TOKEN_SECRET"], keys["CONSUMER_KEY"], keys["CONSUMER_SECRET"], keys["PSEUDO"])
|