2017-10-11 51 views
0

我正在嘗試創建一個bot來轉發和推廣我的一些其他賬戶。但我收到以下錯誤Twython的對象沒有屬性'getUserTimeline'

AttributeError: 'Twython' object has no attribute 'getUserTimeline' 

我的代碼是:

search_results = twitter.getUserTimeline(sreen_name="SCREENNAME", count = 2,) 
try: 
for tweet in search_results["statuses"]: 
    twitter.retweet(id = tweet["id_str"]) 
except TwythonError as e: 
    print e 

誰能幫助?

+0

你已經採取了看看關於得到用戶的時間軸,在twython文檔?它說什麼? –

回答

1

根據twithon documentation沒有getUserTimeline函數,但是有一個get_user_timeline函數。

你應該改變以下調用:

twitter.getUserTimeline 

是:

twitter.get_user_timeline 
+0

謝謝!那個排序問題! – PhilB