iterate epg database
This commit is contained in:
parent
f02c4bd93c
commit
049c2cb0db
1 changed files with 18 additions and 11 deletions
|
@ -41,26 +41,33 @@ async def epg(ctx):
|
||||||
if requests.get(db_url).status_code == 200:
|
if requests.get(db_url).status_code == 200:
|
||||||
response = requests.get(db_url)
|
response = requests.get(db_url)
|
||||||
response.raise_for_status()
|
response.raise_for_status()
|
||||||
|
|
||||||
content = response.text
|
content = response.text
|
||||||
await ctx.channel.send(content)
|
|
||||||
|
if content != {}:
|
||||||
|
for item in content:
|
||||||
|
if item['start_at'] == 'now' or item['start_at'] == 'never':
|
||||||
|
continue
|
||||||
|
else:
|
||||||
|
await ctx.channel.send(item['start_at'])
|
||||||
|
else:
|
||||||
|
await ctx.channel.send('Empty database!')
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
print(e)
|
print(e)
|
||||||
|
|
||||||
@bot.command(name='start_task')
|
@bot.command(name='start_task')
|
||||||
async def start_task(ctx):
|
async def start_task(ctx):
|
||||||
# Schedule a task to run every 5 seconds
|
# Schedule a task to run every 5 seconds
|
||||||
scheduler.add_job(func=my_task, seconds=5, id='my_task_id', args=(ctx))
|
scheduler.add_job(func=my_task, id='my_task_id')
|
||||||
#scheduler.add_job(func=tick, seconds=5, id='tick_id', args=(ctx))
|
#scheduler.add_job(func=tick, id='tick_id', args=(ctx))
|
||||||
|
|
||||||
async def my_task(ctx):
|
|
||||||
# Your asynchronous task goes here
|
|
||||||
print()
|
|
||||||
await ctx.channel.send('Running my_task')
|
|
||||||
|
|
||||||
@tasks.loop(seconds=10)
|
@tasks.loop(seconds=10)
|
||||||
async def tick(ctx):
|
async def my_task():
|
||||||
await ctx.channel.send('Tick! The time is: %s' % datetime.now())
|
# Your asynchronous task goes here
|
||||||
|
print()
|
||||||
|
await bot.channel.send('Running my_task')
|
||||||
|
|
||||||
|
async def tick():
|
||||||
|
await bot.channel.send('Tick! The time is: %s' % datetime.now())
|
||||||
|
|
||||||
# Run the bot with your token
|
# Run the bot with your token
|
||||||
bot.run(bot_token)
|
bot.run(bot_token)
|
||||||
|
|
Loading…
Reference in a new issue