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.

100 lines
2.4 KiB

"""
Discord API Wrapper
~~~~~~~~~~~~~~~~~~~
A basic wrapper for the Discord user API.
:copyright: (c) 2015-present Rapptz and 2021-present Dolfies
:license: MIT, see LICENSE for more details.
"""
__title__ = 'discord.py-self'
__author__ = 'Dolfies'
__license__ = 'MIT'
__copyright__ = 'Copyright 2015-present Rapptz and 2021-present Dolfies'
__version__ = '2.1.0a'
__path__ = __import__('pkgutil').extend_path(__path__, __name__)
import logging
from typing import Literal, NamedTuple
from . import abc as abc, opus as opus, utils as utils
from .activity import *
from .affinity import *
from .application import *
from .asset import *
from .audit_logs import *
from .automod import *
from .billing import *
from .calls import *
from .channel import *
from .client import *
from .colour import *
from .commands import *
from .components import *
from .connections import *
from .directory import *
from .embeds import *
from .emoji import *
from .entitlements import *
from .enums import *
from .errors import *
from .experiment import *
from .file import *
from .flags import *
from .guild import *
from .guild_premium import *
from .integrations import *
from .interactions import *
from .invite import *
from .library import *
from .member import *
from .mentions import *
from .message import *
from .metadata import *
from .modal import *
from .object import *
from .oauth2 import *
from .partial_emoji import *
from .payments import *
from .permissions import *
from .player import *
from .profile import *
from .promotions import *
from .raw_models import *
from .read_state import *
from .reaction import *
from .relationship import *
from .role import *
from .scheduled_event import *
from .settings import *
from .stage_instance import *
from .sticker import *
from .store import *
from .subscriptions import *
from .team import *
from .template import *
from .threads import *
from .tutorial import *
from .user import *
from .voice_client import *
from .webhook import *
from .welcome_screen import *
from .widget import *
class _VersionInfo(NamedTuple):
major: int
minor: int
micro: int
releaselevel: Literal['alpha', 'beta', 'candidate', 'final']
serial: int
version_info: _VersionInfo = _VersionInfo(major=2, minor=1, micro=0, releaselevel='alpha', serial=0)
logging.getLogger(__name__).addHandler(logging.NullHandler())
del logging, NamedTuple, Literal, _VersionInfo