diff --git a/api.html b/api.html index 67cd133..a028bc7 100644 --- a/api.html +++ b/api.html @@ -277,7 +277,7 @@
on_error
(event_method, *args, **kwargs)¶This function is a coroutine.
+이 함수는 코루틴 입니다.
클라이언트가 제공하는 기본적인 오류 처리기.
By default this prints to sys.stderr
however it could be
overridden to have a different implementation.
@@ -287,7 +287,7 @@
request_offline_members
(*guilds)¶This function is a coroutine.
+이 함수는 코루틴 입니다.
Requests previously offline members from the guild to be filled up
into the Guild.members
cache. This function is usually not
called. It should only be used if you have the fetch_offline_members
@@ -309,7 +309,7 @@
login
(token, *, bot=True)¶This function is a coroutine.
+이 함수는 코루틴 입니다.
지정된 인증서로 클라이언트에 로그인합니다.
이 함수는 두 가지의 다른 방법으로 사용될 수 있습니다.
logout
()¶This function is a coroutine.
+이 함수는 코루틴 입니다.
Logs out of Discord and closes all connections.
참고
@@ -355,7 +355,7 @@connect
(*, reconnect=True)¶This function is a coroutine.
+이 함수는 코루틴 입니다.
Creates a websocket connection and lets the websocket listen to messages from Discord. This is a loop that runs the entire event system and miscellaneous aspects of the library. Control @@ -380,7 +380,7 @@
start
(*args, **kwargs)¶This function is a coroutine.
+이 함수는 코루틴 입니다.
A shorthand coroutine for login()
+ connect()
.
wait_until_ready
()¶This function is a coroutine.
+이 함수는 코루틴 입니다.
Waits until the client’s internal cache is all ready.
wait_for
(event, *, check=None, timeout=None)¶This function is a coroutine.
+이 함수는 코루틴 입니다.
Waits for a WebSocket event to be dispatched.
This could be used to wait for a user to reply to a message, or to react to a message, or to edit a message in a self-contained @@ -676,7 +676,7 @@
change_presence
(*, activity=None, status=None, afk=False)¶This function is a coroutine.
+이 함수는 코루틴 입니다.
Changes the client’s presence.
예제
game = discord.Game("with the API")
@@ -703,7 +703,7 @@ 클라이언트¶
-
fetch_guilds
(*, limit=100, before=None, after=None)¶
-This function is a coroutine.
+이 함수는 코루틴 입니다.
Retrieves an AsyncIterator
that enables receiving your guilds.
참고
@@ -751,7 +751,7 @@ 클라이언트¶
-
await
fetch_guild
(guild_id)¶
-This function is a coroutine.
+이 함수는 코루틴 입니다.
Retrieves a Guild
from an ID.
참고
@@ -784,7 +784,7 @@ 클라이언트¶
-
await
create_guild
(name, region=None, icon=None)¶
-This function is a coroutine.
+이 함수는 코루틴 입니다.
Creates a Guild
.
Bot accounts in more than 10 guilds are not allowed to create guilds.
@@ -816,7 +816,7 @@ 클라이언트¶
-
await
fetch_invite
(url, *, with_counts=True)¶
-This function is a coroutine.
+이 함수는 코루틴 입니다.
Gets an Invite
from a discord.gg URL or ID.
참고
@@ -851,7 +851,7 @@ 클라이언트¶
-
await
delete_invite
(invite)¶
-This function is a coroutine.
+이 함수는 코루틴 입니다.
Revokes an Invite
, URL, or ID to an invite.
You must have the manage_channels
permission in
the associated guild to do this.
@@ -872,7 +872,7 @@ 클라이언트¶
-
await
fetch_widget
(guild_id)¶
-This function is a coroutine.
+이 함수는 코루틴 입니다.
Gets a Widget
from a guild ID.
참고
@@ -900,7 +900,7 @@ 클라이언트¶
-
await
application_info
()¶
-This function is a coroutine.
+이 함수는 코루틴 입니다.
Retrieves the bot’s application information.
- 예외
@@ -918,7 +918,7 @@ 클라이언트¶
-
await
fetch_user
(user_id)¶
-This function is a coroutine.
+이 함수는 코루틴 입니다.
Retrieves a User
based on their ID. This can only
be used by bot accounts. You do not have to share any guilds
with the user to get this information, however many operations
@@ -949,7 +949,7 @@
클라이언트¶
-
await
fetch_user_profile
(user_id)¶
-This function is a coroutine.
+이 함수는 코루틴 입니다.
Gets an arbitrary user’s profile.
참고
@@ -977,7 +977,7 @@ 클라이언트¶
-
await
fetch_channel
(channel_id)¶
-This function is a coroutine.
+이 함수는 코루틴 입니다.
Retrieves a abc.GuildChannel
or abc.PrivateChannel
with the specified ID.
참고
@@ -1007,7 +1007,7 @@ 클라이언트¶
-
await
fetch_webhook
(webhook_id)¶
-This function is a coroutine.
+이 함수는 코루틴 입니다.
Retrieves a Webhook
with the specified ID.
- 예외
@@ -1086,7 +1086,7 @@ 클라이언트¶
-
await
request_offline_members
(*guilds)¶
-This function is a coroutine.
+이 함수는 코루틴 입니다.
Requests previously offline members from the guild to be filled up
into the Guild.members
cache. This function is usually not
called. It should only be used if you have the fetch_offline_members
@@ -1108,14 +1108,14 @@
클라이언트¶
-
await
change_presence
(*, activity=None, status=None, afk=False, shard_id=None)¶
-This function is a coroutine.
+이 함수는 코루틴 입니다.
Changes the client’s presence.
Example:
game = discord.Game("with the API")
@@ -1704,14 +1704,14 @@ Voice¶
-
await
disconnect
(*, force=False)¶
-This function is a coroutine.
+이 함수는 코루틴 입니다.
Disconnects this voice client from voice.
-
await
move_to
(channel)¶
-This function is a coroutine.
+이 함수는 코루틴 입니다.
Moves you to a different voice channel.
- 매개변수
@@ -2037,7 +2037,7 @@ Voice¶
-
classmethod await
from_probe
(source, *, method=None, **kwargs)¶
-This function is a coroutine.
+이 함수는 코루틴 입니다.
A factory method that creates a FFmpegOpusAudio
after probing
the input source for audio codec and bitrate information.
예제
@@ -2093,7 +2093,7 @@ Voice¶
-
classmethod await
probe
(source, *, method=None, executable=None)¶
-This function is a coroutine.
+이 함수는 코루틴 입니다.
Probes the input source for bitrate and codec information.
- 매개변수
@@ -3232,7 +3232,7 @@ Opus Library
-
await
discord.utils.
sleep_until
(when, result=None)¶
-This function is a coroutine.
+이 함수는 코루틴 입니다.
Sleep until a specified time.
If the time supplied is in the past this function will yield instantly.
@@ -4721,7 +4721,7 @@ Async Iterator
-
await
next
()¶
-This function is a coroutine.
+이 함수는 코루틴 입니다.
Advances the iterator by one, if possible. If no more items are found
then this raises NoMoreItems
.
@@ -4729,7 +4729,7 @@ Async Iterator
-
await
get
(**attrs)¶
-This function is a coroutine.
+이 함수는 코루틴 입니다.
Similar to utils.get()
except run over the async iterator.
Getting the last message by a user named 〈Dave〉 or None
:
msg = await channel.history().get(author__name='Dave')
@@ -4740,7 +4740,7 @@ Async Iterator
-
await
find
(predicate)¶
-This function is a coroutine.
+이 함수는 코루틴 입니다.
Similar to utils.find()
except run over the async iterator.
Unlike utils.find()
, the predicate provided can be a
coroutine.
@@ -4764,7 +4764,7 @@ Async Iterator
-
await
flatten
()¶
-This function is a coroutine.
+이 함수는 코루틴 입니다.
Flattens the async iterator into a list
with all the elements.
- 반환값
@@ -6179,7 +6179,7 @@ Adapters¶<
-
await
delete
(*, reason=None)¶
-This function is a coroutine.
+이 함수는 코루틴 입니다.
채널을 삭제합니다.
이것을 사용하려면 manage_channels
권한이 있어야 합니다.
@@ -6199,7 +6199,7 @@ Adapters¶<
-
await
set_permissions
(target, *, overwrite=see - below, reason=None, **permissions)¶
-This function is a coroutine.
+이 함수는 코루틴 입니다.
채널에 대한 특정 권한 덮어쓰기를 설정합니다.
target
매개 변수는 길드에 속한 Member
또는 Role
이어야 합니다.
overwrite
매개 변수는, 제공된 경우 None
또는 PermissionOverwrite
이어야 합니다. 편의를 위해 Permissions
속성을 나타내는 키워드 인수를 전달할 수 있습니다. 이 작업을 수행하면 키워드 인수를 overwrite
매개 변수와 함께 쓸 수 없습니다.
@@ -6245,7 +6245,7 @@ Adapters¶<
-
await
clone
(*, name=None, reason=None)¶
-This function is a coroutine.
+이 함수는 코루틴 입니다.
이 채널을 복제합니다. 이 채널과 동일한 속성을 가진 채널을 만듭니다.
버전 1.1에 추가.
@@ -6269,14 +6269,13 @@ Adapters¶<
-
await
create_invite
(*, reason=None, **fields)¶
-This function is a coroutine.
+이 함수는 코루틴 입니다.
인스턴트 초대를 생성합니다.
이것을 사용하려면 create_instant_invite
권한이 있어야 합니다.
- 매개변수
-max_age (int
) – How long the invite should last in seconds. If it’s 0 then the invite
-doesn’t expire. Defaults to 0.
+max_age (int
) – 초대의 지속 시간입니다. 0이면 초대가 만료되지 않습니다. 기본값은 0입니다.
max_uses (int
) – 초대를 사용할 수 있는 횟수입니다. 0이면 무제한으로 사용할 수 있습니다. 기본값은 0입니다.
temporary (bool
) – 초대에 임시 회원 자격이 부여되는지를 나타냅니다. (즉, 연결이 끊어지면 추방됨.)기본값은 False
입니다.
unique (bool
) – 고유한 초대 URL을 생성해야 하는지 나타냅니다. 기본값은 True
입니다.
@@ -6298,7 +6297,7 @@ Adapters¶<
-
await
invites
()¶
-This function is a coroutine.
+이 함수는 코루틴 입니다.
이 채널의 모든 활성 인스턴트 초대 목록을 리턴합니다.
이 정보를 얻으려면 manage_guild
권한이 있어야 합니다.
@@ -6393,10 +6392,10 @@ Adapters¶<
-
await
send
(content=None, *, tts=False, embed=None, file=None, files=None, delete_after=None, nonce=None, allowed_mentions=None)¶
-This function is a coroutine.
+이 함수는 코루틴 입니다.
주어진 내용(컨텐츠)으로 대상에 메시지를 보냅니다.
컨텐츠는 str(content)
을 통해 문자열로 변환할 수 있는 타입이여야 합니다. 내용이 None
(기본값)으로 설정되면 embed
매개 변수를 제공해야 합니다.
-단일 파일을 업로드하려면, file
매개 변수에 단일 File
객체를 사용해야 합니다. 여러 파일을 업로드하려면 files
매개 변수에 File
객체가 담긴 list
를 사용해야 합니다.**두 매개 변수를 모두 지정하면 예외가 발생합니다**.
+단일 파일을 업로드하려면, file
매개 변수에 단일 File
객체를 사용해야 합니다. 여러 파일을 업로드하려면 files
매개 변수에 File
객체가 담긴 list
를 사용해야 합니다. 두 매개 변수를 모두 지정하면 예외가 발생합니다.
embed
매개 변수가 제공될 경우, Embed
타입이여야 하며 이것은 rich embed 타입이여야 합니다.
- 매개변수
@@ -6430,7 +6429,7 @@ Adapters¶<
-
await
trigger_typing
()¶
-This function is a coroutine.
+이 함수는 코루틴 입니다.
대상에 입력 중 표시기를 트리거합니다.
입력 중 표시기는 10초 후에 또는 메시지가 전송 된 후에 사라집니다.
@@ -6438,7 +6437,7 @@ Adapters¶<
-
await
fetch_message
(id)¶
-This function is a coroutine.
+이 함수는 코루틴 입니다.
대상에서 단일 Message
를 검색합니다.
오직 봇 계정에서만 사용할 수 있습니다.
@@ -6464,7 +6463,7 @@ Adapters¶<
-
await
pins
()¶
-This function is a coroutine.
+이 함수는 코루틴 입니다.
채널에 현재 고정되어 있는 모든 메시지를 검색합니다.
참고
@@ -6747,7 +6746,7 @@ 클라이언트 사용자
-
await
edit
(**fields)¶
-This function is a coroutine.
+이 함수는 코루틴 입니다.
클라이언트의 프로필을 편집
봇 계정을 사용하는 경우 비밀번호 필드는 선택 사항이며 그렇지 않은 경우는 비밀번호 필드가 필요합니다.
@@ -6781,7 +6780,7 @@ 클라이언트 사용자
-
await
create_group
(*recipients)¶
-This function is a coroutine.
+이 함수는 코루틴 입니다.
제공된 유저와 그룹 채팅을 합니다. 이런 유저는 RelationshipType.friend
유형이여야 합니다.
참고
@@ -6809,7 +6808,7 @@ 클라이언트 사용자
-
await
edit_settings
(**kwargs)¶
-This function is a coroutine.
+이 함수는 코루틴 입니다.
클라이언트의 설정을 편집합니다.
참고
@@ -7051,7 +7050,7 @@ 관련성¶
-
await
delete
()¶
-This function is a coroutine.
+이 함수는 코루틴 입니다.
관련성을 삭제