https://github.com/gs256/sitelook
Simple frontend for Google search engine written in Go.
https://github.com/gs256/sitelook
go google google-search search search-engine searx
Last synced: about 1 month ago
JSON representation
Simple frontend for Google search engine written in Go.
- Host: GitHub
- URL: https://github.com/gs256/sitelook
- Owner: gs256
- Created: 2023-06-01T16:36:47.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2024-01-22T10:47:00.000Z (over 1 year ago)
- Last Synced: 2024-01-22T18:47:51.179Z (over 1 year ago)
- Topics: go, google, google-search, search, search-engine, searx
- Language: Go
- Homepage:
- Size: 847 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# sitelook
**Simple frontend for Google search engine written in Go.**
It is meant to be fast and secure (leaks no tracking data to Google). It is also completely server-side rendered and works without JavaScript.

## How Does It Work?
Application parses Google search page and renders a new page with the results. It can be deployed locally or to a remote server for better privacy.
## Stack
- Go
- Gin as a backend framework
- Goquery for parsing html
- Bootstrap for styling
- Docker (WIP)## Features
### Search Filters
Supported search filters are `All`, `Images` and `Videos`. Other filters most likely won't be implemented.


### Query parameters
Parameters' names are identical to Google's
- `q` - search term
- `start` - search offset
- `tbm` - search type
- `tbm=isch` - image search
- `tbm=vid` - video
- `lr` - search language (e.g. `lang_en`)
- `hl` - interface language (e.g. `en`)### Upcoming Features
You can find all upcoming and considered features in the project's [todo.md](dev/todo.md) file.
## Issues
### Captcha Issue
Google sometimes requires captcha to make a search request. Solving captchas on the frontend is not implemented and probably won't be implemented since I'm not sure if it is even possible. Instead you will be offered to proceed with the Google Search.

## Licence
MIT