mirror of
https://github.com/polyjitter/searchbot-discord.git
synced 2024-08-14 22:46:55 +00:00
added command for urban disctionary
This commit is contained in:
parent
5e6996e663
commit
e70b469aa2
1 changed files with 43 additions and 2 deletions
|
@ -9,6 +9,7 @@ import discord
|
||||||
from discord.ext import commands
|
from discord.ext import commands
|
||||||
import aiohttp
|
import aiohttp
|
||||||
import random
|
import random
|
||||||
|
from urllib import parse
|
||||||
import sys
|
import sys
|
||||||
from typing import List
|
from typing import List
|
||||||
|
|
||||||
|
@ -277,6 +278,46 @@ class Search(commands.Cog):
|
||||||
)
|
)
|
||||||
await ctx.send(msg)
|
await ctx.send(msg)
|
||||||
|
|
||||||
|
@commands.command(aliases=['urban', 'ud'])
|
||||||
|
async def urbandictionary(self, ctx, *, query: str):
|
||||||
|
"""Pull data from Urban Dictionary."""
|
||||||
|
|
||||||
|
# Handling
|
||||||
|
async with ctx.typing():
|
||||||
|
number = 1
|
||||||
|
if " | " in query:
|
||||||
|
query, number = query.rsplit(" | ", 1)
|
||||||
|
search = parse.quote(query)
|
||||||
|
async with aiohttp.ClientSession() as session:
|
||||||
|
async with session.get(f"http://api.urbandictionary.com/v0/define?term={search}") as resp:
|
||||||
|
resp = await resp.json()
|
||||||
|
if not resp["list"]:
|
||||||
|
await ctx.send(f"`{query}`` couldn't be found on Urban Dictionary.")
|
||||||
|
else:
|
||||||
|
try:
|
||||||
|
top_result = resp["list"][int(number) - 1]
|
||||||
|
embed = discord.Embed(title=top_result["word"], description=top_result["definition"],
|
||||||
|
url=top_result["permalink"], color=ctx.author.color)
|
||||||
|
if top_result["example"]:
|
||||||
|
embed.add_field(name="Example:",
|
||||||
|
value=top_result["example"], inline=False)
|
||||||
|
embed.add_field(name="👍", value = top_result["thumbs_up"])
|
||||||
|
embed.add_field(name="👎", value = top_result["thumbs_down"])
|
||||||
|
|
||||||
|
|
||||||
|
embed.set_author(name=top_result["author"],
|
||||||
|
icon_url="https://apprecs.org/gp/images/app-icons/300/2f/info.tuohuang.urbandict.jpg")
|
||||||
|
number = str(int(number) + 1)
|
||||||
|
embed.set_footer(text=str(len(
|
||||||
|
resp["list"])) + f" results were found. To see a different result, use {ctx.prefix}ud {query} | {number}.")
|
||||||
|
try:
|
||||||
|
await ctx.send("", embed=embed)
|
||||||
|
|
||||||
|
except Exception as e:
|
||||||
|
await ctx.send(top_result["definition"])
|
||||||
|
except Exception as e:
|
||||||
|
print(e)
|
||||||
|
|
||||||
@commands.command()
|
@commands.command()
|
||||||
async def anime(self, ctx, *, query: str):
|
async def anime(self, ctx, *, query: str):
|
||||||
"""Lookup anime information online, uses the https://kitsu.io/ public API."""
|
"""Lookup anime information online, uses the https://kitsu.io/ public API."""
|
||||||
|
|
Loading…
Reference in a new issue