Metadata-Version: 2.2
Name: job_scraper_lib
Version: 0.1
Summary: A Python library for scraping job listings from company career pages
Home-page: https://github.com/yourusername/job_scraper_lib
Author: Avanish Singh
Author-email: suryanshskcontact@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: selenium
Requires-Dist: webdriver_manager
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# Job Scraper Library

## Overview
This Python library allows users to **automatically extract job listings** from a company's career page. The library scrapes job postings and updates the data **automatically** to ensure real-time job availability.

## Features
- âœ… Extracts job listings from any career page URL
- âœ… Automatically updates job data
- âœ… Easy to integrate into job board websites
- âœ… Uses **Selenium** and **WebDriver-Manager** for automation

## Installation
Before using the library, install the required dependencies:

```bash
pip install selenium webdriver-manager
```

## Usage
Hereâ€™s how to use the library to scrape job postings:

```python
from job_scraper import JobScraper

# Initialize scraper with career page URL
scraper = JobScraper("https://www.google.com/about/careers/applications/jobs/results?has_remote=true")

# Get job listings
jobs = scraper.get_jobs()

# Print job details
for job in jobs:
    print(job)
```

## Requirements
- Python 3.7+
- Google Chrome (Latest Version)
- ChromeDriver (Managed automatically by `webdriver-manager`)

## Troubleshooting
### "ImportError: No module named 'selenium'"
Run:
```bash
pip install selenium webdriver-manager
```

### "ChromeDriver Version Error"
If ChromeDriver version is outdated, update it:
```bash
pip install --upgrade webdriver-manager
```

## Contributing
Feel free to submit **pull requests** for improvements or bug fixes.

## License
This project is **open-source** under the MIT License.

