undo/comment out async catbox library
This commit is contained in:
parent
d649de8fb8
commit
321b2f5d39
5 changed files with 4 additions and 11 deletions
3
.gitmodules
vendored
3
.gitmodules
vendored
|
|
@ -1,3 +0,0 @@
|
||||||
[submodule "catbox_async_uploader"]
|
|
||||||
path = catbox_async_uploader
|
|
||||||
url = https://github.com/IlkoChw/catbox_async_uploader
|
|
||||||
6
bot.py
6
bot.py
|
|
@ -6,11 +6,11 @@ import pylast
|
||||||
import aiosqlite
|
import aiosqlite
|
||||||
|
|
||||||
from lastfmcollagegenerator.collage_generator import CollageGenerator
|
from lastfmcollagegenerator.collage_generator import CollageGenerator
|
||||||
from catbox_async_uploader.catbox_async_uploader.core import CatboxAsyncUploader
|
# from catbox_async_uploader.catbox_async_uploader.core import CatboxAsyncUploader
|
||||||
|
|
||||||
class Bot(nerimity.Client):
|
class Bot(nerimity.Client):
|
||||||
"""Extended client class for extra functionality."""
|
"""Extended client class for extra functionality."""
|
||||||
def __init__(self, lastfm_api_key: str, lastfm_api_secret: str, catbox_hash: str,
|
def __init__(self, lastfm_api_key: str, lastfm_api_secret: str,
|
||||||
owner_id: int = None, db_file: str = "database.db",
|
owner_id: int = None, db_file: str = "database.db",
|
||||||
*args, **kwargs):
|
*args, **kwargs):
|
||||||
super().__init__(*args, **kwargs)
|
super().__init__(*args, **kwargs)
|
||||||
|
|
@ -30,7 +30,7 @@ class Bot(nerimity.Client):
|
||||||
)
|
)
|
||||||
|
|
||||||
# initialize catbox client
|
# initialize catbox client
|
||||||
self.catbox_uploader = CatboxAsyncUploader(userhash=catbox_hash)
|
# self.catbox_uploader = CatboxAsyncUploader(userhash=catbox_hash)
|
||||||
|
|
||||||
# database
|
# database
|
||||||
self.db = None
|
self.db = None
|
||||||
|
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
Subproject commit 7c9e9a9efc833a7f4f7a9641bd81f7ea4881396a
|
|
||||||
|
|
@ -2,5 +2,3 @@ token = "NerimityTokenHere"
|
||||||
owner_id = 1234567890
|
owner_id = 1234567890
|
||||||
api_key = "LastFmApiKeyHere"
|
api_key = "LastFmApiKeyHere"
|
||||||
api_secret = "LastFmApiSecretHere"
|
api_secret = "LastFmApiSecretHere"
|
||||||
|
|
||||||
catbox_hash = "CatboxUserHashHere"
|
|
||||||
|
|
|
||||||
3
main.py
3
main.py
|
|
@ -11,8 +11,7 @@ bot = bot.Bot(
|
||||||
token = config['token'],
|
token = config['token'],
|
||||||
owner_id = config['owner_id'],
|
owner_id = config['owner_id'],
|
||||||
lastfm_api_key = config['api_key'],
|
lastfm_api_key = config['api_key'],
|
||||||
lastfm_api_secret = config['api_secret'],
|
lastfm_api_secret = config['api_secret']
|
||||||
catbox_hash = config['catbox_hash']
|
|
||||||
)
|
)
|
||||||
|
|
||||||
bot.load_commands("commands")
|
bot.load_commands("commands")
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue