This commit is contained in:
ionburger 2022-11-08 14:39:10 -07:00
parent 67494b82b8
commit f3ccad70cf
3 changed files with 94 additions and 89 deletions

View File

@ -1,5 +1,6 @@
#imports
import version
import main
import sys
import os
import configparser
@ -32,3 +33,7 @@ if config["config"]["autoupdate"] == "true":
os.execl(sys.executable, sys.executable, *sys.argv)
else:
print("running latest version of turdbot",versionl)
else:
print("autoupdate disabled")
main.run()

View File

@ -9,15 +9,17 @@ import datetime
import datetime
import shelve
import backports.zoneinfo as zoneinfo
from py.storage import config
from storage import config
import version
from discord import app_commands
from discord.ext import tasks, commands
def run():
quotetime = datetime.time(hour=12, tzinfo=zoneinfo.ZoneInfo("MST"))
avgtimelst = []
token = open("py/TOKEN", "r").read()
token = open("TOKEN", "r").read()
intents = discord.Intents.all()
bot = commands.Bot(intents=intents, command_prefix=".")
@ -25,12 +27,12 @@ bot = commands.Bot(intents=intents, command_prefix=".")
# on ready
@bot.event
async def on_ready():
print('We have logged in as {0.user}'.format(bot))
print('logged in as {0.user}'.format(bot))
print("discord.py version",discord.__version__)
print("turdbot version",version.local())
if not dailyquote.is_running():
dailyquote.start()
print(bot.tree)
print("discord.py version")
print(discord.__version__)
@bot.hybrid_command(name="eee", with_app_command=True)

View File

@ -15,7 +15,7 @@ def config(value,db="config",serverid=server,mode="r"):
}
data = shelve.open("bot.shlf",writeback=True)
with shelve.open("bot.shlf",writeback=True) as data:
if mode == "r":
try:
return data[db][serverid][value]
@ -26,5 +26,3 @@ def config(value,db="config",serverid=server,mode="r"):
return("success")
else:
print("error")
data.close()