前提・実現したいこと
ここに質問の内容を詳しく書いてください。
Twitter Apiを使用中に起きた
Pythonのエラー'None Type'の修正方法が分かりません。
お分かりになられる方がいらっしゃいましたら、どうかご教授ください。
発生している問題・エラーメッセージ
File "main.py", line 26, in <module> main() File "main.py", line 21, in main print(user.screen_name) AttributeError: 'NoneType' object has no attribute 'screen_name'
該当のソースコード
import tweepy from config import consumer_key, consumer_secret,access_token, access_token_secret auth = tweepy.OAuthHandler(consumer_key, consumer_secret) auth.set_access_token(access_token, access_token_secret) api = tweepy.API(auth) def show_public_tweets(): public_tweets = api.home_timeline() for tweet in public_tweets: print(tweet.text) def main(): user = api.get_user('twitter') print(user.screen_name) print(user.followers_count) if __name__ == "__main__": main()
試したこと
ここに問題に対して試したことを記載してください。
補足情報(FW/ツールのバージョンなど)
ここにより詳細な情報を記載してください。
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。