Skip to content

Commit 52dee8b

Browse files
authored
Create README.md
1 parent 2b8d496 commit 52dee8b

File tree

1 file changed

+29
-0
lines changed
  • web scraping- Find python jobs from a website/scraping

1 file changed

+29
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
**Title: Web Scraping-find python related jobs from a website
2+
3+
## Introduction
4+
This Python script is designed to scrape data from a website containing jobs in the "PYTHON" category and create a txt file for further manipulation and preprocessing. It utilizes the `requests`and `BeautifulSoup` libraries for web scraping.
5+
6+
## Requirements
7+
- Python 3.x
8+
- requests library
9+
- BeautifulSoup library
10+
11+
## Installation
12+
1. Ensure you have Python 3.x installed on your system. If not, download it from the official Python website (https://www.python.org/downloads/) and install it.
13+
2. Install the required libraries by running the following commands in your terminal or command prompt:
14+
```
15+
pip install requests
16+
pip install beautifulsoup4
17+
```
18+
19+
## How to Use
20+
1. Clone or download the script from the GitHub repository (provide GitHub repository link here).
21+
2. Open the script using your favorite Python IDE or text editor.
22+
3. Modify the `url` variable in the script to point to the starting page of the "Mystery" books category you want to scrape.
23+
4. Run the script. It will scrape data from multiple pages of the category and store it in a DataFrame.
24+
5. The resulting DataFrame will contain information about book titles, prices, and star ratings.
25+
26+
## Usage Example
27+
```python
28+
import requests
29+
from bs4 import BeautifulSoup

0 commit comments

Comments
 (0)