https://github.com/sanix-darker/falla
A search-engine-cli-scraper for more than 15 search engines, including Google. duckduckgo, Bing, Ask, etc...
https://github.com/sanix-darker/falla
Last synced: 6 months ago
JSON representation
A search-engine-cli-scraper for more than 15 search engines, including Google. duckduckgo, Bing, Ask, etc...
- Host: GitHub
- URL: https://github.com/sanix-darker/falla
- Owner: Sanix-Darker
- Created: 2020-04-28T00:26:54.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2025-01-19T03:08:50.000Z (9 months ago)
- Last Synced: 2025-03-27T06:45:02.982Z (6 months ago)
- Language: Python
- Size: 126 KB
- Stars: 21
- Watchers: 1
- Forks: 4
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# FAllA
A search-engine-cli-scraper for more than 15 search engines, including Google. duckduckgo, Bing, Ask, etc...
**NOTE:** For educationnal purpose, am not responsible of the bad use of this tool !## Requirements
- Python (3.x)
- Docker-CE (Not required for all search-engine, just few of them)## How to install
- You need to install all requirements :
```shell-script
pip3 install -r requirements.txt
```
- Install geckodriver :
```shell-script
# For linux users
sudo apt install firefox-geckodriver# For other OS's users, please check releases on https://github.com/mozilla/geckodriver/releases
```- Pull and run the splash-scrap module from docker-hub (Some of search engine need this):
```shell-script
docker run -p 8050:8050 scrapinghub/splash
```- Replace `example.config.txt` by `config.txt` and provide the running IP for the splash-scrap
## How to launch
How to use Falla:
```shell-script
usage: main.py [-h] [-e ENGINE] [-q QUERY]optional arguments:
-h, --help show this help message and exit
-e ENGINE, --engine ENGINE
The search engine
-q QUERY, --query QUERY
The query text
```- To list all search-engine:
```shell-script
$ python3 -m app.main
# output
[+] Falla [the search-engine-scraper]
[+] Listing search-Engines
[+] > bing
[+] > aol
[+] > dogpile
[+] > falla
[+] > ask
[+] > qwant
[+] > duckduckgo
[+] > mojeek
[+] > gibiru
[+] > yandex
[+] > yahoo
[+] > searchencrypt
[+] > iem
[+] > kallasearch
[+] > wosx
```- To search something:
```shell-script
$ python3 -m app.main -e google -q "sanix darker"
# output
```![]()
## Author- Sanix-darker