LinkedIn Send Messages Automatically in python

Here we are going to write code of few lines which will send message on linkedin with bot-studio library. Below are the steps to move on with:-

  1. Install bot-studio
pip install bot-studio

2. Import bot-studio

from bot_studio import *

3. Create a linkedin object which will be used to perform actions on linkedin and login as well. You can see here to login with cookies.

4. Send the message by profile link

5. Send the message by name will search the user and then will send the message to first search result.

--

--