Playlists/plugin.py

28 lines
636 B
Python

###
# Copyright (c) 2022, Pratyush Desai
# All rights reserved.
#
#
###
from supybot import utils, plugins, ircutils, callbacks
from supybot.commands import *
try:
from supybot.i18n import PluginInternationalization
_ = PluginInternationalization('Playlists')
except ImportError:
# Placeholder that allows to run the plugin on a bot
# without the i18n module
_ = lambda x: x
class Playlists(callbacks.Plugin):
"""Provides the ability for a user to save media links as a playlist with custom categories."""
threaded = True
Class = Playlists
# vim:set shiftwidth=4 softtabstop=4 expandtab textwidth=79: