This is a Flask-based web application designed to perform searches on various search engines and parse the results. It's compatible with both Windows and Linux operating systems.
- Might need curl on windows but that's about it.
- Flask web server
- Search functionality for multiple search engines
- Parsing of search results
- Display of search results in a web interface
Before running the application, ensure you have the following installed:
- Python 3.x
- Flask
- An internet connection
- Clone the repository or download the source code.
- Navigate to the project directory.
It's recommended to set up a virtual environment for Python projects. Here's how you can do it:
py -3 -m venv venv
venv\Scripts\activate
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
To start the application, run:
python app.py
The application will be accessible at http://127.0.0.1:5000/.
Open your web browser and navigate to http://127.0.0.1:5000/. Enter your search keywords and select a search engine. Submit the search to view the results.