Linkedin crawler to search and collect my connections
$ sudo apt-get update && sudo apt-get upgrade
$ sudo apt-get install virtualenv python3 python3-dev python-dev gcc libpq-dev libssl-dev libffi-dev build-essentials
$ virtualenv -p /usr/bin/python3 .env
$ source .env/bin/activate
$ pip install -r requirements.txt
$ python linkedin.py <linkedin-username> <linkedin-password>
- Open chrome browser
- Access linkedin login page to authenticate
- Access page with all your connections
- Access page by page to get the profile links of each person
- Access the profile to extract: profile picture, name, occupation, location, email and phone
- Write the result in connections.csv
Any contribution is appreciated.
- Clone the project:
$ git clone https://github.com/lucasayres/linkedin-crawler-connections.git
- Make your changes in a new git branch:
$ git checkout -b my-branch master
-
Add your changes.
-
Push your branch to Github.
-
Create a PR to master.