# OpenSERP (Search Engine Results Page) ![OpenSERP](/logo.png) [![Go Report Card](https://goreportcard.com/badge/github.com/karust/openserp)](https://goreportcard.com/report/github.com/karust/openserp) [![Go Reference](https://pkg.go.dev/badge/github.com/karust/openserp.svg)](https://pkg.go.dev/github.com/karust/openserp) API access for search engines results if available isn't free. Using OpenSERP, you can get search results from **Google**, **Yandex**, **Baidu** via API or CLI! See [Docker](#docker), [CLI](#cli) usage examples below. ## Docker usage 🐳 * Run API server: ```bash # Use prebuilt image docker run -p 127.0.0.1:7000:7000 -it karust/openserp serve -a 0.0.0.0 -p 7000 # Or docker-compose up --build ``` ### *Example request* Get 20 **Google** results for `hello world`, only in English: ```JSON GET http:/127.0.0.1:7000/google/search?lang=EN&limit=20&text=hello world ``` You can replace `google` to `yandex` or `baidu` in query to change search engine. ### Request parameters | Param | Description | |-------|--------------------------------------------------------------| | text | Text to search | | lang | Search pages in selected language (`EN`, `DE`, `RU`...) | | date | Date in `YYYYMMDD..YYYYMMDD` format (e.g. 20181010..20231010) | | file | File extension to search (e.g. `PDF`, `DOC`) | | site | Search only in selected site | | limit | Limit the number of results | ### *Example response* ```JSON [ { "rank": 0, "url": "https://en.wikipedia.org/wiki/%22Hello,_World!%22_program", "title": "\"Hello, World!\" program", "description": "A \"Hello, World!\" program is generally a computer program that ignores any input, and outputs or displays a message similar to \"Hello, World!\"." }, ] ``` ## CLI ⌨️ * Use `-h` flag to see commands. * You can use `serve` command to serve API: ```bash openserp serve ``` * Or print results in CLI using `search` command: ```bash openserp search google "how to get banned in google fast" # Change `google` to `yandex` or `baidu` ``` As a result you should get JSON output containting search results: ```json [ { "rank": 0, "url": "https://www.cyberoptik.net/blog/6-sure-fire-ways-to-get-banned-from-google/", "title": "11 Sure-Fire Ways to Get Banned From Google | CyberOptik", "description": "How To Get Banned From Google · 1. Cloaking: The Art of Deception · 2. Plagiarism: Because Originality is Overrated · 3. Keyword Stuffing: More is Always Better · 4 ..." }, ] ``` ## License This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details ## Bugs + Questions 👾 If you have some issues/bugs/questions, feel free to open an issue.