Metadata-Version: 2.1
Name: scrapkit
Version: 1.6
Summary: WebScrapping in 3 lines of code
Author: Ali Lodhi
Author-email: alilodhibusiness@gmail.com
Description-Content-Type: text/markdown
Requires-Dist: requests ==2.31.0
Requires-Dist: bs4 ==0.0.2

# ScrapKit 1.5 - WebScrapping is now easy

## Usage

ScrapKit is a very useful Python Package that allows you to get the HTML of any website in just one line of code. You don't need to manually import `requests` and `beautifulsoup` type of module from now

## Syntax

ScrapKit can fetch HTML, Title, Text of the website, you can save the Fetched HTML in a file and fetch the links on the webpage. But After this update you can now also get URLs of the images on any webpage with a very easy syntax

```python
import scrapkit as sk

url = 'https://en.wikipedia.org/wiki/Adolf_Hitler'

# Now you can fetch the URLs of the images on the webpage
st.getImageUrls (url)
```

# Founder

ScrapKit is a very useful python package that is made by the one and only "Ali Lodhi". Ali Lodhi is from Pakistan, He loves to write code in python and try to easy people's work. Recently Ali Lodhi is working on the next update of this package

# Versions

- ScrapKit 1.0 - It provide you to fetch whole HTML of the website
- ScrapKit 1.1 - It provides you to fetch HTML, Title and the Text of the website
- ScrapKit 1.2 - You can save the Fetched HTML in a `.html` file
- ScrapKit 1.3 - Bug Fixes
- ScrapKit 1.4 - You can fetch the links given in any website
- ScrapKit 1.5 - You can also fetch the URL of the image on the webpage
- ScrapKit 1.6 - Now you can get Elements data by using their IDs and Classes
