The Simple Web Browser is a basic web browser built using Python and PyQt5. It provides a straightforward graphical user interface (GUI) to navigate through websites and browse the internet. The browser allows users to enter URLs, navigate back and forward, reload pages, and return to the default homepage.
Basic web browsing functionality. Navigation buttons (Back, Forward, Reload, Home). URL bar for entering website addresses. Simple and easy-to-use user interface.
Before running the web browser, make sure you have the following installed: Python 3.x PyQt5 PyQtWebEngine
Clone this repository to your local machine or download the source code as a ZIP file. Install the required dependencies using pip:
pip install PyQt5 PyQtWebEngine
To launch the web browser, execute the Python script:
python simple_web_browser.py
The web browser window will open, and you can start browsing the internet by entering URLs in the URL bar and using the navigation buttons.
Contributions to this project are welcome! If you find any issues or have suggestions for improvements, please feel free to submit a pull request or open an issue.
This project is licensed under the MIT License - see the LICENSE file for details.
The Simple Web Browser was inspired by the desire to create a simple and educational Python project for web scraping beginners. It serves as a starting point for understanding how web browsers work and can be extended to include more advanced features.