{"id":20011521,"url":"https://github.com/y-agg/linkedin-bot","last_synced_at":"2026-05-11T11:34:02.316Z","repository":{"id":129548861,"uuid":"281928938","full_name":"y-agg/Linkedin-Bot","owner":"y-agg","description":"Increase your likelihood to grow your connections and potentially to get interview opportunities on LinkedIn by increasing visibility of your profile by sending the connect request. ","archived":false,"fork":false,"pushed_at":"2020-07-28T15:05:31.000Z","size":4820,"stargazers_count":1,"open_issues_count":1,"forks_count":2,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-03-02T02:17:26.739Z","etag":null,"topics":["automation","linkedin","linkedin-connect","linkedin-login","linkedinbot","python","python3","selenium","selenium-python","selenium-webdriver"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/y-agg.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-07-23T11:07:38.000Z","updated_at":"2023-09-04T10:35:25.000Z","dependencies_parsed_at":"2023-05-26T19:15:32.520Z","dependency_job_id":null,"html_url":"https://github.com/y-agg/Linkedin-Bot","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/y-agg/Linkedin-Bot","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/y-agg%2FLinkedin-Bot","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/y-agg%2FLinkedin-Bot/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/y-agg%2FLinkedin-Bot/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/y-agg%2FLinkedin-Bot/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/y-agg","download_url":"https://codeload.github.com/y-agg/Linkedin-Bot/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/y-agg%2FLinkedin-Bot/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32893339,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-10T13:40:02.631Z","status":"online","status_checked_at":"2026-05-11T02:00:05.975Z","response_time":120,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["automation","linkedin","linkedin-connect","linkedin-login","linkedinbot","python","python3","selenium","selenium-python","selenium-webdriver"],"created_at":"2024-11-13T07:26:20.683Z","updated_at":"2026-05-11T11:34:02.294Z","avatar_url":"https://github.com/y-agg.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# [Linkedin-Bot](https://github.com/y-agg/Linkedin-Bot)\n\nIncrease your likelihood to grow your connections and potentially to get interview opportunities on LinkedIn by increasing visibility of your profile by sending the connect request.\n\n## About\n\nLinkedIn is the world's largest professional network on the internet. You can use LinkedIn to find the right job or internship, connect and strengthen professional. A social network that focuses on professional networking and career development. You can use LinkedIn to display your resume, search for jobs, and enhance your professional reputation by posting updates and interacting with other people.  The first step in LinkedIn is to make connections and which will help in increasing the visibility of users across the platform. \n\n![Code Screenshot](./screenshots/code.png)\n\n## Requirements\n\nLinkedInBot was developed under [Pyhton 2.7](https://www.python.org/downloads/).\n\nNote: Python 2.7.9 and later (on the python2 series), and Python 3.4 and later include pip by default, so you may have pip already. Otherwise, you can install [easy_install](https://pythonhosted.org/setuptools/easy_install.html) `sudo apt-get install python-setuptools` to install [pip](https://pypi.python.org/pypi/pip) `sudo easy_install pip`.\n\n- [Selenium](http://www.seleniumhq.org/), for browser automation: `pip install Selenium`\n\nFor Chrome, first get the [webdriver](https://sites.google.com/a/chromium.org/chromedriver/downloads) then put it in the same folder than the bot if you are on Windows, or in the `/usr/bin` folder if you are on OS X.\n\n## Inputs\n\nWhen `main.py` will is executed, certain inputs are asked from the user:\n- Email: Users need to enter the valid Email Address to the input field. [INPUT TYPE: String (words)]\n- Password: Users need to enter the valid password corresponding to the Email address entered in the input field. [INPUT TYPE: String (words)]\n- No Connect: Users need to specify How many connect request program need to send. [INPUT TYPE: INTEGER (Number)]\n- Keyword: Users need to enter the type of people bot need to connect on Linkedin. Like \"Web developer\", \"Marketing\", \"HR\". [INPUT TYPE: String (words)]\n\n\n## Configuration (Optional)\nYou can hard code the variable value in the program to avoid entering multiple times when you run the program and to do so\nBefore you run the bot, replace the configuration portion of the script. This will include your account login information (email, password, etc.) and other logical values to make the bot more of your own. It's that simple!\n\n```python\n# Configurable Constants\n#--------------------------\nself.username= input(\"Enter Username/Email:\") #line 14 \n#Replace With \nself.username= 'YOUR EMAIL/USERNAME FOR LINKEDIN ACCOUNT'\n#--------------------------\nself.password= input(\"Enter Password:\") #line 15\n#Replace With \nself.password= 'YOUR PASSWORD FOR LINKEDIN ACCOUNT'\n#--------------------------\nself.no_of_connect= input(\"Enter no_of_connect:\") #line 16\n#Replace With\nself.no_of_connect= 'THE NUMBER OF PEOPLE YOU WANT TO CONNECT WITH'\n#--------------------------\nself.keyword = input(\"Enter Keyword/Text:\") #line 17 \n#Replace With \nself.keyword = 'KEYWORD THAT BOT WILL TARGET'\n#--------------------------\n```\n\n## Run\nMake sure you are in the correct folder and run the following command: `python main.py`\n\n## Enhancements\nPlease feel free to message me or open an issue if you have an idea for an enhancement! Seems like people are starting to use this and I would like to improve it.\n\n## LICENCE\n[wtfpl](http://www.wtfpl.net/about/)\n\n## Connect\n\n\u003cp align='center'\u003e\n\u003ca href=\"https://twitter.com/yashaggarwal_\"\u003e\n  \u003cimg src=\"https://img.shields.io/badge/twitter-%231DA1F2.svg?\u0026style=for-the-badge\u0026logo=twitter\u0026logoColor=white\" /\u003e\n\u003c/a\u003e\u0026nbsp;\u0026nbsp;\n\u003ca href=\"https://www.linkedin.com/in/aggarwalyash\"\u003e\n  \u003cimg src=\"https://img.shields.io/badge/linkedin-%230077B5.svg?\u0026style=for-the-badge\u0026logo=linkedin\u0026logoColor=white\" /\u003e\n\u003c/a\u003e\u0026nbsp;\u0026nbsp;\n\u003ca href=\"mailto:yash.aggarwal.7545@gmail.com\"\u003e\n  \u003cimg src=\"https://img.shields.io/badge/email me-%23D14836.svg?\u0026style=for-the-badge\u0026logo=gmail\u0026logoColor=white\" /\u003e\n\u003c/a\u003e\n \n\u003c/p\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fy-agg%2Flinkedin-bot","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fy-agg%2Flinkedin-bot","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fy-agg%2Flinkedin-bot/lists"}