2017-02-17 16 views
1

私はまったく新しいコーダーで、現在はボットを作成していますので、何かをリツイートするたびに、私は好きで、同じ人に従うかもしれません。私のコード:すべてretweet、お気に入り? Python

def retweet(tweet_cid): 
    try: 
     api.retweet(tweet_cid) 
     time.sleep(random.randit(range(50,900))) 
    except Exception as e: 
     print(str(e)) 
     pass 

def follow(screen_name): 
try: 
    api.create_friendship(screen_name) 
    time.sleep(random.randit(range(50,900))) 
except Exception as e: 
     print(str(e)) 
     pass 

def fav(tweet_cid): 
    try: 
     api.create_favourite(tweet_cid) 
     time.sleep(random.randit(range(600,1100))) 
    except Exception as e: 
     print(str(e)) 
     pass 
+0

エラーがおありですか?あなたの 'follow'関数はコンテンツがインデントされる必要があるように見える – depperm

+0

それは全体のコードの一部に過ぎず、私はちょうどコールバック関数を探していました。あなたの時間をありがとう – Shadowbladers

答えて

0

あなたはretweet()time.sleep()を使用しての代わりに、呼び出されるたびにfollow()fav()を呼び出すコールバック関数を持っている必要があります。

関連する問題