ツイッターのbotを作成中なのですが、configというモジュールの中に上記が見つからないようです。
ファイル名がかぶっていないかも確認しましたが、どうにも解消できません。
分かる方、どうかよろしくお願いします。
エラーメッセージ
File "c:/Users/エリュシオン/.vscode/iwa bot.py", line 32, in <module>
main()
File "c:/Users/エリュシオン/.vscode/iwa bot.py", line 26, in main
auth=OAuth(config.TW_TOKEN, config.TW_TOKEN_SECRET, config.TW_CONSUMER_KEY, config.TW_CONSUMER_SECRET))
AttributeError: module 'config' has no attribute 'TW_TOKEN'
PS C:\Users\エリュシオン.vscod
python
1コード 2```#インストールしたライブラリ twitter, python-dotenv 3 4#キーの設定 5TW_CONSUMER_KEY='~' 6TW_CONSUMER_SECRET='~' 7TW_TOKEN='~' 8TW_TOKEN_SECRET='~' 9 10#設定した値を読み込む 11import os 12from dotenv import find_dotenv, load_dotenv 13# find .env automagically by walking up directories until it's found, then 14# load up the .env entries as environment variables 15load_dotenv(find_dotenv()) 16TW_CONSUMER_KEY = os.environ.get('TW_CONSUMER_KEY') 17TW_CONSUMER_SECRET = os.environ.get('TW_CONSUMER_SECRET') 18TW_TOKEN = os.environ.get('TW_TOKEN') 19TW_TOKEN_SECRET = os.environ.get('TW_TOKEN_SECRET') 20 21#メインプログラム 22import config 23from twitter import * 24 25def main(): 26 t = Twitter( 27 auth=OAuth(config.TW_TOKEN, config.TW_TOKEN_SECRET, config.TW_CONSUMER_KEY, config.TW_CONSUMER_SECRET)) 28 29 msg = 'テスト投稿ですm(_ _)m' # Post a message 30 t.statuses.update(status=msg) 31 32if __name__ == '__main__': 33 main()
あなたの回答
tips
プレビュー