Merge branch 'rsteube-master'

This commit is contained in:
Florian Bruhin 2017-02-04 18:54:56 +01:00
commit b9ddea0e7a
3 changed files with 29 additions and 1 deletions

View File

@ -21,6 +21,7 @@ Added
-----
- Userscripts now have a new `$QUTE_COMMANDLINE_TEXT` environment variable, containing the current commandline contents.
- New `ripbang` userscript to create a searchengine from a duckduckgo bang
Changed
~~~~~~~

View File

@ -213,6 +213,7 @@ Contributors, sorted by the number of commits in descending order:
* Brian Jackson
* thuck
* sbinix
* rsteube
* neeasade
* jnphilipp
* Tobias Patzl
@ -239,7 +240,6 @@ Contributors, sorted by the number of commits in descending order:
* Eric Drechsel
* zwarag
* xd1le
* rsteube
* rmortens
* pkill9
* oniondreams

27
misc/userscripts/ripbang Executable file
View File

@ -0,0 +1,27 @@
#!/usr/bin/env python2
#
# Adds DuckDuckGo bang as searchengine.
#
# Usage:
# :spawn --userscript ripbang [bang]...
#
# Example:
# :spawn --userscript ripbang amazon maps
#
import os, re, requests, sys, urllib
for argument in sys.argv[1:]:
bang = '!' + argument
r = requests.get('https://duckduckgo.com/',
params={'q': bang + ' SEARCHTEXT'})
searchengine = urllib.unquote(re.search("url=[^']+", r.text).group(0))
searchengine = searchengine.replace('url=', '')
searchengine = searchengine.replace('/l/?kh=-1&uddg=', '')
searchengine = searchengine.replace('SEARCHTEXT', '{}')
if os.getenv('QUTE_FIFO'):
with open(os.environ['QUTE_FIFO'], 'w') as fifo:
fifo.write('set searchengines %s %s' % (bang, searchengine))
else:
print '%s %s' % (bang, searchengine)