Scrapes links and text from different search engine and Displays it on a webpage.
DEMO: https://djangosearchengine.herokuapp.com/
- Yahoo
- DuckDuckGo
- Ecosia
- Bing
- Givewater
- Removed Ad links.
- Scrap to the next page.(Incomplete)
Open cmd prompt and write following commands.
Step 1: git clone https://github.com/SandyUndefined/Django-Search-Engine.git
Step 2: cd Django-Search-Engine
Step 3: pip install -r requirements.txt
or pip3 install -r requirements.txt
Step 4: cd SearchEngine
Step 5: manage.py runserver
or python manage.py runserver
Step 6: Open browser and type http://127.0.0.1:8000/
- Add more Search Engine.
To fix a bug or create new feature, follow these steps:
-
Fork the repo
-
Create new branch.(
git checkout -b feature
) -
Make changes or add new changes
-
Commit your changes(
git add -a
,git commit -m 'New feature'
) -
Push to branch (
git push origin feature
) -
Create a pull request
Please click here to report an issue or request a new feature.