add public redirect to things that need it

This commit is contained in:
insert-usernamehere 2021-01-25 16:59:04 -05:00 committed by GitHub
parent ebb1906af4
commit f267ba214f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -12,15 +12,40 @@ client = commands.Bot(command_prefix='.')
@client.command()
async def save(ctx):
async def addcharacter(ctx):
await ctx.message.attachments[0].save("newcharacter.zip")
await ctx.send("adding to database please wait")
zf = ZipFile('newcharacter.zip', 'r')
zf.extractall('a')
zf.extractall('b')
zf.extractall('public/singlecharacter')
zf.close()
shutil.make_archive('a/test', 'zip', 'a')
if os.path.exists("newcharacter.zip"):
os.remove("newcharacter.zip")
else:
pass
if os.path.exists("public/characters.zip"):
os.remove("public/characters.zip")
else:
pass
shutil.make_archive('public/characters', 'zip', 'public/singlecharacter')
await ctx.send("added to database")
async def addsound(ctx):
await ctx.message.attachments[0].save("newsound.zip")
await ctx.send("adding to database please wait")
zf = ZipFile('newsound.zip', 'r')
zf.extractall('public/singlesound')
zf.close()
if os.path.exists("newsound.zip"):
os.remove("newsound.zip")
else:
pass
if os.path.exists("public/sounds.zip"):
os.remove("public/sounds.zip")
else:
pass
shutil.make_archive('public/sounds', 'zip', 'public/singlesound')
await ctx.send("added to database")
client.run('botid')