Différences entre les versions de « Utilisateur:Violette »
Ligne 96 : | Ligne 96 : | ||
Maintenant il faut trouver le moyen pour que le bot, à chaque fois qu'il soit lancé, passe en revue tout les tweets concernés, classe ceux qu'il a déjà traité et éxécute le programme pour les autres, de manière à ce qu'il soit autonome. | Maintenant il faut trouver le moyen pour que le bot, à chaque fois qu'il soit lancé, passe en revue tout les tweets concernés, classe ceux qu'il a déjà traité et éxécute le programme pour les autres, de manière à ce qu'il soit autonome. | ||
+ | |||
+ | ==05.03, == | ||
+ | <syntaxhighlight lang="python"> | ||
+ | from acces import * | ||
+ | import tweepy | ||
+ | import time | ||
+ | import json | ||
+ | |||
+ | |||
+ | def simflouzTree(tweeet): | ||
+ | |||
+ | |||
+ | |||
+ | if hasattr(tweeet, 'retweeted_status'): | ||
+ | tweetText = tweeet.retweeted_status.full_text | ||
+ | else: | ||
+ | tweetText = tweeet.full_text | ||
+ | |||
+ | |||
+ | |||
+ | username = tweeet.user.screen_name | ||
+ | |||
+ | tweetText = tweetText.replace("sous l’arbre", "under the simflouz tree") | ||
+ | tweetText = tweetText.replace("sous l'arbre", "under the simflouz tree") | ||
+ | tweetText = tweetText.replace("sous un arbre", "under the simflouz tree") | ||
+ | tweetText = tweetText.replace("Sous l'arbre", "Under the simflouz tree") | ||
+ | |||
+ | print (tweetText) | ||
+ | #api.update_status(status='@' + username + ' ' + tweetText) | ||
+ | #api.update_status(status=tweetText + ' ' + '@' + username) | ||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | auth = tweepy.OAuthHandler(consumer_key, consumer_secret) | ||
+ | auth.set_access_token(access_token, access_token_secret) | ||
+ | |||
+ | api = tweepy.API(auth) | ||
+ | |||
+ | file = open("dejatraite.json", "r") | ||
+ | txt = file.read() | ||
+ | |||
+ | ids = json.loads(txt) | ||
+ | |||
+ | |||
+ | tweets = tweepy.Cursor(api.search, q='"sous l\'arbre" OR "sous un arbre"', tweet_mode='extended').items(1) | ||
+ | tweeet = '' | ||
+ | |||
+ | for tweet in tweets: | ||
+ | tweeet = tweet | ||
+ | |||
+ | |||
+ | |||
+ | |||
+ | tweetID = tweeet.id | ||
+ | |||
+ | |||
+ | if tweetID in ids: | ||
+ | print (tweetID) | ||
+ | |||
+ | if tweetID not in ids: | ||
+ | print('pas là') | ||
+ | simflouzTree(tweeet) | ||
+ | file = open ("dejatraite.json", "w") | ||
+ | ids.append(tweetID) | ||
+ | |||
+ | txt = json.dumps(ids) | ||
+ | |||
+ | file.write(txt) | ||
+ | file.close() | ||
+ | </syntaxhighlight> | ||
+ | |||
+ | Maintenant il faut le faire tourner tout seul régulièrement sans que je sois là |
Version du 5 mars 2020 à 10:53
programme de poète loup garou
Un programme qui
- demande le nom de l'utilisateur qui sera enregistré comme nom de poète
- rajoute aouuuu quand il y a a lettre a
- rajoute grrrrrrrrrr quand il y a la lettre g
résolution de l'énoncé de Gesine
with open('poetry','r') as lecture:
poyeme = lecture.read()
poyeme = poyeme.replace("o", "0")
poyeme = poyeme.replace ("i", "1")
print(poyeme)
#!/usr/bin/env python
#coding: utf-8
'''Un programme qui
- demande le nom de l'utilisateur qui sera enregistré comme nom de poète
- rajoute aouuuu quand il y a a lettre a
- rajoute grrrrrrrrrr quand il y a la lettre g '''
print("Quel est ton nom, poète.esse ?")
nom = raw_input()
import re
f= open("poeme.txt", "r+")
poeme = f.read()
#poeme = re.sub('a', "aouuuu", poeme)
poeme = re.sub('([aA])', r"\1ouuuu", poeme)
poeme = re.sub('([gG])', r"\1rrrrrrrrrr", poeme)
nom = re.sub('([aA])', r"\1ouuuu", nom)
nom = re.sub('([gG])', r"\1rrrrrrrrrr", nom)
print(poeme)
print("Signé, " + nom + " le loup grrrrrrrrrraouuuurou")
f.close()
Writing bot
un bot qui fait des phrases avec le simflouz tree. C'est un arbre qui donne de l'argent quand on l'arrose dans les sims 2
il pourrait récupérer des tweets qui contiennent l'expression "sous l'abre" et la remplacer par under the simflouz tree
from acces import *
import tweepy
import time
import json
auth = tweepy.OAuthHandler(consumer_key, consumer_secret)
auth.set_access_token(access_token, access_token_secret)
api = tweepy.API(auth)
tweets = tweepy.Cursor(api.search, q='"sous l\'arbre" OR "sous un arbre"', tweet_mode='extended').items(1)
tweeet = ''
for tweet in tweets:
tweeet = tweet
if hasattr(tweeet, 'retweeted_status'):
tweetText = tweeet.retweeted_status.full_text
else:
tweetText = tweeet.full_text
username = tweeet.user.screen_name
tweetText = tweetText.replace("sous l’arbre", "under the simflouz tree")
tweetText = tweetText.replace("sous l'arbre", "under the simflouz tree")
tweetText = tweetText.replace("sous un arbre", "under the simflouz tree")
print (tweetText)
le bot twitter poste le message modifié et cite le compte initial abonnez vous à moi : https://twitter.com/SimflouzT
Maintenant il faut trouver le moyen pour que le bot, à chaque fois qu'il soit lancé, passe en revue tout les tweets concernés, classe ceux qu'il a déjà traité et éxécute le programme pour les autres, de manière à ce qu'il soit autonome.
05.03,
from acces import *
import tweepy
import time
import json
def simflouzTree(tweeet):
if hasattr(tweeet, 'retweeted_status'):
tweetText = tweeet.retweeted_status.full_text
else:
tweetText = tweeet.full_text
username = tweeet.user.screen_name
tweetText = tweetText.replace("sous l’arbre", "under the simflouz tree")
tweetText = tweetText.replace("sous l'arbre", "under the simflouz tree")
tweetText = tweetText.replace("sous un arbre", "under the simflouz tree")
tweetText = tweetText.replace("Sous l'arbre", "Under the simflouz tree")
print (tweetText)
#api.update_status(status='@' + username + ' ' + tweetText)
#api.update_status(status=tweetText + ' ' + '@' + username)
auth = tweepy.OAuthHandler(consumer_key, consumer_secret)
auth.set_access_token(access_token, access_token_secret)
api = tweepy.API(auth)
file = open("dejatraite.json", "r")
txt = file.read()
ids = json.loads(txt)
tweets = tweepy.Cursor(api.search, q='"sous l\'arbre" OR "sous un arbre"', tweet_mode='extended').items(1)
tweeet = ''
for tweet in tweets:
tweeet = tweet
tweetID = tweeet.id
if tweetID in ids:
print (tweetID)
if tweetID not in ids:
print('pas là')
simflouzTree(tweeet)
file = open ("dejatraite.json", "w")
ids.append(tweetID)
txt = json.dumps(ids)
file.write(txt)
file.close()
Maintenant il faut le faire tourner tout seul régulièrement sans que je sois là