Metadata-Version: 2.4
Name: linkedin-search-job
Version: 1.1.4
Summary: A python library to search keyword in linkedin jobs and scrape search results data from linkedin automatically.
Home-page: https://linkedin-api.datakund.com/en/latest/
Author: DataKund
Author-email: datakund@gmail.com
License: Apache License 2.0
Keywords: linkedin python datakund scraper job search search-results data web-scraping jobs-data
Description-Content-Type: text/markdown
Requires-Dist: requests
Requires-Dist: datakund
Dynamic: author
Dynamic: author-email
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: keywords
Dynamic: license
Dynamic: requires-dist
Dynamic: summary

Linkedin-Search-Job is a python library to search keyword in jobs and then scrape jobs data on linkedin using browser automation. 
It currently runs only on windows.

### Example
In this example we first import library, then we login with cookies and then search and scrape data of a jobs.
```sh
from linkedin_search_job import *
linkedin.login_cookie(cookies=list_of_cookies)
linkedin.search_jobs(keyword='python developer')
linkedin.enter_job_location(location='Mohali')#optional
response=linkedin.jobs_results()
data=response['body']
#data=[{"Link": "Link"}]
```

This module depends on the following python modules
* [requests](https://pypi.org/project/requests/)
* [datakund](https://pypi.org/project/datakund/)

#### DataKund
[datakund](https://pypi.org/project/datakund/) is needed for browser automation. As soon as this library is imported in code, automated browser will open up. Complete documentation for Linkedin Automation available [here](https://linkedin-api.datakund.com/en/latest/)

### Installation

```sh
pip install linkedin-search-job
```

### Import
```sh
from linkedin_search_job import *
```

### Login with credentials
```sh
linkedin.login(username="",password="")
```

### Login with cookies
```sh
linkedin.login_cookie(cookies=list_of_cookies)
```

### Search in Jobs
```sh
linkedin.search_jobs(keyword='web development')
```

### Get Search Results
```sh
response=linkedin.jobs_results()
data=response['body']
```

### Cookies
To login with cookies [Edit this Cookie Extension](https://chrome.google.com/webstore/detail/editthiscookie/fngmhnnpilhplaeedifhccceomclgfbg?hl=en) can be added to browser

### Contact Us
* [Telegram](https://t.me/datakund)
* [Website](https://datakund.com)

