###やりたいこと
Pythonについて質問です(discord.py)
python
1reg_res = re.compile(u"(.+)の天気は?").search(message.content)
というように
「東京の天気は?」と入力したら「東京」が代入されるコードです。
(Discord.pyなので最後の.search(message.content)は無視でOKです)
こんな感じで
「東京の2時間後の天気は?」と入力されたら「東京」と「2時間後」
を代入する方法というのはありますか?
python初心者なので教えてください!!
###ソースコード
python
1import discord 2import json 3import re 4import urllib 5 6Intents = discord.Intents.default() 7Intents.members = True 8Intents.message_content = True 9client = discord.Client(intents=Intents) 10 11#citycodesは47都道府県のも対応 12citycodes = { 13 "北海道":"016010", 14 "青森":"020010", 15 "岩手":"030010", 16 "宮城":"040010", 17 "秋田":"050010", 18 "山形":"060010", 19 "福島":"070010", 20 "茨城":"080010", 21 "栃木":"090010", 22 "群馬":"100010", 23 "埼玉":"110010", 24 "千葉":"120010", 25 "東京":"130010", 26 "神奈川":"140010", 27 "新潟":"150010", 28 "富山":"160010", 29 "石川":"170010", 30 "福井":"180010", 31 "山形":"190010", 32 "長野":"200010", 33 "岐阜":"210010", 34 "静岡":"220010", 35 "愛知":"230010", 36 "三重":"240010", 37 "滋賀":"250010", 38 "京都":"260010", 39 "大阪":"270000", 40 "兵庫":"280010", 41 "奈良":"290010", 42 "和歌山":"300010", 43 "鳥取":"310010", 44 "島根":"320010", 45 "岡山":"330010", 46 "広島":"340010", 47 "山口":"350010", 48 "徳島":"360010", 49 "香川":"370000", 50 "愛媛":"380010", 51 "高知":"390010", 52 "福島":"400010", 53 "佐賀":"410010", 54 "長崎":"420010", 55 "熊本":"430010", 56 "大分":"440010", 57 "宮崎":"450010", 58 "鹿児島":"460010", 59 "沖縄":"471010", 60} 61 62@client.event 63async def on_ready(): 64 print('logined {0.user}'.format(client)) 65 66@client.event 67async def on_message(message): 68 if message.author.bot: 69 return 70 #天気Bot 71 reg_res = re.compile(u"(.+)の天気は?").search(message.content) 72 if reg_res: 73 74 if reg_res.group(1) in citycodes.keys(): 75 76 citycode = citycodes[reg_res.group(1)] 77 resp = urllib.request.urlopen(f"https://weather.tsukumijima.net/api/forecast/city/{citycode}").read() 78 resp = json.loads(resp.decode("utf-8")) 79 msg = "__【お天気情報:**" + resp["location"]["city"] + "**】__\n" 80 for f in resp["forecasts"]: 81 msg += f["date"] + "(" + f["dateLabel"] + ")" + ":**" + f["telop"] + "**\n" 82 msg += "```" + resp["description"]["bodyText"] + "```" 83 84 await message.channel.send(msg) 85 86 else: 87 await message.channel.send("場所が間違っている可能性があります。") 88 89client.run("token")
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2022/10/24 03:05