contrepeterie

This commit is contained in:
Admin 2020-04-24 17:55:48 +02:00
parent 98b6f66a90
commit a4a85e929f

View file

@ -160,11 +160,10 @@ class Mybot(commands.Cog):
await ctx.channel.send("#" + str(issue['id']) + ": " + issue['title'] + '\n' + issue['web_url']) await ctx.channel.send("#" + str(issue['id']) + ": " + issue['title'] + '\n' + issue['web_url'])
elif args[0] == 'add': elif args[0] == 'add':
title = ' '.join(args[1:]) title = ' '.join(args[1:])
author = title + ' - By ' + ctx.message.author.name
projects = gl.projects.list() projects = gl.projects.list()
for project in projects: for project in projects:
if "Kabot" == project.name: if "Kabot" == project.name:
issue = project.issues.create({'title': author}) issue = project.issues.create({'title': title})
await ctx.channel.send(issue.web_url) await ctx.channel.send(issue.web_url)
else: else:
await ctx.channel.send('unknown command') await ctx.channel.send('unknown command')
@ -198,6 +197,19 @@ class Mybot(commands.Cog):
response = "Unknow error, try: !kaamelott [livre] [character]" response = "Unknow error, try: !kaamelott [livre] [character]"
await ctx.send(response) await ctx.send(response)
@commands.command(help="optionnal args : ")
async def contrepeterie(self, ctx, *args):
response = None
path = '/home/mika/kabot/kabot/kabot/ressources/contrepeteries.txt'
lines = open(path).read().splitlines()
myline =random.choice(lines)
try:
response = "%s" % (myline)
except:
response = "Unknow error, try: !contrepeterie [mot clef]"
await ctx.send(response)
@commands.command(help="Je menotte une cornemuse et je fume Eddy Malou") @commands.command(help="Je menotte une cornemuse et je fume Eddy Malou")
async def kamoulox(self, ctx): async def kamoulox(self, ctx):
sans_verbe = get_word('nom').text + " " + get_word('complement').get('m') + " et " + get_word('nom').text + " " + get_word('complement').get('m') + "." sans_verbe = get_word('nom').text + " " + get_word('complement').get('m') + " et " + get_word('nom').text + " " + get_word('complement').get('m') + "."