Python 3.7+ is required
# MacOS / Linux (via Terminal)
python3 -m pip install -U searchor
# Windows (via CMD Prompt)
py -3 -m pip install -U searchor
>>> from searchor import Engine
>>> Engine.Google.search("Hello, World!")
'https://www.google.com/search?q=Hello%2C%20World%21'
$ searchor Google "Hello World!" --copy
Take a look at more examples in the examples folder!
Note: Engine names follow the UpperCamelCase convention.(eg: ChromeWebStore).
- [PATCHED] Patched a bug with Amazon Web Services, Altassian, and Amazon being duplicates.
Instead of different functions for each engine, Searchor v2.2.0
uses a single function with an Engine
enum. This makes it easier to use and maintain. If you're migrating from v2.0.0
, compare the differences between the following snippets:
# Searchor 2.0.0
from searchor import search, Engine
search("Hello, World!", Engine.Google)
# Searchor v2.2.0
from searchor import Engine
Engine.Google.search("Hello, World!")
Take a look at the contributing guidelines!