This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import discord | |
import json | |
import aiohttp | |
import asyncio | |
client = discord.Client() | |
user = 'CLEVERBOT.IO API USER' | |
key = 'CLEVERBOT.IO API KEY' | |
client.session = aiohttp.ClientSession() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import discord | |
from discord.ext import commands | |
import aiohttp | |
from PIL import Image | |
import io | |
import asyncio | |
from itertools import zip_longest | |
from pathlib import Path | |
import os |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import discord | |
from discord.ext import commands | |
import aiohttp | |
from PIL import Image | |
import io | |
import asyncio | |
from itertools import zip_longest | |
async def build_avatar_cache(self): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import discord | |
from discord.ext import commands | |
class QuickPoll: | |
"""""" | |
def __init__(self, bot): | |
self.bot = bot |
NewerOlder