Metadata-Version: 2.1
Name: linkedin-profile-scraper-python
Version: 1.0.0
Summary: A python library to scrape user profile data from linkedin automatically.
Home-page: https://linkedin-api.datakund.com/en/latest/
Author: DataKund
Author-email: datakund@gmail.com
License: Apache License 2.0
Description: Linkedin-Profile-Scraper-Python is a python library to scrape profile data of linkedin user using browser automation. 
        It currently runs only on windows.
        
        ### Example
        In this example we first import library, then we login with cookies and then scrape profile.
        ```sh
        from linkedin_profile_scraper_python import *
        true=True;false=False
        list_of_cookies=[
        {
            "domain": ".linkedin.com",
            "expirationDate": 1676463230,
            "hostOnly": false,
            "httpOnly": false,
            "name": "_ga",
            "path": "/",
            "sameSite": "unspecified",
            "secure": false,
            "session": false,
            "storeId": "0",
            "value": "GA1.2.1029585723.1610264105",
            "id": 1
        }]
        #please replace the above sample cookies with your cookies, can see below link of how to fetch cookies
        linkedin.login_cookie(cookies=list_of_cookies)
        response=linkedin.get_profile(profile_link='https://www.linkedin.com/in/abhishek-chaudhary-/')
        data=response["body"]
        #data={"Location": "Chandigarh", "Info": "CEO & Co-founder at DataKund", "Education": "IIT Mandi", "About": "CEO & Co-founder at DataKund", "Experience": "DataKund", "Education_Info": "B.Tech \t\tIIT mandi", "Recommendations": "", "Mutual_Connections": "2 and more..", "Name": "Abhishek CHaudhary", "Interests": "Microsoft\nIBM", "Current Company": "DataKund"}
        ```
        
        This module depends on the following python modules
        * [requests](https://pypi.org/project/requests/)
        * [bot_studio](https://pypi.org/project/bot_studio/)
        
        #### BotStudio
        [bot_studio](https://pypi.org/project/bot_studio/) is needed for browser automation. As soon as this library is imported in code, automated browser will open up. Complete documentation for Linkedin Automation available [here](https://linkedin-api.datakund.com/en/latest/)
        
        ### Installation
        
        ```sh
        pip install linkedin-profile-scraper-python
        ```
        
        ### Import
        ```sh
        from linkedin_profile_scraper_python import *
        ```
        
        ### Login with credentials
        ```sh
        linkedin.login(username="linkedin username",password="linkedin password")
        ```
        
        ### Login with cookies
        ```sh
        linkedin.login_cookie(cookies=list_of_cookies)
        ```
        
        ### Get user profile
        ```sh
        response=linkedin.get_profile(profile_link='profile_link')
        data=response["body"]
        ```
        
        ### Send Feedback to Developers
        ```sh
        bot_studio.send_feedback(feedback="Need help with this ......")
        ```
        
        ### Cookies
        To login with cookies [Edit this Cookie Extension](https://chrome.google.com/webstore/detail/editthiscookie/fngmhnnpilhplaeedifhccceomclgfbg?hl=en) can be added to browser. Please check [this](https://abhishek-chaudhary.medium.com/how-to-get-cookies-of-any-website-from-browser-22b3d6348ed2) link how to get cookies to login to your linkedin.
        
        ### Contact Us
        * [Telegram](https://t.me/datakund)
        * [Website](https://datakund.com)
        
        
Keywords: linkedin python bot_studio scraper user profile data web-scraping
Platform: UNKNOWN
Description-Content-Type: text/markdown
