You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1.5 KiB

Client

Generally, almost all interactions through Disco will utilize some form of the Disco client. The client is an abstraction over the multiple transport and API protocols used to communicate with Discord, and it also includes utilities for tracking and caching real-time state. Most users will not want to construct an instance of the client themselves, but rather utilize one of Disco's helper facets (such as a Bot) that further wrap and abstract the client.

API

ClientConfig

Object used to configure the basic behavior and functionality of the client.

Attributes

Field Type Description Default
token string The Discord authentication token ""
shard_id integer The shard ID for this instance 0
shard_count integer The total number of shards 1
max_reconnects integer The maxmium number of reconnects (not resumes) to attempt before giving up 5
manhole_enable boolean Whether the manhole server is enabled False
manhole_bind tuple(string, integer) The bind information for the manhole server ('127.0.0.1', 8484)

Client

Class representing the base abstraction point of Disco.

Parameters

Name Type Description
config ClientConfig The configuration for this client instance

Attributes

Field Type Description
config ClientConfig The configuration for this client instance
events holster.emitter.Emitter