add public redirect to things that need it
This commit is contained in:
parent
ebb1906af4
commit
f267ba214f
1 changed files with 29 additions and 4 deletions
|
@ -12,15 +12,40 @@ client = commands.Bot(command_prefix='.')
|
||||||
|
|
||||||
|
|
||||||
@client.command()
|
@client.command()
|
||||||
async def save(ctx):
|
async def addcharacter(ctx):
|
||||||
await ctx.message.attachments[0].save("newcharacter.zip")
|
await ctx.message.attachments[0].save("newcharacter.zip")
|
||||||
|
|
||||||
await ctx.send("adding to database please wait")
|
await ctx.send("adding to database please wait")
|
||||||
zf = ZipFile('newcharacter.zip', 'r')
|
zf = ZipFile('newcharacter.zip', 'r')
|
||||||
zf.extractall('a')
|
zf.extractall('public/singlecharacter')
|
||||||
zf.extractall('b')
|
|
||||||
zf.close()
|
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")
|
await ctx.send("added to database")
|
||||||
|
|
||||||
client.run('botid')
|
client.run('botid')
|
||||||
|
|
Reference in a new issue