Raven7 commited on
Commit
4a77f8a
Β·
verified Β·
1 Parent(s): ce2ae4a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +24 -56
app.py CHANGED
@@ -1,63 +1,31 @@
1
- import requests
2
- import json
 
 
3
 
4
- # λ””μŠ€μ½”λ“œ 봇 토큰과 채널 I
5
- ISCB = "MI2Mk0zQ3czc0Mz4Mw.Glf6.2bSeer-q5jHVnClSe1wsP0IHpVyIdxGaYac"
6
- CHANNELI = "1261896610506604564"
7
 
8
- def sendmessage(channelid, message):
9
- # λ””μŠ€μ½”λ“œ 봇 API μ—”λ“œν¬μΈνŠΈ
10
- url = f"https://discord.com/api/v9/channels/{channelid}/messages"
11
 
12
- # 헀더 μ„€μ •
13
- headers = {
14
- "Authorization": DISCB,
15
- "Content-ype": "application/json"
16
- }
17
 
18
- # λ©”μ‹œμ§€ 정보 생성
19
- data = {
20
- "content": message
21
- }
22
 
23
- # λ©”μ‹œμ§€ 전솑
24
- response = requests.post(url, headers=headers, data=json.dumps(data))
 
 
25
 
26
- # 응닡 처리
27
- if response.statuscode == 200:
28
- print("λ©”μ‹œμ§€ 전솑 μ™„λ£Œ")
29
- else:
30
- print(f"λ©”μ‹œμ§€ 전솑 μ‹€νŒ¨: {response.statuscode}")
31
 
32
- def getmessage(channelid):
33
- # λ””μŠ€μ½”λ“œ 봇 API μ—”λ“œν¬μΈνŠΈ
34
- url = f"https://discord.com/api/v9/channels/{channelid}/messages"
35
-
36
- # 헀더 μ„€μ •
37
- headers = {
38
- "Authorization": DISCB,
39
- "Content-ype": "application/json"
40
- }
41
-
42
- # λ©”μ‹œμ§€ 전솑
43
- response = requests.get(url, headers=headers)
44
-
45
- # 응닡 처리
46
- if response.statuscode == 200:
47
- messages = json.loads(response.text)
48
- return messages[-1]["content"]
49
- else:
50
- print(f"λ©”μ‹œμ§€ κ°€μ Έμ˜€ μ‹€νŒ¨: {response.statuscode}")
51
-
52
- # λŒ€ν™” μ‹œμž‘
53
- message = input("μ‚¬μš©μž: ")
54
- sendmessage(CHANNELI, message)
55
-
56
- while True:
57
- # 응닡 λ°›κΈ°
58
- response = getmessage(CHANNELI)
59
- print(f"AI: {response}")
60
-
61
- # μ‚¬μš©μž μž…λ ₯
62
- message = input("μ‚¬μš©μž: ")
63
- sendmessage(CHANNELI, message)
 
1
+ import discord
2
+ from discord.ext import commands
3
+ from discord.ext.commands import Bot
4
+ import os
5
 
6
+ # λ””μŠ€μ½”λ“œ 봇 토큰
7
+ ISC = "YISC"
 
8
 
9
+ # λ””μŠ€μ½”λ“œ 봇 ν΄λΌμ΄μ–ΈνŠΈ 생성
10
+ client = Bot(commandprefix='!')
 
11
 
12
+ # λ©”μ‹œμ§€ 처리 ν•¨μˆ˜
13
+ async def processmessage(message):
14
+ # λ©”μ‹œμ§€λ₯Ό λ°›μ•„ 처리
15
+ if message.author == client.user:
16
+ return
17
 
18
+ # λ©”μ‹œμ§€ 처리 둜직 μΆ”κ°€
19
+ await message.channel.send(f"AI: {message.content}")
 
 
20
 
21
+ # 이벀트 ν•Έλ“€ 등둝
22
+ @client.event
23
+ async def onready():
24
+ print(f'{client.user} 봇이 μ€€λΉ„λ˜μ—ˆμŠ΅λ‹ˆλ‹€.')
25
 
26
+ @client.event
27
+ async def onmessage(message):
28
+ await processmessage(message)
 
 
29
 
30
+ # 봇 μ‹€ν–‰
31
+ client.run(ISC)