linkedtales / scrapedin

LinkedIn Scraper (currently working 2020)
Apache License 2.0
597 stars 174 forks source link

Can I search for keyword in “Licenses & certifications” #145

Open francesco1119 opened 4 years ago

francesco1119 commented 4 years ago

I'm currently studying to obtain a Microsoft MCSA certification.

I would like to scrap LinkedIn in order to understand how many people in the World own a MCSA certification.

Can we search for such data through your library?

TSalvin commented 3 years ago

Hey, I've been using this library myself and managed to get this to also scrape certifications by adding this to profileScraperTemplate.js

certifications: { selector: '#certifications-section li:not(.pv-entity__position-group-role-item)', fields: { title: 'h3', company: 'div.pv-certifications__summary-info.pv-entity__summary-info.pv-entity__summary-info--background-section > p:nth-child(2) > span:nth-child(2)', date: 'div.pv-certifications__summary-info.pv-entity__summary-info.pv-entity__summary-info--background-section > p:nth-child(3) > span:nth-child(2)' } },

francesco1119 commented 3 years ago

I have no experience with Node.js maybe this is the chance to learn something new. Do you know if LinkedIn API let me dig into the Certification Section? I haven't found any information about that.

Or do you suggest I just need to write a LinkedIn crawler and use your library?

leonardiwagner commented 3 years ago

@francesco1119 you don't need to start it from the scratch, we also have a crawler: https://github.com/linkedtales/scrapedin-linkedin-crawler

francesco1119 commented 3 years ago

oh, boy, I will definitely test it out and give you a feedback. Thank you

leonardiwagner commented 3 years ago

Please open a PR, or wait for someone open a PR for that before closing this issue

francesco1119 commented 3 years ago

I created the Pull Request #147