Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vikas-ukani/linkedin-scrapper
Python Script that can scrap companies lists from linkedin website,
https://github.com/vikas-ukani/linkedin-scrapper
beautifulsoup4 python selenium selenium-webdriver
Last synced: about 2 months ago
JSON representation
Python Script that can scrap companies lists from linkedin website,
- Host: GitHub
- URL: https://github.com/vikas-ukani/linkedin-scrapper
- Owner: vikas-ukani
- Created: 2024-06-29T12:02:47.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-06-29T12:34:07.000Z (6 months ago)
- Last Synced: 2024-10-11T05:40:59.055Z (3 months ago)
- Topics: beautifulsoup4, python, selenium, selenium-webdriver
- Language: Python
- Homepage:
- Size: 37.6 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### Scrap companies details from LinkedIn based on Search Terms
### Installation Setup
#### Create virtual environment
```bash
python3 -m venv env
```#### Move to environment
```bash
source env/bin/activate
```#### Install Dependency from requirment.txt file
```bash
pip install -r requirments.txt
```----
#### SET CREDENTIALS AND SEARCH TERM
```python# AUTH CREDENTIALS
LINKEDIN_EMAIL = 'LINKEDIN_EMAIL'
LINKEDIN_PASSWORD = 'LINKEDIN_PASSWORD'# Make sure to update search term in array format. => ["Search anything inside braces."]
SEARCH_TERMS = ["staffing recruiting", "recruting agencies"]
```-- Update the serch terms in `main.py file`
#### Run the script
```bash
python main.py
```Now it will open the browser and start scrapping.
### VIDEO EXAMPLE
[![Watch the video](./resource/sample-video.mp4)](./resource/sample-video.mp4)