⚡️ Quick and easy search engine queries.
Project description
Searchor
Installation
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
Quick Start
>>> from searchor import Engine
>>> Engine.Google.search("Hello, World!"))
'https://www.google.com/search?q=Hello%2C%20World%21'
Custom Engine
>>> from searchor import Engine
>>> Engine.new("Colgate", "https://www.colgate.com/en-us/search/all?term=")
>>> Engine.Colgate.search("Hi world!", copy_url=True)
'https://www.colgate.com/en-us/search/all?term=Hi%20world!"
Searchor CLI Quick Start
$ searchor Google "Hello World!" --copy
Take a look at more examples in the examples folder!
Note: Engine names follow the UpperCamelCase convention.(eg: ChromeWebStore).
Docker
Building the docker image
$ docker build -t searchor .
Running searchor on the docker container
$ docker run --rm -it searchor sh
/usr/src/searchor/examples # python searchamazon.py
https://www.amazon.com/s?k=Hello%2C%20World%21
v2.5.2 Changes
v2.5.0
- [ADDED] Added a new Enum class
Information
. - [ADDED] Added
getinfo
function in theInformation
Enum to gather information about a given topic, using Wikipedia. - [ADDED] Add
web_scraper
function in theInformation
Enum, to web scrape a URL that is given. - [ADDED] Added bs4 and requests as dependencies.
- [MODIFIED] The Searchor Package is now officially becoming a library, and is therefore no longer considered a package.
v2.5.2
- [FIXED] Fixed issue with web scraping, with attribute errors, and CLI issues
Migration
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!")
Want to contribute?
Take a look at the contributing guidelines!
© Arjun Sharda 2022-present
All Rights Reserved
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file searchor-2.5.2.tar.gz
.
File metadata
- Download URL: searchor-2.5.2.tar.gz
- Upload date:
- Size: 10.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 14c0399fd5cf0fb9d4022901462cf156c81f80cb2ee02ccb76be3b22670a1cce |
|
MD5 | 083cee7c2de2ce2fc990c131535ae2b8 |
|
BLAKE2b-256 | f0e23e04476f2d3d2cdb62e95b4f238a941daf6edcaf2d5760fc0b183590951f |
File details
Details for the file searchor-2.5.2-py3-none-any.whl
.
File metadata
- Download URL: searchor-2.5.2-py3-none-any.whl
- Upload date:
- Size: 8.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7526f5cc5aefbdfa51bb24816becb524aabf6f0dbe10392265d3f72322db0ccc |
|
MD5 | b41803043bc6bf36055af3f28c0a40c7 |
|
BLAKE2b-256 | 37757788cbc3c9c66a87837dc0fbb27d4ec4dfa488a4fb0b2f8917545a0e84fd |