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
|
#! /usr/bin/python
from singlet.lens import SingleScopeLens, IconViewCategory, ListViewCategory
from singlet.utils import run_lens
class TestLens(SingleScopeLens):
class Meta:
name = 'test'
search_on_blank = True
cat1 = IconViewCategory("Cat One", "stock_yet")
cat2 = ListViewCategory("Cat Two", "hint")
def search(self, phrase, results):
results.append('http://google.com/search?q=%s' % phrase,
'file',
self.cat1,
"text/html",
phrase, phrase, '')
results.append('http://google.com/search?q=%s' % phrase,
'file',
self.cat2,
"text/html",
phrase, phrase, '')
if __name__ == "__main__":
import sys
run_lens(TestLens, sys.argv)
|