A privacy-respecting, ad-free, self-hosted Google metasearch engine with strong security that offers full API support and utilizes Qwant for images, and DuckDuckGo for auto-complete.
If you add the !dg bang to a query, you get a 500 error. This is because the string associated with this bang in bangs.json has multiple {} strings in it. In the init.py file, only one arg is provided, when this string expects 2.
To fix this, I've replaced all the {} strings with {q}. This makes it so that the .format function replaces all instances, not just the first one.
If you add the
!dg
bang to a query, you get a 500 error. This is because the string associated with this bang in bangs.json has multiple{}
strings in it. In the init.py file, only one arg is provided, when this string expects 2. To fix this, I've replaced all the{}
strings with{q}
. This makes it so that the .format function replaces all instances, not just the first one.