강의

멘토링

커뮤니티

Inflearn Community Q&A

나's profile image

asked

This is Discover Discord Python Bot

Discord bot making

파이참 에서의 오류 입니다 discordbot 파일에서

Written on

·

3.7K

0

Traceback (most recent call last):
  File "C:\Users\220725\Desktop\discord\bot.py", line 4, in <module>
    app = commands.Bot(command_prefix='/')
TypeError: __init__() missing 1 required keyword-only argument: 'intents'

실행하면 오류가 발생

오류가 발생합니다

웹-크롤링pythonGUI

Answer 2

0

나님의 프로필 이미지
Questioner

해결됐습니다. 감사합니다. 

저도 지금 같은 오류로 찾고 있는데 혹시 어떻게 해결하셨는지 조언 좀 구할 수 있을까요?

나님의 프로필 이미지
Questioner

from discord.ext import commands

intents =discord.Intents.all

token=()

app = commands.Bot(command_preffix intents=intents)

0

Hojun Lee님의 프로필 이미지
Hojun Lee
Instructor

실행하신 코드를 함께 올려주시겠어요? 확인해보도록 하겠습니다.

나's profile image

asked

Ask a question