-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinsult.py
52 lines (44 loc) · 1.61 KB
/
insult.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#!/usr/bin/env python
#
# Name: insult.py
# Author: Syini666, ekim
# Date: November 2016
# Summary: shakesperian insult generator
#
import config
from sopel import module, tools
import random
from sqlalchemy import (create_engine, Table, Column, Text, Integer, String, MetaData, ForeignKey, exc)
from sqlalchemy import sql
engine = create_engine("mysql+pymysql://krok:kr0kl4bs@localhost/krokbot?host=localhost?port=3306")
engine = create_engine(config.sql_connection_string, pool_recycle = 14400)
metadata = MetaData()
insults = Table("insults", metadata, autoload = True, autoload_with = engine)
@module.commands('insult')
def getInsult(bot, trigger):
'''Constructs a random shakesperian insult from the MySQL database
Usage: !insult <whoever>
'''
randint = 0
target = trigger.group(2)
if not target:
target = trigger.nick
target = target.strip()
insult = target + ", thou "
random.seed()
conn = engine.connect()
# returning random results from MySQL is horribly inefficient. count the rows and do the randomization with python
for position in {1,2,3}:
# Count the rows
query = sql.select([sql.func.count()]).select_from(insults).where(insults.c.place == str(position))
items = conn.execute(query)
item = items.fetchone()
# Select a random insult from each section
randint = random.randint(1,int(item[0]-1))
query = sql.select([insults.c.insult]).where(insults.c.place == str(position)).limit(1).offset(randint)
result = conn.execute(query)
item = result.fetchone()
insult = insult + str(item[0])
if not position == 3: insult = insult + ", "
insult = insult + "!"
bot.msg(trigger.sender, insult)