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
エラーがおありですか?あなたの 'follow'関数はコンテンツがインデントされる必要があるように見える – depperm
それは全体のコードの一部に過ぎず、私はちょうどコールバック関数を探していました。あなたの時間をありがとう – Shadowbladers