[YouTube] Initial commit

This commit is contained in:
aikaterna
2019-07-24 14:37:01 -07:00
parent e8e58ce9e3
commit 1d0b23c03f
4 changed files with 66 additions and 1 deletions

5
youtube/__init__.py Normal file
View File

@@ -0,0 +1,5 @@
from .youtube import YouTube
def setup(bot):
bot.add_cog(YouTube(bot))

12
youtube/info.json Normal file
View File

@@ -0,0 +1,12 @@
{
"author": [
"aikaterna"
],
"description": "Search youtube for videos, originally by Paddo. This version also includes a ytsearch command to look through multiple results.",
"install_msg": "Thanks for installing, have fun.",
"short": "Search youtube for videos.",
"tags": [
"youtube"
],
"type": "COG"
}

46
youtube/youtube.py Normal file
View File

@@ -0,0 +1,46 @@
import aiohttp
import re
from redbot.core import commands
from redbot.core.utils.menus import menu, DEFAULT_CONTROLS
class YouTube(commands.Cog):
"""Search YouTube for videos."""
def __init__(self, bot):
self.bot = bot
self.session = aiohttp.ClientSession()
async def _youtube_results(self, query: str):
try:
search_url = "https://www.youtube.com/results?"
payload = {"search_query": "".join(query)}
headers = {"user-agent": "Red-cog/3.0"}
async with self.session.get(search_url, params=payload, headers=headers) as r:
result = await r.text()
yt_find = re.findall(r"href=\"\/watch\?v=(.{11})", result)
url_list = []
for track in yt_find:
url = f"https://www.youtube.com/watch?v={track}"
url_list.append(url)
except Exception as e:
url_list = [f"Something went terribly wrong! [{e}]"]
return list(set(url_list))
@commands.command()
async def youtube(self, ctx, *, query: str):
"""Search on Youtube."""
result = await self._youtube_results(query)
await ctx.send(result[0])
@commands.command()
async def ytsearch(self, ctx, *, query: str):
"""Search on Youtube, multiple results."""
result = await self._youtube_results(query)
await menu(ctx, result, DEFAULT_CONTROLS)
def cog_unload(self):
self.bot.loop.create_task(self.session.close())