前提・実現したいこと
!test
と入力されたら、Jsonにユーザー情報を記憶させたいです。
もし、Jsonファイルにユーザーデータが未だ無い場合は、新しくupdate_data
で作成し、
存在する場合にはadd_experience
でレベルを1足す
といったシステムにしたいです。
発生している問題・エラーメッセージ
Ignoring exception in on_message Traceback (most recent call last): File "C:\Users\AppData\Local\Programs\Python\Python39\lib\site-packages\discord\client.py", line 343, in _run_event await coro(*args, **kwargs) File "c:\Users\Desktop\kouchaaaaa\Discord\support-mattya\main.py", line 200, in on_message users = json.load(f) File "C:\Users\AppData\Local\Programs\Python\Python39\lib\json\__init__.py", line 293, in load return loads(fp.read(), File "C:\Users\AppData\Local\Programs\Python\Python39\lib\json\__init__.py", line 346, in loads return _default_decoder.decode(s) File "C:\Users\AppData\Local\Programs\Python\Python39\lib\json\decoder.py", line 337, in decode obj, end = self.raw_decode(s, idx=_w(s, 0).end()) File "C:\Users\AppData\Local\Programs\Python\Python39\lib\json\decoder.py", line 355, in raw_decode raise JSONDecodeError("Expecting value", s, err.value) from None json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
該当のソースコード
py
1@bot.event 2async def on_message(message): 3 if message.content == "!test": 4 with open("users.json", "r")as f: 5 users = json.load(f) 6 await update_data(users, message.author) 7 await add_experience(users, message.author) 8 9 with open("users.json", "w")as f: 10 json.dump(users, f, indent=4) 11 12 await bot.process_commands(message) 13 14async def update_data(users, user): 15 if not str(user.id) in users.keys(): 16 users[str(user.id)] = {} 17 users[str(user.id)]["level"] = 1 18 19async def add_experience(users, user): 20 users[str(user.id)]["experience"] += 1
補足情報(FW/ツールのバージョンなど)
Discord.py 1.7.1
Python 3.9.5
VScode 2019
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/07/02 12:02