Metadata-Version: 2.1
Name: scrapkit
Version: 1.2
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.2 - 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. But After this update you can now also save the html file with a very easy Syntax

```python
import scrapkit as sk

url = 'https://www.youtube.com'

# Now you can save the fetched HTML in a File
st.saveHTML (url, filename='youtube.html')

# Fetch the Title of the website
title = st.getTitle (url)
print (title)

# Fetch the HTML of the website
html = st.getHTML (url)
print (html)

# Fetch the Text of the website
text = st.getText (url)
print (text)
```

# 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 only HTML of the website
- ScrapKit 1.1 - It provides you to fetch HTML, Title and the Text of the website
- ScrapKit 1.2 - Now you also save the Fetched HTML in a `.html` file
