Reputation: 19
Is it possible to scrap a company's news feed on linkedin? To collect data like how many comments in each post? I wanna do it using python
Upvotes: 0
Views: 2388
Reputation: 865
Start here:
https://developer.linkedin.com/docs/rest-api
Linkedin has a REST API which you can call on for information. You should be able to use that to get posts from a specific company.
The language you use is irrelevant.
Upvotes: 0
Reputation: 1501
It is possible. You could use selenium with python, which is pretty easy to use, scrapy or pyppeteer (pupeeteer with python).
Your question is too broad. Read the documentation of one of those frameworks, and try to code with it.
Upvotes: 3