whoogle-search


Namewhoogle-search JSON
Version 0.8.4 PyPI version JSON
download
home_pagehttps://github.com/benbusby/whoogle-search
SummarySelf-hosted, ad-free, privacy-respecting metasearch engine
upload_time2023-11-01 22:05:17
maintainer
docs_urlNone
authorBen Busby
requires_python
licenseMIT
keywords search metasearch flask adblock degoogle privacy
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ![Whoogle Search](docs/banner.png)

[![Latest Release](https://img.shields.io/github/v/release/benbusby/whoogle-search)](https://github.com/benbusby/shoogle/releases)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
[![tests](https://github.com/benbusby/whoogle-search/actions/workflows/tests.yml/badge.svg)](https://github.com/benbusby/whoogle-search/actions/workflows/tests.yml)
[![buildx](https://github.com/benbusby/whoogle-search/actions/workflows/buildx.yml/badge.svg)](https://github.com/benbusby/whoogle-search/actions/workflows/buildx.yml)
[![codebeat badge](https://codebeat.co/badges/e96cada2-fb6f-4528-8285-7d72abd74e8d)](https://codebeat.co/projects/github-com-benbusby-shoogle-master)
[![Docker Pulls](https://img.shields.io/docker/pulls/benbusby/whoogle-search)](https://hub.docker.com/r/benbusby/whoogle-search)

<table>
  <tr>
    <td><a href="https://sr.ht/~benbusby/whoogle-search">SourceHut</a></td>
    <td><a href="https://github.com/benbusby/whoogle-search">GitHub</a></td>
  </tr>
</table>

Get Google search results, but without any ads, JavaScript, AMP links, cookies, or IP address tracking. Easily deployable in one click as a Docker app, and customizable with a single config file. Quick and simple to implement as a primary search engine replacement on both desktop and mobile.

Contents
1. [Features](#features)
3. [Install/Deploy Options](#install)
    1. [Heroku Quick Deploy](#heroku-quick-deploy)
    1. [Repl.it](#replit)
    1. [Fly.io](#flyio)
    1. [Koyeb](#koyeb)
    1. [pipx](#pipx)
    1. [pip](#pip)
    1. [Manual](#manual)
    1. [Docker](#manual-docker)
    1. [Arch/AUR](#arch-linux--arch-based-distributions)
    1. [Helm/Kubernetes](#helm-chart-for-kubernetes)
4. [Environment Variables and Configuration](#environment-variables)
5. [Usage](#usage)
6. [Extra Steps](#extra-steps)
    1. [Set Primary Search Engine](#set-whoogle-as-your-primary-search-engine)
	2. [Custom Redirecting](#custom-redirecting)
    3. [Prevent Downtime (Heroku Only)](#prevent-downtime-heroku-only)
    4. [Manual HTTPS Enforcement](#https-enforcement)
    5. [Using with Firefox Containers](#using-with-firefox-containers)
    6. [Reverse Proxying](#reverse-proxying)
        1. [Nginx](#nginx)
7. [Contributing](#contributing)
8. [FAQ](#faq)
9. [Public Instances](#public-instances)
10. [Screenshots](#screenshots)

## Features
- No ads or sponsored content
- No JavaScript\*
- No cookies\*\*
- No tracking/linking of your personal IP address\*\*\*
- No AMP links
- No URL tracking tags (i.e. utm=%s)
- No referrer header
- Tor and HTTP/SOCKS proxy support
- Autocomplete/search suggestions
- POST request search and suggestion queries (when possible)
- View images at full res without site redirect (currently mobile only)
- Light/Dark/System theme modes (with support for [custom CSS theming](https://github.com/benbusby/whoogle-search/wiki/User-Contributed-CSS-Themes))
- Randomly generated User Agent
- Easy to install/deploy
- DDG-style bang (i.e. `!<tag> <query>`) searches
- Optional location-based searching (i.e. results near \<city\>)
- Optional NoJS mode to view search results in a separate window with JavaScript blocked

<sup>*No third party JavaScript. Whoogle can be used with JavaScript disabled, but if enabled, uses JavaScript for things like presenting search suggestions.</sup>

<sup>**No third party cookies. Whoogle uses server side cookies (sessions) to store non-sensitive configuration settings such as theme, language, etc. Just like with JavaScript, cookies can be disabled and not affect Whoogle's search functionality.</sup>

<sup>***If deployed to a remote server, or configured to send requests through a VPN, Tor, proxy, etc.</sup>

## Install
There are a few different ways to begin using the app, depending on your preferences:

___

### [Heroku Quick Deploy](https://heroku.com/about)
[![Deploy](https://www.herokucdn.com/deploy/button.svg)](https://heroku.com/deploy?template=https://github.com/benbusby/whoogle-search/tree/main)

Provides:
- Easy Deployment of App
- A HTTPS url (https://\<your app name\>.herokuapp.com)

Notes:
- Requires a **PAID** Heroku Account.
- Sometimes has issues with auto-redirecting to `https`. Make sure to navigate to the `https` version of your app before adding as a default search engine.

___

### [Repl.it](https://repl.it)
[![Run on Repl.it](https://repl.it/badge/github/benbusby/whoogle-search)](https://repl.it/github/benbusby/whoogle-search)

*Note: Requires a (free) Replit account*

Provides:
- Free deployment of app
- Free HTTPS url (https://\<app name\>.\<username\>\.repl\.co)
    - Supports custom domains
- Downtime after periods of inactivity ([solution](https://repl.it/talk/learn/How-to-use-and-setup-UptimeRobot/9003)\)

___

### [Fly.io](https://fly.io)

You will need a [Fly.io](https://fly.io) account to deploy Whoogle. The [free allowances](https://fly.io/docs/about/pricing/#free-allowances) are enough for personal use.

#### Install the CLI: https://fly.io/docs/hands-on/installing/

#### Deploy the app

```bash
flyctl auth login
flyctl launch --image benbusby/whoogle-search:latest
```

The first deploy won't succeed because the default `internal_port` is wrong.
To fix this, open the generated `fly.toml` file, set `services.internal_port` to `5000` and run `flyctl launch` again.

Your app is now available at `https://<app-name>.fly.dev`.

___

### [Koyeb](https://www.koyeb.com)

Use one of the following guides to install Whoogle on Koyeb:

1. Using GitHub: https://www.koyeb.com/docs/quickstart/deploy-with-git
2. Using Docker: https://www.koyeb.com/docs/quickstart/deploy-a-docker-application

___

### [pipx](https://github.com/pipxproject/pipx#install-pipx)
Persistent install:

`pipx install git+https://github.com/benbusby/whoogle-search.git`

Sandboxed temporary instance:

`pipx run --spec git+https://github.com/benbusby/whoogle-search.git whoogle-search`

___

### pip
`pip install whoogle-search`

```bash
$ whoogle-search --help
usage: whoogle-search [-h] [--port <port number>] [--host <ip address>] [--debug] [--https-only] [--userpass <username:password>]
                      [--proxyauth <username:password>] [--proxytype <socks4|socks5|http>] [--proxyloc <location:port>]

Whoogle Search console runner

optional arguments:
  -h, --help            Show this help message and exit
  --port <port number>  Specifies a port to run on (default 5000)
  --host <ip address>   Specifies the host address to use (default 127.0.0.1)
  --debug               Activates debug mode for the server (default False)
  --https-only          Enforces HTTPS redirects for all requests
  --userpass <username:password>
                        Sets a username/password basic auth combo (default None)
  --proxyauth <username:password>
                        Sets a username/password for a HTTP/SOCKS proxy (default None)
  --proxytype <socks4|socks5|http>
                        Sets a proxy type for all connections (default None)
  --proxyloc <location:port>
                        Sets a proxy location for all connections (default None)
```
See the [available environment variables](#environment-variables) for additional configuration.

___

### Manual

*Note: `Content-Security-Policy` headers can be sent by Whoogle if you set `WHOOGLE_CSP`.*

#### Dependencies
- [Python3](https://www.python.org/downloads/)
- `libcurl4-openssl-dev` and `libssl-dev`
  - macOS: `brew install openssl curl-openssl`
  - Ubuntu: `sudo apt-get install -y libcurl4-openssl-dev libssl-dev`
  - Arch: `pacman -S curl openssl`

#### Install

Clone the repo and run the following commands to start the app in a local-only environment:

```bash
git clone https://github.com/benbusby/whoogle-search.git
cd whoogle-search
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
./run
```
See the [available environment variables](#environment-variables) for additional configuration.

#### systemd Configuration
After building the virtual environment, you can add something like the following to `/lib/systemd/system/whoogle.service` to set up a Whoogle Search systemd service:

```ini
[Unit]
Description=Whoogle

[Service]
# Basic auth configuration, uncomment to enable
#Environment=WHOOGLE_USER=<username>
#Environment=WHOOGLE_PASS=<password>
# Proxy configuration, uncomment to enable
#Environment=WHOOGLE_PROXY_USER=<proxy username>
#Environment=WHOOGLE_PROXY_PASS=<proxy password>
#Environment=WHOOGLE_PROXY_TYPE=<proxy type (http|https|proxy4|proxy5)
#Environment=WHOOGLE_PROXY_LOC=<proxy host/ip>
# Site alternative configurations, uncomment to enable
# Note: If not set, the feature will still be available
# with default values.
#Environment=WHOOGLE_ALT_TW=farside.link/nitter
#Environment=WHOOGLE_ALT_YT=farside.link/invidious
#Environment=WHOOGLE_ALT_RD=farside.link/libreddit
#Environment=WHOOGLE_ALT_MD=farside.link/scribe
#Environment=WHOOGLE_ALT_TL=farside.link/lingva
#Environment=WHOOGLE_ALT_IMG=farside.link/rimgo
#Environment=WHOOGLE_ALT_WIKI=farside.link/wikiless
#Environment=WHOOGLE_ALT_IMDB=farside.link/libremdb
#Environment=WHOOGLE_ALT_QUORA=farside.link/quetre
# Load values from dotenv only
#Environment=WHOOGLE_DOTENV=1
Type=simple
User=<username>
# If installed as a package, add:
ExecStart=<python_install_dir>/python3 <whoogle_install_dir>/whoogle-search --host 127.0.0.1 --port 5000
# For example:
# ExecStart=/usr/bin/python3 /home/my_username/.local/bin/whoogle-search --host 127.0.0.1 --port 5000
# Otherwise if running the app from source, add:
ExecStart=<whoogle_repo_dir>/run
# For example:
# ExecStart=/var/www/whoogle-search/run
WorkingDirectory=<whoogle_repo_dir>
ExecReload=/bin/kill -HUP $MAINPID
Restart=always
RestartSec=3
SyslogIdentifier=whoogle

[Install]
WantedBy=multi-user.target
```
Then,
```
sudo systemctl daemon-reload
sudo systemctl enable whoogle
sudo systemctl start whoogle
```

#### Tor Configuration *optional*
If routing your request through Tor you will need to make the following adjustments.
Due to the nature of interacting with Google through Tor we will need to be able to send signals to Tor and therefore authenticate with it.

There are two authentication methods, password and cookie. You will need to make changes to your torrc:
  * Cookie
    1. Uncomment or add the following lines in your torrc:
       - `ControlPort 9051`
       - `CookieAuthentication 1`
       - `DataDirectoryGroupReadable 1`
       - `CookieAuthFileGroupReadable 1`

    2. Make the tor auth cookie readable:
       - This is assuming that you are using a dedicated user to run whoogle. If you are using a different user replace `whoogle` with that user.

       1. `chmod tor:whoogle /var/lib/tor`
       2. `chmod tor:whoogle /var/lib/tor/control_auth_cookie`

    3. Restart the tor service:
       - `systemctl restart tor`

    4. Set the Tor environment variable to 1, `WHOOGLE_CONFIG_TOR`. Refer to the [Environment Variables](#environment-variables) section for more details.
       - This may be added in the systemd unit file or env file `WHOOGLE_CONFIG_TOR=1`

  * Password
    1. Run this command:
       - `tor --hash-password {Your Password Here}`; put your password in place of `{Your Password Here}`.
       - Keep the output of this command, you will be placing it in your torrc.
       - Keep the password input of this command, you will be using it later.

    2. Uncomment or add the following lines in your torrc:
       - `ControlPort 9051`
       - `HashedControlPassword {Place output here}`; put the output of the previous command in place of `{Place output here}`.

    3. Now take the password from the first step and place it in the control.conf file within the whoogle working directory, ie. [misc/tor/control.conf](misc/tor/control.conf)
       - If you want to place your password file in a different location set this location with the `WHOOGLE_TOR_CONF` environment variable. Refer to the [Environment Variables](#environment-variables) section for more details.

    4. Heavily restrict access to control.conf to only be readable by the user running whoogle:
       - `chmod 400 control.conf`

    5. Finally set the Tor environment variable and use password variable to 1, `WHOOGLE_CONFIG_TOR` and `WHOOGLE_TOR_USE_PASS`. Refer to the [Environment Variables](#environment-variables) section for more details.
       - These may be added to the systemd unit file or env file:
          - `WHOOGLE_CONFIG_TOR=1`
          - `WHOOGLE_TOR_USE_PASS=1`

___

### Manual (Docker)
1. Ensure the Docker daemon is running, and is accessible by your user account
  - To add user permissions, you can execute `sudo usermod -aG docker yourusername`
  - Running `docker ps` should return something besides an error. If you encounter an error saying the daemon isn't running, try `sudo systemctl start docker` (Linux) or ensure the docker tool is running (Windows/macOS).
2. Clone and deploy the docker app using a method below:

#### Docker CLI

Through Docker Hub:
```bash
docker pull benbusby/whoogle-search
docker run --publish 5000:5000 --detach --name whoogle-search benbusby/whoogle-search:latest
```

or with docker-compose:

```bash
git clone https://github.com/benbusby/whoogle-search.git
cd whoogle-search
docker-compose up
```

or by building yourself:

```bash
git clone https://github.com/benbusby/whoogle-search.git
cd whoogle-search
docker build --tag whoogle-search:1.0 .
docker run --publish 5000:5000 --detach --name whoogle-search whoogle-search:1.0
```

Optionally, you can also enable some of the following environment variables to further customize your instance:

```bash
docker run --publish 5000:5000 --detach --name whoogle-search \
  -e WHOOGLE_USER=username \
  -e WHOOGLE_PASS=password \
  -e WHOOGLE_PROXY_USER=username \
  -e WHOOGLE_PROXY_PASS=password \
  -e WHOOGLE_PROXY_TYPE=socks5 \
  -e WHOOGLE_PROXY_LOC=ip \
  whoogle-search:1.0
```

And kill with: `docker rm --force whoogle-search`

#### Using [Heroku CLI](https://devcenter.heroku.com/articles/heroku-cli)
```bash
heroku login
heroku container:login
git clone https://github.com/benbusby/whoogle-search.git
cd whoogle-search
heroku create
heroku container:push web
heroku container:release web
heroku open
```

This series of commands can take a while, but once you run it once, you shouldn't have to run it again. The final command, `heroku open` will launch a tab in your web browser, where you can test out Whoogle and even [set it as your primary search engine](https://github.com/benbusby/whoogle#set-whoogle-as-your-primary-search-engine).
You may also edit environment variables from your app’s Settings tab in the Heroku Dashboard.

___

### Arch Linux & Arch-based Distributions
There is an [AUR package available](https://aur.archlinux.org/packages/whoogle-git/), as well as a pre-built and daily updated package available at [Chaotic-AUR](https://chaotic.cx).

___

### Helm chart for Kubernetes
To use the Kubernetes Helm Chart:
1. Ensure you have [Helm](https://helm.sh/docs/intro/install/) `>=3.0.0` installed
2. Clone this repository
3. Update [charts/whoogle/values.yaml](./charts/whoogle/values.yaml) as desired
4. Run `helm install whoogle ./charts/whoogle`

___

#### Using your own server, or alternative container deployment
There are other methods for deploying docker containers that are well outlined in [this article](https://rollout.io/blog/the-shortlist-of-docker-hosting/), but there are too many to describe set up for each here. Generally it should be about the same amount of effort as the Heroku deployment.

Depending on your preferences, you can also deploy the app yourself on your own infrastructure. This route would require a few extra steps:
  - A server (I personally recommend [Digital Ocean](https://www.digitalocean.com/pricing/) or [Linode](https://www.linode.com/pricing/), their cheapest tiers will work fine)
  - Your own URL (I suppose this is optional, but recommended)
  - SSL certificates (free through [Let's Encrypt](https://letsencrypt.org/getting-started/))
  - A bit more experience or willingness to work through issues

## Environment Variables
There are a few optional environment variables available for customizing a Whoogle instance. These can be set manually, or copied into `whoogle.env` and enabled for your preferred deployment method:

- Local runs: Set `WHOOGLE_DOTENV=1` before running
- With `docker-compose`: Uncomment the `env_file` option
- With `docker build/run`: Add `--env-file ./whoogle.env` to your command

| Variable             | Description                                                                               |
| -------------------- | ----------------------------------------------------------------------------------------- |
| WHOOGLE_URL_PREFIX   | The URL prefix to use for the whoogle instance (i.e. "/whoogle")                          |
| WHOOGLE_DOTENV       | Load environment variables in `whoogle.env`                                               |
| WHOOGLE_USER         | The username for basic auth. WHOOGLE_PASS must also be set if used.                       |
| WHOOGLE_PASS         | The password for basic auth. WHOOGLE_USER must also be set if used.                       |
| WHOOGLE_PROXY_USER   | The username of the proxy server.                                                         |
| WHOOGLE_PROXY_PASS   | The password of the proxy server.                                                         |
| WHOOGLE_PROXY_TYPE   | The type of the proxy server. Can be "socks5", "socks4", or "http".                       |
| WHOOGLE_PROXY_LOC    | The location of the proxy server (host or ip).                                            |
| WHOOGLE_USER_AGENT   | The desktop user agent to use. Defaults to a randomly generated one.                      |
| WHOOGLE_USER_AGENT_MOBILE | The mobile user agent to use. Defaults to a randomly generated one.                  |
| WHOOGLE_USE_CLIENT_USER_AGENT | Enable to use your own user agent for all requests. Defaults to false.           |
| WHOOGLE_REDIRECTS    | Specify sites that should be redirected elsewhere. See [custom redirecting](#custom-redirecting). |
| EXPOSE_PORT          | The port where Whoogle will be exposed.                                                   |
| HTTPS_ONLY           | Enforce HTTPS. (See [here](https://github.com/benbusby/whoogle-search#https-enforcement)) |
| WHOOGLE_ALT_TW       | The twitter.com alternative to use when site alternatives are enabled in the config. Set to "" to disable. |
| WHOOGLE_ALT_YT       | The youtube.com alternative to use when site alternatives are enabled in the config. Set to "" to disable. |
| WHOOGLE_ALT_RD       | The reddit.com alternative to use when site alternatives are enabled in the config. Set to "" to disable. |
| WHOOGLE_ALT_TL       | The Google Translate alternative to use. This is used for all "translate ____" searches.  Set to "" to disable. |
| WHOOGLE_ALT_MD       | The medium.com alternative to use when site alternatives are enabled in the config. Set to "" to disable. |
| WHOOGLE_ALT_IMG      | The imgur.com alternative to use when site alternatives are enabled in the config. Set to "" to disable. |
| WHOOGLE_ALT_WIKI     | The wikipedia.org alternative to use when site alternatives are enabled in the config. Set to "" to disable. |
| WHOOGLE_ALT_IMDB     | The imdb.com alternative to use when site alternatives are enabled in the config. Set to "" to disable.  |
| WHOOGLE_ALT_QUORA    | The quora.com alternative to use when site alternatives are enabled in the config. Set to "" to disable. |
| WHOOGLE_AUTOCOMPLETE | Controls visibility of autocomplete/search suggestions. Default on -- use '0' to disable. |
| WHOOGLE_MINIMAL      | Remove everything except basic result cards from all search queries.                      |
| WHOOGLE_CSP          | Sets a default set of 'Content-Security-Policy' headers                                   |
| WHOOGLE_RESULTS_PER_PAGE          | Set the number of results per page                                           |
| WHOOGLE_TOR_SERVICE  | Enable/disable the Tor service on startup. Default on -- use '0' to disable.              |
| WHOOGLE_TOR_USE_PASS | Use password authentication for tor control port. |
| WHOOGLE_TOR_CONF | The absolute path to the config file containing the password for the tor control port. Default: ./misc/tor/control.conf WHOOGLE_TOR_PASS must be 1 for this to work.|

### Config Environment Variables
These environment variables allow setting default config values, but can be overwritten manually by using the home page config menu. These allow a shortcut for destroying/rebuilding an instance to the same config state every time.

| Variable                             | Description                                                     |
| ------------------------------------ | --------------------------------------------------------------- |
| WHOOGLE_CONFIG_DISABLE               | Hide config from UI and disallow changes to config by client    |
| WHOOGLE_CONFIG_COUNTRY               | Filter results by hosting country                               |
| WHOOGLE_CONFIG_LANGUAGE              | Set interface language                                          |
| WHOOGLE_CONFIG_SEARCH_LANGUAGE       | Set search result language                                      |
| WHOOGLE_CONFIG_BLOCK                 | Block websites from search results (use comma-separated list)   |
| WHOOGLE_CONFIG_BLOCK_TITLE           | Block search result with a REGEX filter on title                |
| WHOOGLE_CONFIG_BLOCK_URL             | Block search result with a REGEX filter on URL                  |
| WHOOGLE_CONFIG_THEME                 | Set theme mode (light, dark, or system)                         |
| WHOOGLE_CONFIG_SAFE                  | Enable safe searches                                            |
| WHOOGLE_CONFIG_ALTS                  | Use social media site alternatives (nitter, invidious, etc)     |
| WHOOGLE_CONFIG_NEAR                  | Restrict results to only those near a particular city           |
| WHOOGLE_CONFIG_TOR                   | Use Tor routing (if available)                                  |
| WHOOGLE_CONFIG_NEW_TAB               | Always open results in new tab                                  |
| WHOOGLE_CONFIG_VIEW_IMAGE            | Enable View Image option                                        |
| WHOOGLE_CONFIG_GET_ONLY              | Search using GET requests only                                  |
| WHOOGLE_CONFIG_URL                   | The root url of the instance (`https://<your url>/`)            |
| WHOOGLE_CONFIG_STYLE                 | The custom CSS to use for styling (should be single line)       |
| WHOOGLE_CONFIG_PREFERENCES_ENCRYPTED | Encrypt preferences token, requires preferences key             |
| WHOOGLE_CONFIG_PREFERENCES_KEY       | Key to encrypt preferences in URL (REQUIRED to show url)        |
| WHOOGLE_CONFIG_ANON_VIEW             | Include the "anonymous view" option for each search result      |

## Usage
Same as most search engines, with the exception of filtering by time range.

To filter by a range of time, append ":past <time>" to the end of your search, where <time> can be `hour`, `day`, `month`, or `year`. Example: `coronavirus updates :past hour`

## Extra Steps

### Set Whoogle as your primary search engine
*Note: If you're using a reverse proxy to run Whoogle Search, make sure the "Root URL" config option on the home page is set to your URL before going through these steps.*

Browser settings:
  - Firefox (Desktop)
    - Version 89+
      - Navigate to your app's url, right click the address bar, and select "Add Search Engine".
    - Previous versions
      - Navigate to your app's url, and click the 3 dot menu in the address bar. At the bottom, there should be an option to "Add Search Engine".
    - Once you've added the new search engine, open your Firefox Preferences menu, click "Search" in the left menu, and use the available dropdown to select "Whoogle" from the list.
    - **Note**: If your Whoogle instance uses Firefox Containers, you'll need to [go through the steps here](#using-with-firefox-containers) to get it working properly.
  - Firefox (iOS)
    - In the mobile app Settings page, tap "Search" within the "General" section. There should be an option titled "Add Search Engine" to select. It should prompt you to enter a title and search query url - use the following elements to fill out the form:
      - Title: "Whoogle"
      - URL: `http[s]://\<your whoogle url\>/search?q=%s`
  - Firefox (Android)
    - Version <79.0.0
      - Navigate to your app's url
      - Long-press on the search text field
      - Click the "Add Search Engine" menu item
        - Select a name and click ok
      - Click the 3 dot menu in the top right
      - Navigate to the settings menu and select the "Search" sub-menu
      - Select Whoogle and press "Set as default"
    - Version >=79.0.0
      - Click the 3 dot menu in the top right
      - Navigate to the settings menu and select the "Search" sub-menu
      - Click "Add search engine"
      - Select the 'Other' radio button
        - Name: "Whoogle"
        - Search string to use: `https://\<your whoogle url\>/search?q=%s`
  - [Alfred](https://www.alfredapp.com/) (Mac OS X)
	  1. Go to `Alfred Preferences` > `Features` > `Web Search` and click `Add Custom Search`. Then configure these settings
		   - Search URL: `https://\<your whoogle url\>/search?q={query}
		   - Title: `Whoogle for '{query}'` (or whatever you want)
		   - Keyword: `whoogle`

	  2. Go to `Default Results` and click the `Setup fallback results` button. Click `+` and add Whoogle, then  drag it to the top.
  - Chrome/Chromium-based Browsers
    - Automatic
      - Visit the home page of your Whoogle Search instance -- this will automatically add the search engine if the [requirements](https://www.chromium.org/tab-to-search/) are met (GET request, no OnSubmit script, no path). If not, you can add it manually.
    - Manual
      - Under search engines > manage search engines > add, manually enter your Whoogle instance details with a `<whoogle url>/search?q=%s` formatted search URL.

### Custom Redirecting
You can set custom site redirects using the `WHOOGLE_REDIRECTS` environment
variable. A lot of sites, such as Twitter, Reddit, etc, have built-in redirects
to [Farside links](https://sr.ht/~benbusby/farside), but you may want to define
your own.

To do this, you can use the following syntax:

```
WHOOGLE_REDIRECTS="<parent_domain>:<new_domain>"
```

For example, if you want to redirect from "badsite.com" to "goodsite.com":

```
WHOOGLE_REDIRECTS="badsite.com:goodsite.com"
```

This can be used for multiple sites as well, with comma separation:

```
WHOOGLE_REDIRECTS="badA.com:goodA.com,badB.com:goodB.com"
```

NOTE: Do not include "http(s)://" when defining your redirect.

### Prevent Downtime (Heroku only)
Part of the deal with Heroku's free tier is that you're allocated 550 hours/month (meaning it can't stay active 24/7), and the app is temporarily shut down after 30 minutes of inactivity. Once it becomes inactive, any Whoogle searches will still work, but it'll take an extra 10-15 seconds for the app to come back online before displaying the result, which can be frustrating if you're in a hurry.

A good solution for this is to set up a simple cronjob on any device at your home that is consistently powered on and connected to the internet (in my case, a PiHole worked perfectly). All the device needs to do is fetch app content on a consistent basis to keep the app alive in whatever ~17 hour window you want it on (17 hrs * 31 days = 527, meaning you'd still have 23 leftover hours each month if you searched outside of your target window).

For instance, adding `*/20 7-23 * * * curl https://<your heroku app name>.herokuapp.com > /home/<username>/whoogle-refresh` will fetch the home page of the app every 20 minutes between 7am and midnight, allowing for downtime from midnight to 7am. And again, this wouldn't be a hard limit - you'd still have plenty of remaining hours of uptime each month in case you were searching after this window has closed.

Since the instance is destroyed and rebuilt after inactivity, config settings will be reset once the app enters downtime. If you have configuration settings active that you'd like to keep between periods of downtime (like dark mode for example), you could instead add `*/20 7-23 * * * curl -d "dark=1" -X POST https://<your heroku app name>.herokuapp.com/config > /home/<username>/whoogle-refresh` to keep these settings more or less permanent, and still keep the app from entering downtime when you're using it.

### HTTPS Enforcement
Only needed if your setup requires Flask to redirect to HTTPS on its own -- generally this is something that doesn't need to be handled by Whoogle Search.

Note: You should have your own domain name and [an https certificate](https://letsencrypt.org/getting-started/) in order for this to work properly.

- Heroku: Ensure that the `Root URL` configuration on the home page begins with `https://` and not `http://`
- Docker build: Add `--build-arg use_https=1` to your run command
- Docker image: Set the environment variable HTTPS_ONLY=1
- Pip/Pipx: Add the `--https-only` flag to the end of the `whoogle-search` command
- Default `run` script: Modify the script locally to include the `--https-only` flag at the end of the python run command

### Using with Firefox Containers
Unfortunately, Firefox Containers do not currently pass through `POST` requests (the default) to the engine, and Firefox caches the opensearch template on initial page load. To get around this, you can take the following steps to get it working as expected:

1. Remove any existing Whoogle search engines from Firefox settings
2. Enable `GET Requests Only` in Whoogle config
3. Clear Firefox cache
4. Restart Firefox
5. Navigate to Whoogle instance and [re-add the engine](#set-whoogle-as-your-primary-search-engine)

### Reverse Proxying

#### Nginx

Here is a sample Nginx config for Whoogle:

```
server {
	server_name your_domain_name.com;
	access_log /dev/null;
	error_log /dev/null;

	location / {
	    proxy_set_header X-Real-IP $remote_addr;
	    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
	    proxy_set_header X-Forwarded-Proto $scheme;
	    proxy_set_header Host $host;
	    proxy_set_header X-NginX-Proxy true;
	    proxy_pass http://localhost:5000;
	}
}
```

You can then add SSL support using LetsEncrypt by following a guide such as [this one](https://www.nginx.com/blog/using-free-ssltls-certificates-from-lets-encrypt-with-nginx/).

## Contributing

Under the hood, Whoogle is a basic Flask app with the following structure:

- `app/`
  - `routes.py`: Primary app entrypoint, contains all API routes
  - `request.py`: Handles all outbound requests, including proxied/Tor connectivity
  - `filter.py`: Functions and utilities used for filtering out content from upstream Google search results
  - `utils/`
    - `bangs.py`: All logic related to handling DDG-style "bang" queries
    - `results.py`: Utility functions for interpreting/modifying individual search results
    - `search.py`: Creates and handles new search queries
    - `session.py`: Miscellaneous methods related to user sessions
  - `templates/`
    - `index.html`: The home page template
    - `display.html`: The search results template
    - `header.html`: A general "top of the page" query header for desktop and mobile
    - `search.html`: An iframe-able search page
    - `logo.html`: A template consisting mostly of the Whoogle logo as an SVG (separated to help keep `index.html` a bit cleaner)
    - `opensearch.xml`: A template used for supporting [OpenSearch](https://developer.mozilla.org/en-US/docs/Web/OpenSearch).
    - `imageresults.html`: An "experimental" template used for supporting the "Full Size" image feature on desktop.
  - `static/<css|js>`
    - CSS/JavaScript files, should be self-explanatory
  - `static/settings`
    - Key-value JSON files for establishing valid configuration values


If you're new to the project, the easiest way to get started would be to try fixing [an open bug report](https://github.com/benbusby/whoogle-search/issues?q=is%3Aissue+is%3Aopen+label%3Abug). If there aren't any open, or if the open ones are too stale, try taking on a [feature request](https://github.com/benbusby/whoogle-search/issues?q=is%3Aissue+is%3Aopen+label%3Aenhancement). Generally speaking, if you can write something that has any potential of breaking down in the future, you should write a test for it.

The project follows the [PEP 8 Style Guide](https://www.python.org/dev/peps/pep-0008/), but is liable to change. Static typing should always be used when possible. Function documentation is greatly appreciated, and typically follows the below format:

```python
def contains(x: list, y: int) -> bool:
    """Check a list (x) for the presence of an element (y)

    Args:
        x: The list to inspect
        y: The int to look for

    Returns:
        bool: True if the list contains the item, otherwise False
    """

    return y in x
```

#### Translating

Whoogle currently supports translations using [`translations.json`](https://github.com/benbusby/whoogle-search/blob/main/app/static/settings/translations.json). Language values in this file need to match the "value" of the according language in [`languages.json`](https://github.com/benbusby/whoogle-search/blob/main/app/static/settings/languages.json) (i.e. "lang_en" for English, "lang_es" for Spanish, etc). After you add a new set of translations to `translations.json`, open a PR with your changes and they will be merged in as soon as possible.

## FAQ
**What's the difference between this and [Searx](https://github.com/asciimoo/searx)?**

Whoogle is intended to only ever be deployed to private instances by individuals of any background, with as little effort as possible. Prior knowledge of/experience with the command line or deploying applications is not necessary to deploy Whoogle, which isn't the case with Searx. As a result, Whoogle is missing some features of Searx in order to be as easy to deploy as possible.

Whoogle also only uses Google search results, not Bing/Quant/etc, and uses the existing Google search UI to make the transition away from Google search as unnoticeable as possible.

I'm a huge fan of Searx though and encourage anyone to use that instead if they want access to other search engines/a different UI/more configuration.

**Why does the image results page look different?**

A lot of the app currently piggybacks on Google's existing support for fetching results pages with JavaScript disabled. To their credit, they've done an excellent job with styling pages, but it seems that the image results page - particularly on mobile - is a little rough. Moving forward, with enough interest, I'd like to transition to fetching the results and parsing them into a unique Whoogle-fied interface that I can style myself.

## Public Instances

*Note: Use public instances at your own discretion. The maintainers of Whoogle do not personally validate the integrity of any other instances. Popular public instances are more likely to be rate-limited or blocked.*

| Website | Country | Language | Cloudflare |
|-|-|-|-|
| [https://search.albony.xyz](https://search.albony.xyz/) | 🇮🇳 IN | Multi-choice |  |
| [https://search.garudalinux.org](https://search.garudalinux.org) | 🇫🇮 FI | Multi-choice | ✅ |
| [https://search.dr460nf1r3.org](https://search.dr460nf1r3.org) | 🇩🇪 DE | Multi-choice | ✅ |
| [https://s.tokhmi.xyz](https://s.tokhmi.xyz) | 🇺🇸 US | Multi-choice | ✅ |
| [https://search.sethforprivacy.com](https://search.sethforprivacy.com) | 🇩🇪 DE | English | |
| [https://whoogle.dcs0.hu](https://whoogle.dcs0.hu) | 🇭🇺 HU | Multi-choice | |
| [https://gowogle.voring.me](https://gowogle.voring.me) | 🇺🇸 US | Multi-choice | |
| [https://whoogle.privacydev.net](https://whoogle.privacydev.net) | 🇫🇷 FR | English | |
| [https://wg.vern.cc](https://wg.vern.cc) | 🇺🇸 US | English |  |
| [https://whoogle.hxvy0.gq](https://whoogle.hxvy0.gq) | 🇨🇦 CA | Turkish Only | ✅ |
| [https://whoogle.hostux.net](https://whoogle.hostux.net) | 🇫🇷 FR | Multi-choice | |
| [https://whoogle.lunar.icu](https://whoogle.lunar.icu) | 🇩🇪 DE | Multi-choice | ✅ |
| [https://wgl.frail.duckdns.org](https://wgl.frail.duckdns.org) | 🇧🇷 BR | Multi-choice | |
| [https://whoogle.no-logs.com](https://whoogle.no-logs.com/) | 🇸🇪 SE | Multi-choice | |
| [https://search.rubberverse.xyz](https://search.rubberverse.xyz) | 🇵🇱 PL | English | |
| [https://whoogle.ftw.lol](https://whoogle.ftw.lol) | 🇩🇪 DE | Multi-choice | |
| [https://whoogle-search--replitcomreside.repl.co](https://whoogle-search--replitcomreside.repl.co) | 🇺🇸 US | English |  |
| [https://search.notrustverify.ch](https://search.notrustverify.ch) | 🇨🇭 CH | Multi-choice |  |
| [https://whoogle.datura.network](https://whoogle.datura.network) | 🇩🇪 DE | Multi-choice | |
| [https://whoogle.yepserver.xyz](https://whoogle.yepserver.xyz) | 🇺🇦 UA | Multi-choice | |


* A checkmark in the "Cloudflare" category here refers to the use of the reverse proxy, [Cloudflare](https://cloudflare.com). The checkmark will not be listed for a site which uses Cloudflare DNS but rather the proxying service which grants Cloudflare the ability to monitor traffic to the website.

#### Onion Instances

| Website | Country | Language |
|-|-|-|
| [http://whoglqjdkgt2an4tdepberwqz3hk7tjo4kqgdnuj77rt7nshw2xqhqad.onion](http://whoglqjdkgt2an4tdepberwqz3hk7tjo4kqgdnuj77rt7nshw2xqhqad.onion) | 🇺🇸 US |  Multi-choice
| [http://nuifgsnbb2mcyza74o7illtqmuaqbwu4flam3cdmsrnudwcmkqur37qd.onion](http://nuifgsnbb2mcyza74o7illtqmuaqbwu4flam3cdmsrnudwcmkqur37qd.onion) | 🇩🇪 DE |  English
| [http://whoogle.vernccvbvyi5qhfzyqengccj7lkove6bjot2xhh5kajhwvidqafczrad.onion](http://whoogle.vernccvbvyi5qhfzyqengccj7lkove6bjot2xhh5kajhwvidqafczrad.onion/) | 🇺🇸 US | English |
| [http://whoogle.g4c3eya4clenolymqbpgwz3q3tawoxw56yhzk4vugqrl6dtu3ejvhjid.onion](http://whoogle.g4c3eya4clenolymqbpgwz3q3tawoxw56yhzk4vugqrl6dtu3ejvhjid.onion/) | 🇫🇷 FR | English |
| [http://whoogle.daturab6drmkhyeia4ch5gvfc2f3wgo6bhjrv3pz6n7kxmvoznlkq4yd.onion](http://whoogle.daturab6drmkhyeia4ch5gvfc2f3wgo6bhjrv3pz6n7kxmvoznlkq4yd.onion/) | 🇩🇪 DE | Multi-choice | |

#### I2P Instances

| Website | Country | Language |
|-|-|-|
| [http://verneks7rfjptpz5fpii7n7nrxilsidi2qxepeuuf66c3tsf4nhq.b32.i2p](http://verneks7rfjptpz5fpii7n7nrxilsidi2qxepeuuf66c3tsf4nhq.b32.i2p) | 🇺🇸 US | English |

## Screenshots
#### Desktop
![Whoogle Desktop](docs/screenshot_desktop.png)

#### Mobile
![Whoogle Mobile](docs/screenshot_mobile.png)

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/benbusby/whoogle-search",
    "name": "whoogle-search",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "search,metasearch,flask,adblock,degoogle,privacy",
    "author": "Ben Busby",
    "author_email": "contact@benbusby.com",
    "download_url": "https://files.pythonhosted.org/packages/eb/ff/51442c8e053f4d435f0bcc63dad4075c9718e20680e37c031a7f75d055ac/whoogle-search-0.8.4.tar.gz",
    "platform": null,
    "description": "![Whoogle Search](docs/banner.png)\n\n[![Latest Release](https://img.shields.io/github/v/release/benbusby/whoogle-search)](https://github.com/benbusby/shoogle/releases)\n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)\n[![tests](https://github.com/benbusby/whoogle-search/actions/workflows/tests.yml/badge.svg)](https://github.com/benbusby/whoogle-search/actions/workflows/tests.yml)\n[![buildx](https://github.com/benbusby/whoogle-search/actions/workflows/buildx.yml/badge.svg)](https://github.com/benbusby/whoogle-search/actions/workflows/buildx.yml)\n[![codebeat badge](https://codebeat.co/badges/e96cada2-fb6f-4528-8285-7d72abd74e8d)](https://codebeat.co/projects/github-com-benbusby-shoogle-master)\n[![Docker Pulls](https://img.shields.io/docker/pulls/benbusby/whoogle-search)](https://hub.docker.com/r/benbusby/whoogle-search)\n\n<table>\n  <tr>\n    <td><a href=\"https://sr.ht/~benbusby/whoogle-search\">SourceHut</a></td>\n    <td><a href=\"https://github.com/benbusby/whoogle-search\">GitHub</a></td>\n  </tr>\n</table>\n\nGet Google search results, but without any ads, JavaScript, AMP links, cookies, or IP address tracking. Easily deployable in one click as a Docker app, and customizable with a single config file. Quick and simple to implement as a primary search engine replacement on both desktop and mobile.\n\nContents\n1. [Features](#features)\n3. [Install/Deploy Options](#install)\n    1. [Heroku Quick Deploy](#heroku-quick-deploy)\n    1. [Repl.it](#replit)\n    1. [Fly.io](#flyio)\n    1. [Koyeb](#koyeb)\n    1. [pipx](#pipx)\n    1. [pip](#pip)\n    1. [Manual](#manual)\n    1. [Docker](#manual-docker)\n    1. [Arch/AUR](#arch-linux--arch-based-distributions)\n    1. [Helm/Kubernetes](#helm-chart-for-kubernetes)\n4. [Environment Variables and Configuration](#environment-variables)\n5. [Usage](#usage)\n6. [Extra Steps](#extra-steps)\n    1. [Set Primary Search Engine](#set-whoogle-as-your-primary-search-engine)\n\t2. [Custom Redirecting](#custom-redirecting)\n    3. [Prevent Downtime (Heroku Only)](#prevent-downtime-heroku-only)\n    4. [Manual HTTPS Enforcement](#https-enforcement)\n    5. [Using with Firefox Containers](#using-with-firefox-containers)\n    6. [Reverse Proxying](#reverse-proxying)\n        1. [Nginx](#nginx)\n7. [Contributing](#contributing)\n8. [FAQ](#faq)\n9. [Public Instances](#public-instances)\n10. [Screenshots](#screenshots)\n\n## Features\n- No ads or sponsored content\n- No JavaScript\\*\n- No cookies\\*\\*\n- No tracking/linking of your personal IP address\\*\\*\\*\n- No AMP links\n- No URL tracking tags (i.e. utm=%s)\n- No referrer header\n- Tor and HTTP/SOCKS proxy support\n- Autocomplete/search suggestions\n- POST request search and suggestion queries (when possible)\n- View images at full res without site redirect (currently mobile only)\n- Light/Dark/System theme modes (with support for [custom CSS theming](https://github.com/benbusby/whoogle-search/wiki/User-Contributed-CSS-Themes))\n- Randomly generated User Agent\n- Easy to install/deploy\n- DDG-style bang (i.e. `!<tag> <query>`) searches\n- Optional location-based searching (i.e. results near \\<city\\>)\n- Optional NoJS mode to view search results in a separate window with JavaScript blocked\n\n<sup>*No third party JavaScript. Whoogle can be used with JavaScript disabled, but if enabled, uses JavaScript for things like presenting search suggestions.</sup>\n\n<sup>**No third party cookies. Whoogle uses server side cookies (sessions) to store non-sensitive configuration settings such as theme, language, etc. Just like with JavaScript, cookies can be disabled and not affect Whoogle's search functionality.</sup>\n\n<sup>***If deployed to a remote server, or configured to send requests through a VPN, Tor, proxy, etc.</sup>\n\n## Install\nThere are a few different ways to begin using the app, depending on your preferences:\n\n___\n\n### [Heroku Quick Deploy](https://heroku.com/about)\n[![Deploy](https://www.herokucdn.com/deploy/button.svg)](https://heroku.com/deploy?template=https://github.com/benbusby/whoogle-search/tree/main)\n\nProvides:\n- Easy Deployment of App\n- A HTTPS url (https://\\<your app name\\>.herokuapp.com)\n\nNotes:\n- Requires a **PAID** Heroku Account.\n- Sometimes has issues with auto-redirecting to `https`. Make sure to navigate to the `https` version of your app before adding as a default search engine.\n\n___\n\n### [Repl.it](https://repl.it)\n[![Run on Repl.it](https://repl.it/badge/github/benbusby/whoogle-search)](https://repl.it/github/benbusby/whoogle-search)\n\n*Note: Requires a (free) Replit account*\n\nProvides:\n- Free deployment of app\n- Free HTTPS url (https://\\<app name\\>.\\<username\\>\\.repl\\.co)\n    - Supports custom domains\n- Downtime after periods of inactivity ([solution](https://repl.it/talk/learn/How-to-use-and-setup-UptimeRobot/9003)\\)\n\n___\n\n### [Fly.io](https://fly.io)\n\nYou will need a [Fly.io](https://fly.io) account to deploy Whoogle. The [free allowances](https://fly.io/docs/about/pricing/#free-allowances) are enough for personal use.\n\n#### Install the CLI: https://fly.io/docs/hands-on/installing/\n\n#### Deploy the app\n\n```bash\nflyctl auth login\nflyctl launch --image benbusby/whoogle-search:latest\n```\n\nThe first deploy won't succeed because the default `internal_port` is wrong.\nTo fix this, open the generated `fly.toml` file, set `services.internal_port` to `5000` and run `flyctl launch` again.\n\nYour app is now available at `https://<app-name>.fly.dev`.\n\n___\n\n### [Koyeb](https://www.koyeb.com)\n\nUse one of the following guides to install Whoogle on Koyeb:\n\n1. Using GitHub: https://www.koyeb.com/docs/quickstart/deploy-with-git\n2. Using Docker: https://www.koyeb.com/docs/quickstart/deploy-a-docker-application\n\n___\n\n### [pipx](https://github.com/pipxproject/pipx#install-pipx)\nPersistent install:\n\n`pipx install git+https://github.com/benbusby/whoogle-search.git`\n\nSandboxed temporary instance:\n\n`pipx run --spec git+https://github.com/benbusby/whoogle-search.git whoogle-search`\n\n___\n\n### pip\n`pip install whoogle-search`\n\n```bash\n$ whoogle-search --help\nusage: whoogle-search [-h] [--port <port number>] [--host <ip address>] [--debug] [--https-only] [--userpass <username:password>]\n                      [--proxyauth <username:password>] [--proxytype <socks4|socks5|http>] [--proxyloc <location:port>]\n\nWhoogle Search console runner\n\noptional arguments:\n  -h, --help            Show this help message and exit\n  --port <port number>  Specifies a port to run on (default 5000)\n  --host <ip address>   Specifies the host address to use (default 127.0.0.1)\n  --debug               Activates debug mode for the server (default False)\n  --https-only          Enforces HTTPS redirects for all requests\n  --userpass <username:password>\n                        Sets a username/password basic auth combo (default None)\n  --proxyauth <username:password>\n                        Sets a username/password for a HTTP/SOCKS proxy (default None)\n  --proxytype <socks4|socks5|http>\n                        Sets a proxy type for all connections (default None)\n  --proxyloc <location:port>\n                        Sets a proxy location for all connections (default None)\n```\nSee the [available environment variables](#environment-variables) for additional configuration.\n\n___\n\n### Manual\n\n*Note: `Content-Security-Policy` headers can be sent by Whoogle if you set `WHOOGLE_CSP`.*\n\n#### Dependencies\n- [Python3](https://www.python.org/downloads/)\n- `libcurl4-openssl-dev` and `libssl-dev`\n  - macOS: `brew install openssl curl-openssl`\n  - Ubuntu: `sudo apt-get install -y libcurl4-openssl-dev libssl-dev`\n  - Arch: `pacman -S curl openssl`\n\n#### Install\n\nClone the repo and run the following commands to start the app in a local-only environment:\n\n```bash\ngit clone https://github.com/benbusby/whoogle-search.git\ncd whoogle-search\npython3 -m venv venv\nsource venv/bin/activate\npip install -r requirements.txt\n./run\n```\nSee the [available environment variables](#environment-variables) for additional configuration.\n\n#### systemd Configuration\nAfter building the virtual environment, you can add something like the following to `/lib/systemd/system/whoogle.service` to set up a Whoogle Search systemd service:\n\n```ini\n[Unit]\nDescription=Whoogle\n\n[Service]\n# Basic auth configuration, uncomment to enable\n#Environment=WHOOGLE_USER=<username>\n#Environment=WHOOGLE_PASS=<password>\n# Proxy configuration, uncomment to enable\n#Environment=WHOOGLE_PROXY_USER=<proxy username>\n#Environment=WHOOGLE_PROXY_PASS=<proxy password>\n#Environment=WHOOGLE_PROXY_TYPE=<proxy type (http|https|proxy4|proxy5)\n#Environment=WHOOGLE_PROXY_LOC=<proxy host/ip>\n# Site alternative configurations, uncomment to enable\n# Note: If not set, the feature will still be available\n# with default values.\n#Environment=WHOOGLE_ALT_TW=farside.link/nitter\n#Environment=WHOOGLE_ALT_YT=farside.link/invidious\n#Environment=WHOOGLE_ALT_RD=farside.link/libreddit\n#Environment=WHOOGLE_ALT_MD=farside.link/scribe\n#Environment=WHOOGLE_ALT_TL=farside.link/lingva\n#Environment=WHOOGLE_ALT_IMG=farside.link/rimgo\n#Environment=WHOOGLE_ALT_WIKI=farside.link/wikiless\n#Environment=WHOOGLE_ALT_IMDB=farside.link/libremdb\n#Environment=WHOOGLE_ALT_QUORA=farside.link/quetre\n# Load values from dotenv only\n#Environment=WHOOGLE_DOTENV=1\nType=simple\nUser=<username>\n# If installed as a package, add:\nExecStart=<python_install_dir>/python3 <whoogle_install_dir>/whoogle-search --host 127.0.0.1 --port 5000\n# For example:\n# ExecStart=/usr/bin/python3 /home/my_username/.local/bin/whoogle-search --host 127.0.0.1 --port 5000\n# Otherwise if running the app from source, add:\nExecStart=<whoogle_repo_dir>/run\n# For example:\n# ExecStart=/var/www/whoogle-search/run\nWorkingDirectory=<whoogle_repo_dir>\nExecReload=/bin/kill -HUP $MAINPID\nRestart=always\nRestartSec=3\nSyslogIdentifier=whoogle\n\n[Install]\nWantedBy=multi-user.target\n```\nThen,\n```\nsudo systemctl daemon-reload\nsudo systemctl enable whoogle\nsudo systemctl start whoogle\n```\n\n#### Tor Configuration *optional*\nIf routing your request through Tor you will need to make the following adjustments.\nDue to the nature of interacting with Google through Tor we will need to be able to send signals to Tor and therefore authenticate with it.\n\nThere are two authentication methods, password and cookie. You will need to make changes to your torrc:\n  * Cookie\n    1. Uncomment or add the following lines in your torrc:\n       - `ControlPort 9051`\n       - `CookieAuthentication 1`\n       - `DataDirectoryGroupReadable 1`\n       - `CookieAuthFileGroupReadable 1`\n\n    2. Make the tor auth cookie readable:\n       - This is assuming that you are using a dedicated user to run whoogle. If you are using a different user replace `whoogle` with that user.\n\n       1. `chmod tor:whoogle /var/lib/tor`\n       2. `chmod tor:whoogle /var/lib/tor/control_auth_cookie`\n\n    3. Restart the tor service:\n       - `systemctl restart tor`\n\n    4. Set the Tor environment variable to 1, `WHOOGLE_CONFIG_TOR`. Refer to the [Environment Variables](#environment-variables) section for more details.\n       - This may be added in the systemd unit file or env file `WHOOGLE_CONFIG_TOR=1`\n\n  * Password\n    1. Run this command:\n       - `tor --hash-password {Your Password Here}`; put your password in place of `{Your Password Here}`.\n       - Keep the output of this command, you will be placing it in your torrc.\n       - Keep the password input of this command, you will be using it later.\n\n    2. Uncomment or add the following lines in your torrc:\n       - `ControlPort 9051`\n       - `HashedControlPassword {Place output here}`; put the output of the previous command in place of `{Place output here}`.\n\n    3. Now take the password from the first step and place it in the control.conf file within the whoogle working directory, ie. [misc/tor/control.conf](misc/tor/control.conf)\n       - If you want to place your password file in a different location set this location with the `WHOOGLE_TOR_CONF` environment variable. Refer to the [Environment Variables](#environment-variables) section for more details.\n\n    4. Heavily restrict access to control.conf to only be readable by the user running whoogle:\n       - `chmod 400 control.conf`\n\n    5. Finally set the Tor environment variable and use password variable to 1, `WHOOGLE_CONFIG_TOR` and `WHOOGLE_TOR_USE_PASS`. Refer to the [Environment Variables](#environment-variables) section for more details.\n       - These may be added to the systemd unit file or env file:\n          - `WHOOGLE_CONFIG_TOR=1`\n          - `WHOOGLE_TOR_USE_PASS=1`\n\n___\n\n### Manual (Docker)\n1. Ensure the Docker daemon is running, and is accessible by your user account\n  - To add user permissions, you can execute `sudo usermod -aG docker yourusername`\n  - Running `docker ps` should return something besides an error. If you encounter an error saying the daemon isn't running, try `sudo systemctl start docker` (Linux) or ensure the docker tool is running (Windows/macOS).\n2. Clone and deploy the docker app using a method below:\n\n#### Docker CLI\n\nThrough Docker Hub:\n```bash\ndocker pull benbusby/whoogle-search\ndocker run --publish 5000:5000 --detach --name whoogle-search benbusby/whoogle-search:latest\n```\n\nor with docker-compose:\n\n```bash\ngit clone https://github.com/benbusby/whoogle-search.git\ncd whoogle-search\ndocker-compose up\n```\n\nor by building yourself:\n\n```bash\ngit clone https://github.com/benbusby/whoogle-search.git\ncd whoogle-search\ndocker build --tag whoogle-search:1.0 .\ndocker run --publish 5000:5000 --detach --name whoogle-search whoogle-search:1.0\n```\n\nOptionally, you can also enable some of the following environment variables to further customize your instance:\n\n```bash\ndocker run --publish 5000:5000 --detach --name whoogle-search \\\n  -e WHOOGLE_USER=username \\\n  -e WHOOGLE_PASS=password \\\n  -e WHOOGLE_PROXY_USER=username \\\n  -e WHOOGLE_PROXY_PASS=password \\\n  -e WHOOGLE_PROXY_TYPE=socks5 \\\n  -e WHOOGLE_PROXY_LOC=ip \\\n  whoogle-search:1.0\n```\n\nAnd kill with: `docker rm --force whoogle-search`\n\n#### Using [Heroku CLI](https://devcenter.heroku.com/articles/heroku-cli)\n```bash\nheroku login\nheroku container:login\ngit clone https://github.com/benbusby/whoogle-search.git\ncd whoogle-search\nheroku create\nheroku container:push web\nheroku container:release web\nheroku open\n```\n\nThis series of commands can take a while, but once you run it once, you shouldn't have to run it again. The final command, `heroku open` will launch a tab in your web browser, where you can test out Whoogle and even [set it as your primary search engine](https://github.com/benbusby/whoogle#set-whoogle-as-your-primary-search-engine).\nYou may also edit environment variables from your app\u2019s Settings tab in the Heroku Dashboard.\n\n___\n\n### Arch Linux & Arch-based Distributions\nThere is an [AUR package available](https://aur.archlinux.org/packages/whoogle-git/), as well as a pre-built and daily updated package available at [Chaotic-AUR](https://chaotic.cx).\n\n___\n\n### Helm chart for Kubernetes\nTo use the Kubernetes Helm Chart:\n1. Ensure you have [Helm](https://helm.sh/docs/intro/install/) `>=3.0.0` installed\n2. Clone this repository\n3. Update [charts/whoogle/values.yaml](./charts/whoogle/values.yaml) as desired\n4. Run `helm install whoogle ./charts/whoogle`\n\n___\n\n#### Using your own server, or alternative container deployment\nThere are other methods for deploying docker containers that are well outlined in [this article](https://rollout.io/blog/the-shortlist-of-docker-hosting/), but there are too many to describe set up for each here. Generally it should be about the same amount of effort as the Heroku deployment.\n\nDepending on your preferences, you can also deploy the app yourself on your own infrastructure. This route would require a few extra steps:\n  - A server (I personally recommend [Digital Ocean](https://www.digitalocean.com/pricing/) or [Linode](https://www.linode.com/pricing/), their cheapest tiers will work fine)\n  - Your own URL (I suppose this is optional, but recommended)\n  - SSL certificates (free through [Let's Encrypt](https://letsencrypt.org/getting-started/))\n  - A bit more experience or willingness to work through issues\n\n## Environment Variables\nThere are a few optional environment variables available for customizing a Whoogle instance. These can be set manually, or copied into `whoogle.env` and enabled for your preferred deployment method:\n\n- Local runs: Set `WHOOGLE_DOTENV=1` before running\n- With `docker-compose`: Uncomment the `env_file` option\n- With `docker build/run`: Add `--env-file ./whoogle.env` to your command\n\n| Variable             | Description                                                                               |\n| -------------------- | ----------------------------------------------------------------------------------------- |\n| WHOOGLE_URL_PREFIX   | The URL prefix to use for the whoogle instance (i.e. \"/whoogle\")                          |\n| WHOOGLE_DOTENV       | Load environment variables in `whoogle.env`                                               |\n| WHOOGLE_USER         | The username for basic auth. WHOOGLE_PASS must also be set if used.                       |\n| WHOOGLE_PASS         | The password for basic auth. WHOOGLE_USER must also be set if used.                       |\n| WHOOGLE_PROXY_USER   | The username of the proxy server.                                                         |\n| WHOOGLE_PROXY_PASS   | The password of the proxy server.                                                         |\n| WHOOGLE_PROXY_TYPE   | The type of the proxy server. Can be \"socks5\", \"socks4\", or \"http\".                       |\n| WHOOGLE_PROXY_LOC    | The location of the proxy server (host or ip).                                            |\n| WHOOGLE_USER_AGENT   | The desktop user agent to use. Defaults to a randomly generated one.                      |\n| WHOOGLE_USER_AGENT_MOBILE | The mobile user agent to use. Defaults to a randomly generated one.                  |\n| WHOOGLE_USE_CLIENT_USER_AGENT | Enable to use your own user agent for all requests. Defaults to false.           |\n| WHOOGLE_REDIRECTS    | Specify sites that should be redirected elsewhere. See [custom redirecting](#custom-redirecting). |\n| EXPOSE_PORT          | The port where Whoogle will be exposed.                                                   |\n| HTTPS_ONLY           | Enforce HTTPS. (See [here](https://github.com/benbusby/whoogle-search#https-enforcement)) |\n| WHOOGLE_ALT_TW       | The twitter.com alternative to use when site alternatives are enabled in the config. Set to \"\" to disable. |\n| WHOOGLE_ALT_YT       | The youtube.com alternative to use when site alternatives are enabled in the config. Set to \"\" to disable. |\n| WHOOGLE_ALT_RD       | The reddit.com alternative to use when site alternatives are enabled in the config. Set to \"\" to disable. |\n| WHOOGLE_ALT_TL       | The Google Translate alternative to use. This is used for all \"translate ____\" searches.  Set to \"\" to disable. |\n| WHOOGLE_ALT_MD       | The medium.com alternative to use when site alternatives are enabled in the config. Set to \"\" to disable. |\n| WHOOGLE_ALT_IMG      | The imgur.com alternative to use when site alternatives are enabled in the config. Set to \"\" to disable. |\n| WHOOGLE_ALT_WIKI     | The wikipedia.org alternative to use when site alternatives are enabled in the config. Set to \"\" to disable. |\n| WHOOGLE_ALT_IMDB     | The imdb.com alternative to use when site alternatives are enabled in the config. Set to \"\" to disable.  |\n| WHOOGLE_ALT_QUORA    | The quora.com alternative to use when site alternatives are enabled in the config. Set to \"\" to disable. |\n| WHOOGLE_AUTOCOMPLETE | Controls visibility of autocomplete/search suggestions. Default on -- use '0' to disable. |\n| WHOOGLE_MINIMAL      | Remove everything except basic result cards from all search queries.                      |\n| WHOOGLE_CSP          | Sets a default set of 'Content-Security-Policy' headers                                   |\n| WHOOGLE_RESULTS_PER_PAGE          | Set the number of results per page                                           |\n| WHOOGLE_TOR_SERVICE  | Enable/disable the Tor service on startup. Default on -- use '0' to disable.              |\n| WHOOGLE_TOR_USE_PASS | Use password authentication for tor control port. |\n| WHOOGLE_TOR_CONF | The absolute path to the config file containing the password for the tor control port. Default: ./misc/tor/control.conf WHOOGLE_TOR_PASS must be 1 for this to work.|\n\n### Config Environment Variables\nThese environment variables allow setting default config values, but can be overwritten manually by using the home page config menu. These allow a shortcut for destroying/rebuilding an instance to the same config state every time.\n\n| Variable                             | Description                                                     |\n| ------------------------------------ | --------------------------------------------------------------- |\n| WHOOGLE_CONFIG_DISABLE               | Hide config from UI and disallow changes to config by client    |\n| WHOOGLE_CONFIG_COUNTRY               | Filter results by hosting country                               |\n| WHOOGLE_CONFIG_LANGUAGE              | Set interface language                                          |\n| WHOOGLE_CONFIG_SEARCH_LANGUAGE       | Set search result language                                      |\n| WHOOGLE_CONFIG_BLOCK                 | Block websites from search results (use comma-separated list)   |\n| WHOOGLE_CONFIG_BLOCK_TITLE           | Block search result with a REGEX filter on title                |\n| WHOOGLE_CONFIG_BLOCK_URL             | Block search result with a REGEX filter on URL                  |\n| WHOOGLE_CONFIG_THEME                 | Set theme mode (light, dark, or system)                         |\n| WHOOGLE_CONFIG_SAFE                  | Enable safe searches                                            |\n| WHOOGLE_CONFIG_ALTS                  | Use social media site alternatives (nitter, invidious, etc)     |\n| WHOOGLE_CONFIG_NEAR                  | Restrict results to only those near a particular city           |\n| WHOOGLE_CONFIG_TOR                   | Use Tor routing (if available)                                  |\n| WHOOGLE_CONFIG_NEW_TAB               | Always open results in new tab                                  |\n| WHOOGLE_CONFIG_VIEW_IMAGE            | Enable View Image option                                        |\n| WHOOGLE_CONFIG_GET_ONLY              | Search using GET requests only                                  |\n| WHOOGLE_CONFIG_URL                   | The root url of the instance (`https://<your url>/`)            |\n| WHOOGLE_CONFIG_STYLE                 | The custom CSS to use for styling (should be single line)       |\n| WHOOGLE_CONFIG_PREFERENCES_ENCRYPTED | Encrypt preferences token, requires preferences key             |\n| WHOOGLE_CONFIG_PREFERENCES_KEY       | Key to encrypt preferences in URL (REQUIRED to show url)        |\n| WHOOGLE_CONFIG_ANON_VIEW             | Include the \"anonymous view\" option for each search result      |\n\n## Usage\nSame as most search engines, with the exception of filtering by time range.\n\nTo filter by a range of time, append \":past <time>\" to the end of your search, where <time> can be `hour`, `day`, `month`, or `year`. Example: `coronavirus updates :past hour`\n\n## Extra Steps\n\n### Set Whoogle as your primary search engine\n*Note: If you're using a reverse proxy to run Whoogle Search, make sure the \"Root URL\" config option on the home page is set to your URL before going through these steps.*\n\nBrowser settings:\n  - Firefox (Desktop)\n    - Version 89+\n      - Navigate to your app's url, right click the address bar, and select \"Add Search Engine\".\n    - Previous versions\n      - Navigate to your app's url, and click the 3 dot menu in the address bar. At the bottom, there should be an option to \"Add Search Engine\".\n    - Once you've added the new search engine, open your Firefox Preferences menu, click \"Search\" in the left menu, and use the available dropdown to select \"Whoogle\" from the list.\n    - **Note**: If your Whoogle instance uses Firefox Containers, you'll need to [go through the steps here](#using-with-firefox-containers) to get it working properly.\n  - Firefox (iOS)\n    - In the mobile app Settings page, tap \"Search\" within the \"General\" section. There should be an option titled \"Add Search Engine\" to select. It should prompt you to enter a title and search query url - use the following elements to fill out the form:\n      - Title: \"Whoogle\"\n      - URL: `http[s]://\\<your whoogle url\\>/search?q=%s`\n  - Firefox (Android)\n    - Version <79.0.0\n      - Navigate to your app's url\n      - Long-press on the search text field\n      - Click the \"Add Search Engine\" menu item\n        - Select a name and click ok\n      - Click the 3 dot menu in the top right\n      - Navigate to the settings menu and select the \"Search\" sub-menu\n      - Select Whoogle and press \"Set as default\"\n    - Version >=79.0.0\n      - Click the 3 dot menu in the top right\n      - Navigate to the settings menu and select the \"Search\" sub-menu\n      - Click \"Add search engine\"\n      - Select the 'Other' radio button\n        - Name: \"Whoogle\"\n        - Search string to use: `https://\\<your whoogle url\\>/search?q=%s`\n  - [Alfred](https://www.alfredapp.com/) (Mac OS X)\n\t  1. Go to `Alfred Preferences` > `Features` > `Web Search` and click `Add Custom Search`. Then configure these settings\n\t\t   - Search URL: `https://\\<your whoogle url\\>/search?q={query}\n\t\t   - Title: `Whoogle for '{query}'` (or whatever you want)\n\t\t   - Keyword: `whoogle`\n\n\t  2. Go to `Default Results` and click the `Setup fallback results` button. Click `+` and add Whoogle, then  drag it to the top.\n  - Chrome/Chromium-based Browsers\n    - Automatic\n      - Visit the home page of your Whoogle Search instance -- this will automatically add the search engine if the [requirements](https://www.chromium.org/tab-to-search/) are met (GET request, no OnSubmit script, no path). If not, you can add it manually.\n    - Manual\n      - Under search engines > manage search engines > add, manually enter your Whoogle instance details with a `<whoogle url>/search?q=%s` formatted search URL.\n\n### Custom Redirecting\nYou can set custom site redirects using the `WHOOGLE_REDIRECTS` environment\nvariable. A lot of sites, such as Twitter, Reddit, etc, have built-in redirects\nto [Farside links](https://sr.ht/~benbusby/farside), but you may want to define\nyour own.\n\nTo do this, you can use the following syntax:\n\n```\nWHOOGLE_REDIRECTS=\"<parent_domain>:<new_domain>\"\n```\n\nFor example, if you want to redirect from \"badsite.com\" to \"goodsite.com\":\n\n```\nWHOOGLE_REDIRECTS=\"badsite.com:goodsite.com\"\n```\n\nThis can be used for multiple sites as well, with comma separation:\n\n```\nWHOOGLE_REDIRECTS=\"badA.com:goodA.com,badB.com:goodB.com\"\n```\n\nNOTE: Do not include \"http(s)://\" when defining your redirect.\n\n### Prevent Downtime (Heroku only)\nPart of the deal with Heroku's free tier is that you're allocated 550 hours/month (meaning it can't stay active 24/7), and the app is temporarily shut down after 30 minutes of inactivity. Once it becomes inactive, any Whoogle searches will still work, but it'll take an extra 10-15 seconds for the app to come back online before displaying the result, which can be frustrating if you're in a hurry.\n\nA good solution for this is to set up a simple cronjob on any device at your home that is consistently powered on and connected to the internet (in my case, a PiHole worked perfectly). All the device needs to do is fetch app content on a consistent basis to keep the app alive in whatever ~17 hour window you want it on (17 hrs * 31 days = 527, meaning you'd still have 23 leftover hours each month if you searched outside of your target window).\n\nFor instance, adding `*/20 7-23 * * * curl https://<your heroku app name>.herokuapp.com > /home/<username>/whoogle-refresh` will fetch the home page of the app every 20 minutes between 7am and midnight, allowing for downtime from midnight to 7am. And again, this wouldn't be a hard limit - you'd still have plenty of remaining hours of uptime each month in case you were searching after this window has closed.\n\nSince the instance is destroyed and rebuilt after inactivity, config settings will be reset once the app enters downtime. If you have configuration settings active that you'd like to keep between periods of downtime (like dark mode for example), you could instead add `*/20 7-23 * * * curl -d \"dark=1\" -X POST https://<your heroku app name>.herokuapp.com/config > /home/<username>/whoogle-refresh` to keep these settings more or less permanent, and still keep the app from entering downtime when you're using it.\n\n### HTTPS Enforcement\nOnly needed if your setup requires Flask to redirect to HTTPS on its own -- generally this is something that doesn't need to be handled by Whoogle Search.\n\nNote: You should have your own domain name and [an https certificate](https://letsencrypt.org/getting-started/) in order for this to work properly.\n\n- Heroku: Ensure that the `Root URL` configuration on the home page begins with `https://` and not `http://`\n- Docker build: Add `--build-arg use_https=1` to your run command\n- Docker image: Set the environment variable HTTPS_ONLY=1\n- Pip/Pipx: Add the `--https-only` flag to the end of the `whoogle-search` command\n- Default `run` script: Modify the script locally to include the `--https-only` flag at the end of the python run command\n\n### Using with Firefox Containers\nUnfortunately, Firefox Containers do not currently pass through `POST` requests (the default) to the engine, and Firefox caches the opensearch template on initial page load. To get around this, you can take the following steps to get it working as expected:\n\n1. Remove any existing Whoogle search engines from Firefox settings\n2. Enable `GET Requests Only` in Whoogle config\n3. Clear Firefox cache\n4. Restart Firefox\n5. Navigate to Whoogle instance and [re-add the engine](#set-whoogle-as-your-primary-search-engine)\n\n### Reverse Proxying\n\n#### Nginx\n\nHere is a sample Nginx config for Whoogle:\n\n```\nserver {\n\tserver_name your_domain_name.com;\n\taccess_log /dev/null;\n\terror_log /dev/null;\n\n\tlocation / {\n\t    proxy_set_header X-Real-IP $remote_addr;\n\t    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;\n\t    proxy_set_header X-Forwarded-Proto $scheme;\n\t    proxy_set_header Host $host;\n\t    proxy_set_header X-NginX-Proxy true;\n\t    proxy_pass http://localhost:5000;\n\t}\n}\n```\n\nYou can then add SSL support using LetsEncrypt by following a guide such as [this one](https://www.nginx.com/blog/using-free-ssltls-certificates-from-lets-encrypt-with-nginx/).\n\n## Contributing\n\nUnder the hood, Whoogle is a basic Flask app with the following structure:\n\n- `app/`\n  - `routes.py`: Primary app entrypoint, contains all API routes\n  - `request.py`: Handles all outbound requests, including proxied/Tor connectivity\n  - `filter.py`: Functions and utilities used for filtering out content from upstream Google search results\n  - `utils/`\n    - `bangs.py`: All logic related to handling DDG-style \"bang\" queries\n    - `results.py`: Utility functions for interpreting/modifying individual search results\n    - `search.py`: Creates and handles new search queries\n    - `session.py`: Miscellaneous methods related to user sessions\n  - `templates/`\n    - `index.html`: The home page template\n    - `display.html`: The search results template\n    - `header.html`: A general \"top of the page\" query header for desktop and mobile\n    - `search.html`: An iframe-able search page\n    - `logo.html`: A template consisting mostly of the Whoogle logo as an SVG (separated to help keep `index.html` a bit cleaner)\n    - `opensearch.xml`: A template used for supporting [OpenSearch](https://developer.mozilla.org/en-US/docs/Web/OpenSearch).\n    - `imageresults.html`: An \"experimental\" template used for supporting the \"Full Size\" image feature on desktop.\n  - `static/<css|js>`\n    - CSS/JavaScript files, should be self-explanatory\n  - `static/settings`\n    - Key-value JSON files for establishing valid configuration values\n\n\nIf you're new to the project, the easiest way to get started would be to try fixing [an open bug report](https://github.com/benbusby/whoogle-search/issues?q=is%3Aissue+is%3Aopen+label%3Abug). If there aren't any open, or if the open ones are too stale, try taking on a [feature request](https://github.com/benbusby/whoogle-search/issues?q=is%3Aissue+is%3Aopen+label%3Aenhancement). Generally speaking, if you can write something that has any potential of breaking down in the future, you should write a test for it.\n\nThe project follows the [PEP 8 Style Guide](https://www.python.org/dev/peps/pep-0008/), but is liable to change. Static typing should always be used when possible. Function documentation is greatly appreciated, and typically follows the below format:\n\n```python\ndef contains(x: list, y: int) -> bool:\n    \"\"\"Check a list (x) for the presence of an element (y)\n\n    Args:\n        x: The list to inspect\n        y: The int to look for\n\n    Returns:\n        bool: True if the list contains the item, otherwise False\n    \"\"\"\n\n    return y in x\n```\n\n#### Translating\n\nWhoogle currently supports translations using [`translations.json`](https://github.com/benbusby/whoogle-search/blob/main/app/static/settings/translations.json). Language values in this file need to match the \"value\" of the according language in [`languages.json`](https://github.com/benbusby/whoogle-search/blob/main/app/static/settings/languages.json) (i.e. \"lang_en\" for English, \"lang_es\" for Spanish, etc). After you add a new set of translations to `translations.json`, open a PR with your changes and they will be merged in as soon as possible.\n\n## FAQ\n**What's the difference between this and [Searx](https://github.com/asciimoo/searx)?**\n\nWhoogle is intended to only ever be deployed to private instances by individuals of any background, with as little effort as possible. Prior knowledge of/experience with the command line or deploying applications is not necessary to deploy Whoogle, which isn't the case with Searx. As a result, Whoogle is missing some features of Searx in order to be as easy to deploy as possible.\n\nWhoogle also only uses Google search results, not Bing/Quant/etc, and uses the existing Google search UI to make the transition away from Google search as unnoticeable as possible.\n\nI'm a huge fan of Searx though and encourage anyone to use that instead if they want access to other search engines/a different UI/more configuration.\n\n**Why does the image results page look different?**\n\nA lot of the app currently piggybacks on Google's existing support for fetching results pages with JavaScript disabled. To their credit, they've done an excellent job with styling pages, but it seems that the image results page - particularly on mobile - is a little rough. Moving forward, with enough interest, I'd like to transition to fetching the results and parsing them into a unique Whoogle-fied interface that I can style myself.\n\n## Public Instances\n\n*Note: Use public instances at your own discretion. The maintainers of Whoogle do not personally validate the integrity of any other instances. Popular public instances are more likely to be rate-limited or blocked.*\n\n| Website | Country | Language | Cloudflare |\n|-|-|-|-|\n| [https://search.albony.xyz](https://search.albony.xyz/) | \ud83c\uddee\ud83c\uddf3 IN | Multi-choice |  |\n| [https://search.garudalinux.org](https://search.garudalinux.org) | \ud83c\uddeb\ud83c\uddee FI | Multi-choice | \u2705 |\n| [https://search.dr460nf1r3.org](https://search.dr460nf1r3.org) | \ud83c\udde9\ud83c\uddea DE | Multi-choice | \u2705 |\n| [https://s.tokhmi.xyz](https://s.tokhmi.xyz) | \ud83c\uddfa\ud83c\uddf8 US | Multi-choice | \u2705 |\n| [https://search.sethforprivacy.com](https://search.sethforprivacy.com) | \ud83c\udde9\ud83c\uddea DE | English | |\n| [https://whoogle.dcs0.hu](https://whoogle.dcs0.hu) | \ud83c\udded\ud83c\uddfa HU | Multi-choice | |\n| [https://gowogle.voring.me](https://gowogle.voring.me) | \ud83c\uddfa\ud83c\uddf8 US | Multi-choice | |\n| [https://whoogle.privacydev.net](https://whoogle.privacydev.net) | \ud83c\uddeb\ud83c\uddf7 FR | English | |\n| [https://wg.vern.cc](https://wg.vern.cc) | \ud83c\uddfa\ud83c\uddf8 US | English |  |\n| [https://whoogle.hxvy0.gq](https://whoogle.hxvy0.gq) | \ud83c\udde8\ud83c\udde6 CA | Turkish Only | \u2705 |\n| [https://whoogle.hostux.net](https://whoogle.hostux.net) |\u00a0\ud83c\uddeb\ud83c\uddf7 FR | Multi-choice | |\n| [https://whoogle.lunar.icu](https://whoogle.lunar.icu) | \ud83c\udde9\ud83c\uddea DE | Multi-choice | \u2705 |\n| [https://wgl.frail.duckdns.org](https://wgl.frail.duckdns.org) | \ud83c\udde7\ud83c\uddf7 BR | Multi-choice | |\n| [https://whoogle.no-logs.com](https://whoogle.no-logs.com/) | \ud83c\uddf8\ud83c\uddea SE | Multi-choice | |\n| [https://search.rubberverse.xyz](https://search.rubberverse.xyz) | \ud83c\uddf5\ud83c\uddf1 PL | English | |\n| [https://whoogle.ftw.lol](https://whoogle.ftw.lol) | \ud83c\udde9\ud83c\uddea DE | Multi-choice | |\n| [https://whoogle-search--replitcomreside.repl.co](https://whoogle-search--replitcomreside.repl.co) | \ud83c\uddfa\ud83c\uddf8 US | English |  |\n| [https://search.notrustverify.ch](https://search.notrustverify.ch) | \ud83c\udde8\ud83c\udded CH | Multi-choice |  |\n| [https://whoogle.datura.network](https://whoogle.datura.network) | \ud83c\udde9\ud83c\uddea DE | Multi-choice | |\n| [https://whoogle.yepserver.xyz](https://whoogle.yepserver.xyz) | \ud83c\uddfa\ud83c\udde6 UA | Multi-choice | |\n\n\n* A checkmark in the \"Cloudflare\" category here refers to the use of the reverse proxy, [Cloudflare](https://cloudflare.com). The checkmark will not be listed for a site which uses Cloudflare DNS but rather the proxying service which grants Cloudflare the ability to monitor traffic to the website.\n\n#### Onion Instances\n\n| Website | Country | Language |\n|-|-|-|\n| [http://whoglqjdkgt2an4tdepberwqz3hk7tjo4kqgdnuj77rt7nshw2xqhqad.onion](http://whoglqjdkgt2an4tdepberwqz3hk7tjo4kqgdnuj77rt7nshw2xqhqad.onion) | \ud83c\uddfa\ud83c\uddf8 US |  Multi-choice\n| [http://nuifgsnbb2mcyza74o7illtqmuaqbwu4flam3cdmsrnudwcmkqur37qd.onion](http://nuifgsnbb2mcyza74o7illtqmuaqbwu4flam3cdmsrnudwcmkqur37qd.onion) | \ud83c\udde9\ud83c\uddea DE |  English\n| [http://whoogle.vernccvbvyi5qhfzyqengccj7lkove6bjot2xhh5kajhwvidqafczrad.onion](http://whoogle.vernccvbvyi5qhfzyqengccj7lkove6bjot2xhh5kajhwvidqafczrad.onion/) | \ud83c\uddfa\ud83c\uddf8 US | English |\n| [http://whoogle.g4c3eya4clenolymqbpgwz3q3tawoxw56yhzk4vugqrl6dtu3ejvhjid.onion](http://whoogle.g4c3eya4clenolymqbpgwz3q3tawoxw56yhzk4vugqrl6dtu3ejvhjid.onion/) | \ud83c\uddeb\ud83c\uddf7 FR | English |\n| [http://whoogle.daturab6drmkhyeia4ch5gvfc2f3wgo6bhjrv3pz6n7kxmvoznlkq4yd.onion](http://whoogle.daturab6drmkhyeia4ch5gvfc2f3wgo6bhjrv3pz6n7kxmvoznlkq4yd.onion/) | \ud83c\udde9\ud83c\uddea DE | Multi-choice | |\n\n#### I2P Instances\n\n| Website | Country | Language |\n|-|-|-|\n| [http://verneks7rfjptpz5fpii7n7nrxilsidi2qxepeuuf66c3tsf4nhq.b32.i2p](http://verneks7rfjptpz5fpii7n7nrxilsidi2qxepeuuf66c3tsf4nhq.b32.i2p) | \ud83c\uddfa\ud83c\uddf8 US | English |\n\n## Screenshots\n#### Desktop\n![Whoogle Desktop](docs/screenshot_desktop.png)\n\n#### Mobile\n![Whoogle Mobile](docs/screenshot_mobile.png)\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Self-hosted, ad-free, privacy-respecting metasearch engine",
    "version": "0.8.4",
    "project_urls": {
        "Homepage": "https://github.com/benbusby/whoogle-search"
    },
    "split_keywords": [
        "search",
        "metasearch",
        "flask",
        "adblock",
        "degoogle",
        "privacy"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "131330cd8d37ff670a05ccdec2670e1214611247f5ea1d45be6c603096cf1883",
                "md5": "7a90bea6ab210d4bae8586e6fa334d43",
                "sha256": "f17289e1abf02a367082043581ad79143235350efb591f6628080d8e008d2fe1"
            },
            "downloads": -1,
            "filename": "whoogle_search-0.8.4-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "7a90bea6ab210d4bae8586e6fa334d43",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 339578,
            "upload_time": "2023-11-01T22:05:14",
            "upload_time_iso_8601": "2023-11-01T22:05:14.883280Z",
            "url": "https://files.pythonhosted.org/packages/13/13/30cd8d37ff670a05ccdec2670e1214611247f5ea1d45be6c603096cf1883/whoogle_search-0.8.4-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ebff51442c8e053f4d435f0bcc63dad4075c9718e20680e37c031a7f75d055ac",
                "md5": "9689439baa7841fe0974c6589a0a9423",
                "sha256": "e7d7c86dcf87f8ea8741b0eb4fc857332be841c39b0fe36888467e8b12255e43"
            },
            "downloads": -1,
            "filename": "whoogle-search-0.8.4.tar.gz",
            "has_sig": false,
            "md5_digest": "9689439baa7841fe0974c6589a0a9423",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 331308,
            "upload_time": "2023-11-01T22:05:17",
            "upload_time_iso_8601": "2023-11-01T22:05:17.032451Z",
            "url": "https://files.pythonhosted.org/packages/eb/ff/51442c8e053f4d435f0bcc63dad4075c9718e20680e37c031a7f75d055ac/whoogle-search-0.8.4.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-11-01 22:05:17",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "benbusby",
    "github_project": "whoogle-search",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "lcname": "whoogle-search"
}
        
Elapsed time: 0.13894s