Nihaal Sangha
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
64 changed files with
68 additions and
70 deletions
-
LICENSE
-
discord/__init__.py
-
discord/__main__.py
-
discord/abc.py
-
discord/activity.py
-
discord/appinfo.py
-
discord/asset.py
-
discord/audit_logs.py
-
discord/backoff.py
-
discord/calls.py
-
discord/channel.py
-
discord/client.py
-
discord/colour.py
-
discord/context_managers.py
-
discord/embeds.py
-
discord/emoji.py
-
discord/enums.py
-
discord/errors.py
-
discord/ext/commands/__init__.py
-
discord/ext/commands/_types.py
-
discord/ext/commands/bot.py
-
discord/ext/commands/cog.py
-
discord/ext/commands/context.py
-
discord/ext/commands/converter.py
-
discord/ext/commands/cooldowns.py
-
discord/ext/commands/core.py
-
discord/ext/commands/errors.py
-
discord/ext/commands/help.py
-
discord/ext/commands/view.py
-
discord/ext/tasks/__init__.py
-
discord/file.py
-
discord/flags.py
-
discord/gateway.py
-
discord/guild.py
-
discord/http.py
-
discord/integrations.py
-
discord/invite.py
-
discord/iterators.py
-
discord/member.py
-
discord/mentions.py
-
discord/message.py
-
discord/mixins.py
-
discord/object.py
-
discord/oggparse.py
-
discord/opus.py
-
discord/partial_emoji.py
-
discord/permissions.py
-
discord/player.py
-
discord/raw_models.py
-
discord/reaction.py
-
discord/relationship.py
-
discord/role.py
-
discord/shard.py
-
discord/state.py
-
discord/sticker.py
-
discord/team.py
-
discord/template.py
-
discord/user.py
-
discord/utils.py
-
discord/voice_client.py
-
discord/webhook.py
-
discord/widget.py
-
docs/conf.py
-
docs/locale/ja/LC_MESSAGES/intents.po
|
|
@ -1,6 +1,6 @@ |
|
|
|
The MIT License (MIT) |
|
|
|
|
|
|
|
Copyright (c) 2015-2020 Rapptz |
|
|
|
Copyright (c) 2015-present Rapptz |
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a |
|
|
|
copy of this software and associated documentation files (the "Software"), |
|
|
|
|
|
@ -6,7 +6,7 @@ Discord API Wrapper |
|
|
|
|
|
|
|
A basic wrapper for the Discord API. |
|
|
|
|
|
|
|
:copyright: (c) 2015-2020 Rapptz |
|
|
|
:copyright: (c) 2015-present Rapptz |
|
|
|
:license: MIT, see LICENSE for more details. |
|
|
|
|
|
|
|
""" |
|
|
@ -14,7 +14,7 @@ A basic wrapper for the Discord API. |
|
|
|
__title__ = 'discord' |
|
|
|
__author__ = 'Rapptz' |
|
|
|
__license__ = 'MIT' |
|
|
|
__copyright__ = 'Copyright 2015-2020 Rapptz' |
|
|
|
__copyright__ = 'Copyright 2015-present Rapptz' |
|
|
|
__version__ = '1.6.0' |
|
|
|
|
|
|
|
__path__ = __import__('pkgutil').extend_path(__path__, __name__) |
|
|
|
|
|
@ -3,7 +3,7 @@ |
|
|
|
""" |
|
|
|
The MIT License (MIT) |
|
|
|
|
|
|
|
Copyright (c) 2015-2020 Rapptz |
|
|
|
Copyright (c) 2015-present Rapptz |
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a |
|
|
|
copy of this software and associated documentation files (the "Software"), |
|
|
|
|
|
@ -3,7 +3,7 @@ |
|
|
|
""" |
|
|
|
The MIT License (MIT) |
|
|
|
|
|
|
|
Copyright (c) 2015-2020 Rapptz |
|
|
|
Copyright (c) 2015-present Rapptz |
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a |
|
|
|
copy of this software and associated documentation files (the "Software"), |
|
|
|
|
|
@ -3,7 +3,7 @@ |
|
|
|
""" |
|
|
|
The MIT License (MIT) |
|
|
|
|
|
|
|
Copyright (c) 2015-2020 Rapptz |
|
|
|
Copyright (c) 2015-present Rapptz |
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a |
|
|
|
copy of this software and associated documentation files (the "Software"), |
|
|
|
|
|
@ -3,7 +3,7 @@ |
|
|
|
""" |
|
|
|
The MIT License (MIT) |
|
|
|
|
|
|
|
Copyright (c) 2015-2020 Rapptz |
|
|
|
Copyright (c) 2015-present Rapptz |
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a |
|
|
|
copy of this software and associated documentation files (the "Software"), |
|
|
|
|
|
@ -3,7 +3,7 @@ |
|
|
|
""" |
|
|
|
The MIT License (MIT) |
|
|
|
|
|
|
|
Copyright (c) 2015-2020 Rapptz |
|
|
|
Copyright (c) 2015-present Rapptz |
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a |
|
|
|
copy of this software and associated documentation files (the "Software"), |
|
|
@ -165,7 +165,7 @@ class Asset: |
|
|
|
format = 'gif' if emoji.animated else static_format |
|
|
|
|
|
|
|
return cls(state, '/emojis/{0.id}.{1}'.format(emoji, format)) |
|
|
|
|
|
|
|
|
|
|
|
def __str__(self): |
|
|
|
return self.BASE + self._url if self._url is not None else '' |
|
|
|
|
|
|
|
|
|
@ -3,7 +3,7 @@ |
|
|
|
""" |
|
|
|
The MIT License (MIT) |
|
|
|
|
|
|
|
Copyright (c) 2015-2020 Rapptz |
|
|
|
Copyright (c) 2015-present Rapptz |
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a |
|
|
|
copy of this software and associated documentation files (the "Software"), |
|
|
|
|
|
@ -3,7 +3,7 @@ |
|
|
|
""" |
|
|
|
The MIT License (MIT) |
|
|
|
|
|
|
|
Copyright (c) 2015-2020 Rapptz |
|
|
|
Copyright (c) 2015-present Rapptz |
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a |
|
|
|
copy of this software and associated documentation files (the "Software"), |
|
|
|
|
|
@ -3,7 +3,7 @@ |
|
|
|
""" |
|
|
|
The MIT License (MIT) |
|
|
|
|
|
|
|
Copyright (c) 2015-2020 Rapptz |
|
|
|
Copyright (c) 2015-present Rapptz |
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a |
|
|
|
copy of this software and associated documentation files (the "Software"), |
|
|
|
|
|
@ -3,7 +3,7 @@ |
|
|
|
""" |
|
|
|
The MIT License (MIT) |
|
|
|
|
|
|
|
Copyright (c) 2015-2020 Rapptz |
|
|
|
Copyright (c) 2015-present Rapptz |
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a |
|
|
|
copy of this software and associated documentation files (the "Software"), |
|
|
|
|
|
@ -3,7 +3,7 @@ |
|
|
|
""" |
|
|
|
The MIT License (MIT) |
|
|
|
|
|
|
|
Copyright (c) 2015-2020 Rapptz |
|
|
|
Copyright (c) 2015-present Rapptz |
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a |
|
|
|
copy of this software and associated documentation files (the "Software"), |
|
|
|
|
|
@ -3,7 +3,7 @@ |
|
|
|
""" |
|
|
|
The MIT License (MIT) |
|
|
|
|
|
|
|
Copyright (c) 2015-2020 Rapptz |
|
|
|
Copyright (c) 2015-present Rapptz |
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a |
|
|
|
copy of this software and associated documentation files (the "Software"), |
|
|
|
|
|
@ -3,7 +3,7 @@ |
|
|
|
""" |
|
|
|
The MIT License (MIT) |
|
|
|
|
|
|
|
Copyright (c) 2015-2020 Rapptz |
|
|
|
Copyright (c) 2015-present Rapptz |
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a |
|
|
|
copy of this software and associated documentation files (the "Software"), |
|
|
|
|
|
@ -3,7 +3,7 @@ |
|
|
|
""" |
|
|
|
The MIT License (MIT) |
|
|
|
|
|
|
|
Copyright (c) 2015-2020 Rapptz |
|
|
|
Copyright (c) 2015-present Rapptz |
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a |
|
|
|
copy of this software and associated documentation files (the "Software"), |
|
|
|
|
|
@ -3,7 +3,7 @@ |
|
|
|
""" |
|
|
|
The MIT License (MIT) |
|
|
|
|
|
|
|
Copyright (c) 2015-2020 Rapptz |
|
|
|
Copyright (c) 2015-present Rapptz |
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a |
|
|
|
copy of this software and associated documentation files (the "Software"), |
|
|
|
|
|
@ -3,7 +3,7 @@ |
|
|
|
""" |
|
|
|
The MIT License (MIT) |
|
|
|
|
|
|
|
Copyright (c) 2015-2020 Rapptz |
|
|
|
Copyright (c) 2015-present Rapptz |
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a |
|
|
|
copy of this software and associated documentation files (the "Software"), |
|
|
|
|
|
@ -3,7 +3,7 @@ |
|
|
|
""" |
|
|
|
The MIT License (MIT) |
|
|
|
|
|
|
|
Copyright (c) 2015-2020 Rapptz |
|
|
|
Copyright (c) 2015-present Rapptz |
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a |
|
|
|
copy of this software and associated documentation files (the "Software"), |
|
|
|
|
|
@ -6,7 +6,7 @@ discord.ext.commands |
|
|
|
|
|
|
|
An extension module to facilitate creation of bot commands. |
|
|
|
|
|
|
|
:copyright: (c) 2015-2020 Rapptz |
|
|
|
:copyright: (c) 2015-present Rapptz |
|
|
|
:license: MIT, see LICENSE for more details. |
|
|
|
""" |
|
|
|
|
|
|
|
|
|
@ -3,7 +3,7 @@ |
|
|
|
""" |
|
|
|
The MIT License (MIT) |
|
|
|
|
|
|
|
Copyright (c) 2015-2020 Rapptz |
|
|
|
Copyright (c) 2015-present Rapptz |
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a |
|
|
|
copy of this software and associated documentation files (the "Software"), |
|
|
|
|
|
@ -3,7 +3,7 @@ |
|
|
|
""" |
|
|
|
The MIT License (MIT) |
|
|
|
|
|
|
|
Copyright (c) 2015-2020 Rapptz |
|
|
|
Copyright (c) 2015-present Rapptz |
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a |
|
|
|
copy of this software and associated documentation files (the "Software"), |
|
|
|
|
|
@ -3,7 +3,7 @@ |
|
|
|
""" |
|
|
|
The MIT License (MIT) |
|
|
|
|
|
|
|
Copyright (c) 2015-2020 Rapptz |
|
|
|
Copyright (c) 2015-present Rapptz |
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a |
|
|
|
copy of this software and associated documentation files (the "Software"), |
|
|
|
|
|
@ -3,7 +3,7 @@ |
|
|
|
""" |
|
|
|
The MIT License (MIT) |
|
|
|
|
|
|
|
Copyright (c) 2015-2020 Rapptz |
|
|
|
Copyright (c) 2015-present Rapptz |
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a |
|
|
|
copy of this software and associated documentation files (the "Software"), |
|
|
|
|
|
@ -3,7 +3,7 @@ |
|
|
|
""" |
|
|
|
The MIT License (MIT) |
|
|
|
|
|
|
|
Copyright (c) 2015-2020 Rapptz |
|
|
|
Copyright (c) 2015-present Rapptz |
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a |
|
|
|
copy of this software and associated documentation files (the "Software"), |
|
|
|
|
|
@ -3,7 +3,7 @@ |
|
|
|
""" |
|
|
|
The MIT License (MIT) |
|
|
|
|
|
|
|
Copyright (c) 2015-2020 Rapptz |
|
|
|
Copyright (c) 2015-present Rapptz |
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a |
|
|
|
copy of this software and associated documentation files (the "Software"), |
|
|
|
|
|
@ -3,7 +3,7 @@ |
|
|
|
""" |
|
|
|
The MIT License (MIT) |
|
|
|
|
|
|
|
Copyright (c) 2015-2020 Rapptz |
|
|
|
Copyright (c) 2015-present Rapptz |
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a |
|
|
|
copy of this software and associated documentation files (the "Software"), |
|
|
|
|
|
@ -3,7 +3,7 @@ |
|
|
|
""" |
|
|
|
The MIT License (MIT) |
|
|
|
|
|
|
|
Copyright (c) 2015-2020 Rapptz |
|
|
|
Copyright (c) 2015-present Rapptz |
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a |
|
|
|
copy of this software and associated documentation files (the "Software"), |
|
|
|
|
|
@ -3,7 +3,7 @@ |
|
|
|
""" |
|
|
|
The MIT License (MIT) |
|
|
|
|
|
|
|
Copyright (c) 2015-2020 Rapptz |
|
|
|
Copyright (c) 2015-present Rapptz |
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a |
|
|
|
copy of this software and associated documentation files (the "Software"), |
|
|
|
|
|
@ -3,7 +3,7 @@ |
|
|
|
""" |
|
|
|
The MIT License (MIT) |
|
|
|
|
|
|
|
Copyright (c) 2015-2020 Rapptz |
|
|
|
Copyright (c) 2015-present Rapptz |
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a |
|
|
|
copy of this software and associated documentation files (the "Software"), |
|
|
|
|
|
@ -3,7 +3,7 @@ |
|
|
|
""" |
|
|
|
The MIT License (MIT) |
|
|
|
|
|
|
|
Copyright (c) 2015-2020 Rapptz |
|
|
|
Copyright (c) 2015-present Rapptz |
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a |
|
|
|
copy of this software and associated documentation files (the "Software"), |
|
|
|
|
|
@ -3,7 +3,7 @@ |
|
|
|
""" |
|
|
|
The MIT License (MIT) |
|
|
|
|
|
|
|
Copyright (c) 2015-2020 Rapptz |
|
|
|
Copyright (c) 2015-present Rapptz |
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a |
|
|
|
copy of this software and associated documentation files (the "Software"), |
|
|
|
|
|
@ -3,7 +3,7 @@ |
|
|
|
""" |
|
|
|
The MIT License (MIT) |
|
|
|
|
|
|
|
Copyright (c) 2015-2020 Rapptz |
|
|
|
Copyright (c) 2015-present Rapptz |
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a |
|
|
|
copy of this software and associated documentation files (the "Software"), |
|
|
@ -938,4 +938,3 @@ class MemberCacheFlags(BaseFlags): |
|
|
|
@property |
|
|
|
def _online_only(self): |
|
|
|
return self.value == 1 |
|
|
|
|
|
|
|
|
|
@ -3,7 +3,7 @@ |
|
|
|
""" |
|
|
|
The MIT License (MIT) |
|
|
|
|
|
|
|
Copyright (c) 2015-2020 Rapptz |
|
|
|
Copyright (c) 2015-present Rapptz |
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a |
|
|
|
copy of this software and associated documentation files (the "Software"), |
|
|
|
|
|
@ -3,7 +3,7 @@ |
|
|
|
""" |
|
|
|
The MIT License (MIT) |
|
|
|
|
|
|
|
Copyright (c) 2015-2020 Rapptz |
|
|
|
Copyright (c) 2015-present Rapptz |
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a |
|
|
|
copy of this software and associated documentation files (the "Software"), |
|
|
|
|
|
@ -3,7 +3,7 @@ |
|
|
|
""" |
|
|
|
The MIT License (MIT) |
|
|
|
|
|
|
|
Copyright (c) 2015-2020 Rapptz |
|
|
|
Copyright (c) 2015-present Rapptz |
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a |
|
|
|
copy of this software and associated documentation files (the "Software"), |
|
|
|
|
|
@ -3,7 +3,7 @@ |
|
|
|
""" |
|
|
|
The MIT License (MIT) |
|
|
|
|
|
|
|
Copyright (c) 2015-2020 Rapptz |
|
|
|
Copyright (c) 2015-present Rapptz |
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a |
|
|
|
copy of this software and associated documentation files (the "Software"), |
|
|
|
|
|
@ -3,7 +3,7 @@ |
|
|
|
""" |
|
|
|
The MIT License (MIT) |
|
|
|
|
|
|
|
Copyright (c) 2015-2020 Rapptz |
|
|
|
Copyright (c) 2015-present Rapptz |
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a |
|
|
|
copy of this software and associated documentation files (the "Software"), |
|
|
|
|
|
@ -3,7 +3,7 @@ |
|
|
|
""" |
|
|
|
The MIT License (MIT) |
|
|
|
|
|
|
|
Copyright (c) 2015-2020 Rapptz |
|
|
|
Copyright (c) 2015-present Rapptz |
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a |
|
|
|
copy of this software and associated documentation files (the "Software"), |
|
|
@ -101,7 +101,7 @@ class _ChunkedAsyncIterator(_AsyncIterator): |
|
|
|
def __init__(self, iterator, max_size): |
|
|
|
self.iterator = iterator |
|
|
|
self.max_size = max_size |
|
|
|
|
|
|
|
|
|
|
|
async def next(self): |
|
|
|
ret = [] |
|
|
|
n = 0 |
|
|
|
|
|
@ -3,7 +3,7 @@ |
|
|
|
""" |
|
|
|
The MIT License (MIT) |
|
|
|
|
|
|
|
Copyright (c) 2015-2020 Rapptz |
|
|
|
Copyright (c) 2015-present Rapptz |
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a |
|
|
|
copy of this software and associated documentation files (the "Software"), |
|
|
|
|
|
@ -3,7 +3,7 @@ |
|
|
|
""" |
|
|
|
The MIT License (MIT) |
|
|
|
|
|
|
|
Copyright (c) 2015-2020 Rapptz |
|
|
|
Copyright (c) 2015-present Rapptz |
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a |
|
|
|
copy of this software and associated documentation files (the "Software"), |
|
|
|
|
|
@ -3,7 +3,7 @@ |
|
|
|
""" |
|
|
|
The MIT License (MIT) |
|
|
|
|
|
|
|
Copyright (c) 2015-2020 Rapptz |
|
|
|
Copyright (c) 2015-present Rapptz |
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a |
|
|
|
copy of this software and associated documentation files (the "Software"), |
|
|
|
|
|
@ -3,7 +3,7 @@ |
|
|
|
""" |
|
|
|
The MIT License (MIT) |
|
|
|
|
|
|
|
Copyright (c) 2015-2020 Rapptz |
|
|
|
Copyright (c) 2015-present Rapptz |
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a |
|
|
|
copy of this software and associated documentation files (the "Software"), |
|
|
|
|
|
@ -3,7 +3,7 @@ |
|
|
|
""" |
|
|
|
The MIT License (MIT) |
|
|
|
|
|
|
|
Copyright (c) 2015-2020 Rapptz |
|
|
|
Copyright (c) 2015-present Rapptz |
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a |
|
|
|
copy of this software and associated documentation files (the "Software"), |
|
|
|
|
|
@ -3,7 +3,7 @@ |
|
|
|
""" |
|
|
|
The MIT License (MIT) |
|
|
|
|
|
|
|
Copyright (c) 2015-2020 Rapptz |
|
|
|
Copyright (c) 2015-present Rapptz |
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a |
|
|
|
copy of this software and associated documentation files (the "Software"), |
|
|
|
|
|
@ -3,7 +3,7 @@ |
|
|
|
""" |
|
|
|
The MIT License (MIT) |
|
|
|
|
|
|
|
Copyright (c) 2015-2020 Rapptz |
|
|
|
Copyright (c) 2015-present Rapptz |
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a |
|
|
|
copy of this software and associated documentation files (the "Software"), |
|
|
@ -374,7 +374,7 @@ class Decoder(_OpusStruct): |
|
|
|
|
|
|
|
def _set_gain(self, adjustment): |
|
|
|
"""Configures decoder gain adjustment. |
|
|
|
|
|
|
|
|
|
|
|
Scales the decoded output by a factor specified in Q8 dB units. |
|
|
|
This has a maximum range of -32768 to 32767 inclusive, and returns |
|
|
|
OPUS_BAD_ARG (-1) otherwise. The default is zero indicating no adjustment. |
|
|
|
|
|
@ -3,7 +3,7 @@ |
|
|
|
""" |
|
|
|
The MIT License (MIT) |
|
|
|
|
|
|
|
Copyright (c) 2015-2020 Rapptz |
|
|
|
Copyright (c) 2015-present Rapptz |
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a |
|
|
|
copy of this software and associated documentation files (the "Software"), |
|
|
|
|
|
@ -3,7 +3,7 @@ |
|
|
|
""" |
|
|
|
The MIT License (MIT) |
|
|
|
|
|
|
|
Copyright (c) 2015-2020 Rapptz |
|
|
|
Copyright (c) 2015-present Rapptz |
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a |
|
|
|
copy of this software and associated documentation files (the "Software"), |
|
|
|
|
|
@ -3,7 +3,7 @@ |
|
|
|
""" |
|
|
|
The MIT License (MIT) |
|
|
|
|
|
|
|
Copyright (c) 2015-2020 Rapptz |
|
|
|
Copyright (c) 2015-present Rapptz |
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a |
|
|
|
copy of this software and associated documentation files (the "Software"), |
|
|
|
|
|
@ -3,7 +3,7 @@ |
|
|
|
""" |
|
|
|
The MIT License (MIT) |
|
|
|
|
|
|
|
Copyright (c) 2015-2020 Rapptz |
|
|
|
Copyright (c) 2015-present Rapptz |
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a |
|
|
|
copy of this software and associated documentation files (the "Software"), |
|
|
|
|
|
@ -3,7 +3,7 @@ |
|
|
|
""" |
|
|
|
The MIT License (MIT) |
|
|
|
|
|
|
|
Copyright (c) 2015-2020 Rapptz |
|
|
|
Copyright (c) 2015-present Rapptz |
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a |
|
|
|
copy of this software and associated documentation files (the "Software"), |
|
|
|
|
|
@ -3,7 +3,7 @@ |
|
|
|
""" |
|
|
|
The MIT License (MIT) |
|
|
|
|
|
|
|
Copyright (c) 2015-2020 Rapptz |
|
|
|
Copyright (c) 2015-present Rapptz |
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a |
|
|
|
copy of this software and associated documentation files (the "Software"), |
|
|
|
|
|
@ -3,7 +3,7 @@ |
|
|
|
""" |
|
|
|
The MIT License (MIT) |
|
|
|
|
|
|
|
Copyright (c) 2015-2020 Rapptz |
|
|
|
Copyright (c) 2015-present Rapptz |
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a |
|
|
|
copy of this software and associated documentation files (the "Software"), |
|
|
|
|
|
@ -3,7 +3,7 @@ |
|
|
|
""" |
|
|
|
The MIT License (MIT) |
|
|
|
|
|
|
|
Copyright (c) 2015-2020 Rapptz |
|
|
|
Copyright (c) 2015-present Rapptz |
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a |
|
|
|
copy of this software and associated documentation files (the "Software"), |
|
|
|
|
|
@ -3,7 +3,7 @@ |
|
|
|
""" |
|
|
|
The MIT License (MIT) |
|
|
|
|
|
|
|
Copyright (c) 2015-2020 Rapptz |
|
|
|
Copyright (c) 2015-present Rapptz |
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a |
|
|
|
copy of this software and associated documentation files (the "Software"), |
|
|
|
|
|
@ -3,7 +3,7 @@ |
|
|
|
""" |
|
|
|
The MIT License (MIT) |
|
|
|
|
|
|
|
Copyright (c) 2015-2020 Rapptz |
|
|
|
Copyright (c) 2015-present Rapptz |
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a |
|
|
|
copy of this software and associated documentation files (the "Software"), |
|
|
|
|
|
@ -3,7 +3,7 @@ |
|
|
|
""" |
|
|
|
The MIT License (MIT) |
|
|
|
|
|
|
|
Copyright (c) 2015-2020 Rapptz |
|
|
|
Copyright (c) 2015-present Rapptz |
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a |
|
|
|
copy of this software and associated documentation files (the "Software"), |
|
|
|
|
|
@ -3,7 +3,7 @@ |
|
|
|
""" |
|
|
|
The MIT License (MIT) |
|
|
|
|
|
|
|
Copyright (c) 2015-2020 Rapptz |
|
|
|
Copyright (c) 2015-present Rapptz |
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a |
|
|
|
copy of this software and associated documentation files (the "Software"), |
|
|
|
|
|
@ -3,7 +3,7 @@ |
|
|
|
""" |
|
|
|
The MIT License (MIT) |
|
|
|
|
|
|
|
Copyright (c) 2015-2020 Rapptz |
|
|
|
Copyright (c) 2015-present Rapptz |
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a |
|
|
|
copy of this software and associated documentation files (the "Software"), |
|
|
|
|
|
@ -3,7 +3,7 @@ |
|
|
|
""" |
|
|
|
The MIT License (MIT) |
|
|
|
|
|
|
|
Copyright (c) 2015-2020 Rapptz |
|
|
|
Copyright (c) 2015-present Rapptz |
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a |
|
|
|
copy of this software and associated documentation files (the "Software"), |
|
|
|
|
|
@ -3,7 +3,7 @@ |
|
|
|
""" |
|
|
|
The MIT License (MIT) |
|
|
|
|
|
|
|
Copyright (c) 2015-2020 Rapptz |
|
|
|
Copyright (c) 2015-present Rapptz |
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a |
|
|
|
copy of this software and associated documentation files (the "Software"), |
|
|
|
|
|
@ -3,7 +3,7 @@ |
|
|
|
""" |
|
|
|
The MIT License (MIT) |
|
|
|
|
|
|
|
Copyright (c) 2015-2020 Rapptz |
|
|
|
Copyright (c) 2015-present Rapptz |
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a |
|
|
|
copy of this software and associated documentation files (the "Software"), |
|
|
|
|
|
@ -3,7 +3,7 @@ |
|
|
|
""" |
|
|
|
The MIT License (MIT) |
|
|
|
|
|
|
|
Copyright (c) 2015-2020 Rapptz |
|
|
|
Copyright (c) 2015-present Rapptz |
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a |
|
|
|
copy of this software and associated documentation files (the "Software"), |
|
|
|
|
|
@ -77,7 +77,7 @@ master_doc = 'index' |
|
|
|
|
|
|
|
# General information about the project. |
|
|
|
project = u'discord.py' |
|
|
|
copyright = u'2015-2021, Rapptz' |
|
|
|
copyright = u'2015-present, Rapptz' |
|
|
|
|
|
|
|
# The version info for the project you're documenting, acts as replacement for |
|
|
|
# |version| and |release|, also used in various other places throughout the |
|
|
|
|
|
@ -1,5 +1,5 @@ |
|
|
|
# SOME DESCRIPTIVE TITLE. |
|
|
|
# Copyright (C) 2015-2020, Rapptz |
|
|
|
# Copyright (C) 2015-present, Rapptz |
|
|
|
# This file is distributed under the same license as the discord.py package. |
|
|
|
# FIRST AUTHOR <EMAIL@ADDRESS>, 2020. |
|
|
|
# |
|
|
@ -427,4 +427,3 @@ msgid "" |
|
|
|
"If you truly dislike the direction Discord is going with their API, you " |
|
|
|
"can contact them via `support <https://dis.gd/contact>`_" |
|
|
|
msgstr "" |
|
|
|
|
|
|
|