This repository was archived by the owner on Apr 9, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathcalc.py
49 lines (38 loc) · 1.65 KB
/
calc.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
import hashlib
from util.hook import *
from util import web
calc_uri = 'http://api.duckduckgo.com'
@hook(cmds=['c', 'calc', 'calculate'], ex='calc 5 + 3', args=True)
def calc(code, input):
try:
data = web.json(calc_uri, params={"q": input.group(2).replace('^', '**'), "format": "json"})
if data['AnswerType'] != 'calc':
return code.reply('Failed to calculate')
answer = web.striptags(data['Answer'])
return code.say(answer)
except:
return code.reply('Failed to calculate!')
@hook(cmds=['py', 'python'], ex='py print(int(1.0) + int(3))', args=True)
def py(code, input):
"""python <commands> -- Execute Python inside of a sandbox"""
query = input.group(2)
try:
answer = web.exec_py(query)
if answer:
answer = answer.replace('\n', ' ').replace('\t', ' ').replace('\r', '')
return code.reply(answer)
return code.reply('{red}The server did not return an answer.')
except:
return code.reply('{red}The server did not return an answer.')
@hook(cmds=['md5', 'hash'], priority='low', args=True)
def md5(code, input):
"""md5 <string> -- Create a md5 hash of the input string"""
return code.say(hashlib.md5(input.group(2)).hexdigest())
@hook(cmds=['sha256'], priority='low', args=True)
def sha256(code, input):
"""sha256 <string> -- Create a sha256 hash of the input string"""
return code.say(hashlib.sha256(input.group(2)).hexdigest())
@hook(cmds=['sha512'], priority='low', args=True)
def sha512(code, input):
"""sha512 <string> -- Create a sha512 hash of the input string"""
return code.say(hashlib.sha512(input.group(2)).hexdigest())