mirror of
https://github.com/anatolykopyl/Twitter-Bot.git
synced 2026-03-26 12:54:49 +00:00
Скопировал код для ретвиттов на новую модульную систему
This commit is contained in:
17
retweet.py
Normal file
17
retweet.py
Normal file
@@ -0,0 +1,17 @@
|
||||
from twython import Twython, TwythonError
|
||||
import authorization
|
||||
|
||||
def retweet(): #retweet tweets with a set hashtag
|
||||
search_results = authorization.twitter.search(q="#TwitterShitter", count=5)
|
||||
try:
|
||||
for tweet in search_results["statuses"]:
|
||||
authorization.twitter.retweet(id = tweet["id_str"])
|
||||
log_str = "retweeted "+tweet["id_str"]
|
||||
log_file=open('log_file.txt', 'a')
|
||||
log_file.write(log_str)
|
||||
log_file.close()
|
||||
print log_str,
|
||||
except TwythonError as e:
|
||||
print e
|
||||
|
||||
return
|
||||
Reference in New Issue
Block a user