Metadata-Version: 2.1
Name: linkedin-scrape-comments
Version: 1.0.0
Summary: A python library to scrape post comments 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-Scrape-Comments is a python library to scrape comments of a post on linkedin 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 comments of a post.
        ```sh
        from linkedin_scrape_comments 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)
        linkedin.open("https://www.linkedin.com/posts/apeksha-jogiya-0144123b_hrinsight-hrthings-hrjobs-activity-6765881152038322176-WS3F")
        response=linkedin.get_comments()
        data=response['body']
        ```
        
        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-scrape-comments
        ```
        
        ### Import
        ```sh
        from linkedin_scrape_comments 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 Comments
        ```sh
        response=linkedin.get_comments()
        data=response['body']
        ```
        
        ### Load more comments
        ```sh
        linkedin.click_load_more()
        ```
        
        ### 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 post comments data web-scraping
Platform: UNKNOWN
Description-Content-Type: text/markdown
