Metadata-Version: 2.4
Name: linkedin-jobs-api
Version: 2.0.0
Summary: Official Python SDK for LinkedIn Jobs API
Project-URL: Homepage, https://github.com/atharv01h/Linkedin-Jobs-Api
Project-URL: Repository, https://github.com/atharv01h/Linkedin-Jobs-Api
Project-URL: Bug Tracker, https://github.com/atharv01h/Linkedin-Jobs-Api/issues
Author-email: Atharv Hatwar <atharv@example.com>
License: MIT
Keywords: api,jobs,linkedin,scraper,sdk
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.10
Requires-Dist: requests>=2.28.0
Description-Content-Type: text/markdown

# LinkedIn Jobs API Python SDK

The official Python SDK for the LinkedIn Jobs API.

## Installation

```bash
pip install linkedin-jobs-api
```

## Usage

```python
from linkedin_jobs_api import LinkedInJobsClient

client = LinkedInJobsClient()
jobs = client.search_jobs("Backend Developer", "Remote", "past_month", 1)
print(jobs)
```

For more information, please visit the [Main GitHub Repository](https://github.com/atharv01h/Linkedin-Jobs-Api).
