Skip to content

Latest commit

 

History

History
68 lines (41 loc) · 2.14 KB

README.md

File metadata and controls

68 lines (41 loc) · 2.14 KB

python-web-scrapping-tool

A simple web-scrapping-GUI tool made with python

Demo

Main UI

image

Adding URL

image

Fetching URL data

image

Getting text from data

image

formatting the text

image

Filter result by using tags

image

Traverse through the result

image

Packages Used

Requirements

  • Python version >= 3.6
  • Need Tkinter
  • Need to have pip installed

NOTE : I am using python version 3.8.10

Run in your local machine

  • create a virtual environment (not necessary but recommended)
  • clone the project to your local machine by doing git clone https://github.com/vaibhav135/python-web-scrapping-tool.git (for HTTPS)
  • Change directory to the root of the project
  • then install the requirements.txt
  • install Tkinter in your machine
  • After completing the above steps just enter python3 main.py in your terminal
  • Voila!!! it is running

To install files from requirements.txt

  • change directory to the root of the project
  • then do pip3 install -r requirements.txt or just use pip

NOTE: you need to have pip installed for this

To install Tkinter in your machine

Visit here to install tkinter

To Install pip in your machine

Visit https://pip.pypa.io/en/stable/installation/