pythonを使ってTwitterのtimelineを取得する為に、コードを書いたのですが、
エラーが出てしまいました。
IndentationError: expected an indented block
そこで空白を最初に入れてみましたが、
IndentationError: unexpected indent
今度はインデントがいらないと出てしまいました。
どのような問題があるのでしょうか、また、timeline取得のコードはあっているのでしょうか。エラーについてのみならず他にも問題があれば教えていただけると幸いです。
コードは以下の通りです。
auth
1>>> auth.set_access_token(access_token, access_token_secret) 2>>> api = tweepy.API(auth) 3>>> status_list = api.home_timeline() 4>>> from datetime import timedelate(): 5 File "<stdin>", line 1 6 from datetime import timedelate(): 7 ^ 8SyntaxError: invalid syntax 9>>> for status in api.home_timeline(): 10... 11 File "<stdin>", line 2 12 13 ^ 14IndentationError: expected an indented block 15>>> for status in api.home_timeline(): 16 File "<stdin>", line 1 17 for status in api.home_timeline(): 18 ^ 19IndentationError: unexpected indent 20コード
参考にしたサイトは以下の通りです。
リンク内容
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/07/17 00:29