forked from jackyang127/jack_bunny
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jack_bunny.py
127 lines (111 loc) · 3.82 KB
/
jack_bunny.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
from flask import request, Flask, render_template, redirect
import wikipedia
app = Flask(__name__)
class Commands(object):
def fb(arg=None):
"""'fb [insert query]' searching on facebook. defaults on fb homepage"""
if arg:
return 'http://www.facebook.com/s.php?q={0}&init=q'.format(arg)
else:
return 'http://www.facebook.com'
def g(arg=None):
"""'g [insert query]' searching google"""
if arg:
return 'http://www.google.com/search?q={0}'.format(arg)
else:
return 'http://www.google.com'
def gm(arg=None):
"""'gm [insert number from 0-n where n = number of gmail accounts - 1] opens up gmail. If no argument specificed, opens up the first account. Can open up alternative accounts with arguments"""
if arg:
return 'https://mail.google.com/mail/u/{0}/#inbox'.format(arg)
else:
return 'https://mail.google.com/mail/u/0/#inbox'
def tiny(arg=None):
"""'tiny [insert query]' Uses tinyurl to generate the shortened url"""
print(arg)
if arg:
return 'http://tinyurl.com/api-create.php?url={0}'.format(arg)
else:
return 'http://tinyurl.com'
def w(arg=None):
"""'w [insert query]' searches wikipedia, defaults on english wikipedia page"""
try:
if arg:
# access the wikipedia api, first look for suggestions, then get
# the page
suggestion = wikipedia.search(arg, results=1, suggestion=True)
if len(suggestion[0]) > 0:
page = wikipedia.page(suggestion[0][0])
else:
page = wikipedia.page(arg)
return page.url
else:
return 'https://en.wikipedia.org/wiki/Main_Page'
except:
return 'https://en.wikipedia.org/wiki/Main_Page'
def cpp(arg=None):
"""'cpp [insert query]' searches for syntactical cpp terms on cppreference.com"""
if arg:
return 'http://en.cppreference.com/mwiki/index.php?title=Special%3ASearch&search={0}'.format(arg)
else:
return 'http://en.cppreference.com/w/'
def p(arg=None):
"""'p [insert class number]' make a piazza search, kinda personalized just for jack lol"""
# should update to use piazza api for more generalized case
mapping = {
'189': 'j2ji31rkkl2og',
'168': 'j628emf1ted4r2',
'101': 'hyq0br1u3kx7dg'
}
if arg in mapping.keys():
return 'https://piazza.com/class/{0}'.format(mapping[arg])
else:
return 'https://piazza.com'
def yt(arg=None):
"""'yt [insert query]' make a youtube search. If not query is passed in, defaults to the youtube homepage"""
if arg:
return 'http://www.youtube.com/results?search_query={0}&search_type=&aq=-1&oq='.format(arg)
else:
return 'http://www.youtube.com'
def d(arg=None):
"""'d [insert query]' make a google definition search. If not query is passed in, defaults to dictionary.com"""
if arg:
return 'https://www.google.com/search?q=define%3A+{0}'.format(arg)
else:
return 'http://www.dictionary.com/'
def help(arg=None):
"""'help' returns a list of usable commands """
help_list = []
for values in Commands.__dict__.values():
if callable(values):
help_list.append(values.__doc__)
return help_list
@app.route('/')
def index():
return render_template('home.html')
@app.route('/q/')
def route():
#process the query
try:
query = str(request.args.get('query', ''))
tokenized_query = query.split(' ', 1)
search_command = tokenized_query[0].lower()
option_args = None
if len(tokenized_query) == 2:
option_args = tokenized_query[1]
except Exception as e:
print(e)
search_command = query
option_args = None
try:
command = getattr(Commands, search_command)
if search_command == 'help':
return render_template('help.html', command_list = command(None))
url = command(option_args)
return redirect(url)
except Exception as e:
# fallback option is to google search
print(e)
return redirect(Commands.g(query))
if __name__ == '__main__':
app.run()