Inspired by a firefox extension that does this and more, I tried to create a script that would search for images for a word across various platforms. Here's a code snippet:
import webbrowser
query = input("What do you want to search for? ")
# Some error handling here
webbrowser.open("https://duckduckgo.com/?q=" + query + "&ia=images", new=2, autoraise=True)
# Other platforms here
Built With
- image-search
- python
Log in or sign up for Devpost to join the conversation.