This is a bot that automatically connects to people on LinkedIn. It uses Selenium to automate the process of logging in and connecting to people.
- Python 3.6+
- Selenium (
pip install selenium
) - python-dotenv (
pip install python-dotenv
) - ChromeDriver (Recommend using driver from this repo as it is already configured to work with the bot or download the latest version here)
- Clone the repo
- Install the prerequisites
- Copy the
.env.example
file and rename it to.env
and fill in the required fields (see below) - Run the bot (
python main.py
) - Enter the keywords you want to search for
- Enter the location you want to search in (leave blank for no filter, split multiple locations with a comma (
,
) and no spaces e.g.London,United Kingdom
) - It will open a Chrome window and start connecting to people
- Once it has finished it will close the Chrome window and stop the bot
- You can find the people it connected to in the
./connections
folder - Enjoy!
MY_NAME
- Your name (this is used to send notes to the people you connect to)COMPANY_NAME
- The name of your company (this is used to send notes to the people you connect to)COMPANY_DESCRIPTION
- A short description of your company (this is used to send notes to the people you connect to)EMAIL
- Your LinkedIn emailPASSWORD
- Your LinkedIn password (this will be stored in plain text in the.env
file so make sure to keep it safe)SEND_WITH_NOTE
- Whether to send a note with the connection request (set totrue
orfalse
) (only set totrue
if your account has LinkedIn Premium)