第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

如何在Python中編輯編碼的json文件

如何在Python中編輯編碼的json文件

小怪獸愛吃肉 2024-01-15 15:30:38
我目前正在使用 Python 開發(fā)一個(gè) Discord 機(jī)器人。為了保存數(shù)據(jù),我創(chuàng)建了一個(gè) .tmp 文件來存儲(chǔ) json 格式的數(shù)據(jù)文本。我必須對(duì)其進(jìn)行編碼才能立即寫入文件(我還在文件中進(jìn)行了一些值檢查)。因?yàn)樗蔷幋a的,所以我無法使用以下代碼編輯 json:emojiU = '\N{THUMBS UP SIGN}'emojiD = '\N{THUMBS DOWN SIGN}'cnd_Member = [member for member in ctx.guild.members if str(data['roles_id']['AmongUs']) in str(member.roles) and (str(member.status) == "online" or str(member.status) == "idle") and member.id != ctx.author.id]tmpfile = open("my_file.tmp", "wb+", 0) #List that store connected user with a specific rolefor i, member in enumerate(cnd_Member): # for connected member with the specific role    DM = discord.utils.get(client.get_all_members(), id=member.id)    Sstring = "***" + Sender + "***" + '   veux jouer à  ***' + game + '***.\n :thumbsup:  si vous êtes chaud ou  :thumbsdown:  si vous ne l\'êtes pas'    msg = await DM.send(embed=createEbd(des=Sstring, img=imgLink)) #send DM to the member    if i == 0       save = '{{"{}":{{"msgId":{}, "reaction":"None"}}, '.format(member.id, msg.id)    elif i == len(list(cnd_Member))-1:         save = '"{}":{{"msgId":{}, "reaction":"None"}}}}'.format(member.id, msg.id)    else :         save = '"{}":{{"msgId":{}, "reaction":"None"}}, '.format(member.id, msg.id)    await msg.add_reaction(emojiU ) #Bot add reaction to the DM message    await msg.add_reaction(emojiD) #Bot add reaction to the DM message    tmpfile.write(save.encode("utf-8")) #creating the json file with data使用 json.dumps 然后對(duì)其進(jìn)行編碼并使用 tmpfile.write 將其寫入文件中是可行的,但它只附加數(shù)據(jù),而不是編輯 tmpfile 中現(xiàn)有的 json。
查看完整描述

1 回答

?
白衣染霜花

TA貢獻(xiàn)1796條經(jīng)驗(yàn) 獲得超10個(gè)贊

我找到了如何處理它。

我將所有數(shù)據(jù)存儲(chǔ)在 JSON 格式文件中,當(dāng)用戶添加反應(yīng)時(shí),它會(huì)編輯該文件。當(dāng)我需要發(fā)布表時(shí),它會(huì)讀取 JSON 文件。

編碼或未編碼,我只需編輯json.loads并重寫文件即可工作


查看完整回答
反對(duì) 回復(fù) 2024-01-15
  • 1 回答
  • 0 關(guān)注
  • 169 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)