16 lines
925 B
Python
16 lines
925 B
Python
|
SEARCH_ENGINES = {
|
||
|
'Google': ('DEFAULT','https://google.com/?q={}'),
|
||
|
'Arch Packages': ('pac', 'https://www.archlinux.org/packages/?q={}'),
|
||
|
'ArchWiki': ('aw', 'https://wiki.archlinux.org/index.php?title=Special:Search&search={}'),
|
||
|
'AUR': ('aur', 'https://aur.archlinux.org/packages/?O=0&K={}'),
|
||
|
'Hoogle': ('hg', 'https://hoogle.haskell.org/?hoogle={}'),
|
||
|
'Pixabay': ('pxb', 'https://pixabay.com/images/search/{}/'),
|
||
|
'RomajiDesu': ('rd', 'http://www.romajidesu.com/dictionary/meaning-of-{}.html'),
|
||
|
'Translate': ('tr', 'http://translate.google.com/?#auto|auto|{}'),
|
||
|
'Unicode Character Table': ('ut', 'http://unicode-table.com/en/search/?q={}&p'),
|
||
|
'YouTube': ('yt', 'https://www.youtube.com/results?search_query={}'),
|
||
|
'Wolfram Alpha': ('wa', 'https://www.wolframalpha.com/input/?i={}'),
|
||
|
'辞書': ('js', 'https://jisho.org/search/{}'),
|
||
|
'辞書漢字': ('kan', 'https://jisho.org/search/%23kanji%20{}')
|
||
|
}
|