GithubHelp home page GithubHelp logo

hiber / scrapedin Goto Github PK

View Code? Open in Web Editor NEW

This project forked from linkedtales/scrapedin

0.0 2.0 1.0 139 KB

LinkedIn Scraper (working for the new website 2019)

License: Apache License 2.0

JavaScript 100.00%

scrapedin's Introduction

Build Status Coverage Status NPM version

Scraper for LinkedIn full profile data.
Unlike others scrapers, it's working in 2019 with their new website.

Install via npm package manager: npm i scrapedin

Usage Example:

const scrapedin = require('scrapedin')

const profileScraper = await scrapedin({ email: '[email protected]', password: 'pass' })
const profile = await profileScraper('https://www.linkedin.com/in/some-profile/')

Documentation:

  • scrapedin(options)

    • options Object:
      • email: LinkedIn login e-mail (required)
      • password: LinkedIn login password (required)
      • isHeadless: display browser (default false)
      • hasToLog: print logs on stdout (default false)
      • proxyAddress: use a proxy address in the format "address:port" (default undefined)
    • returns: Promise of profileScraper function
  • profileScraper(url, waitTimeMs = 500)

    • url string: A LinkedIn profile URL
    • waitTimeMs integer: milliseconds to wait page load before scraping
    • returns: Promise of profile Object
  • profile Object:

    {
      profile: {
        name, headline, location, summary, connections
      },
      positions:[
        { title, company, description, date1, date2,
          roles: [{ title, description, date1, date2 }]
        }
      ],
      educations: [
        { title, degree, date1, date2 }
      ],
      skills: [
        { title, count }
      ],
      recommendations: [
        { user, text }
      ],
      recommendationsCount: {
        received, given
      },
      recommendationsReceived: [
        { user, text }
      ],
      recommendationsGiven: [
        { user, text }
      ],
      accomplishments: [
       { count, title, items }
      ],
      volunteerExperience: {
        title, experience, location, description, date1, date2
      },
      peopleAlsoViewed: [
        { user, text }
      ]
    }

Tips

  • We already built a crawler to automatically collect multiple profiles, so check it out: scrapedin-linkedin-crawler

  • Usually in the first run LinkedIn asks for a manual check, to solve that you should:

    • set isHeadless to false on scrapedin to solve the manual check in the browser.
    • set waitTimeMs with a large number (such as 10000) to you have time to solve the manual check.

    After doing the manual check once you can go back with isHeadless and waitTimeMs previous values and start the scraping.

    We still don't have a solution for that on remote servers without GUI, if you have any idea please tell us!

Contribution

Feel free to contribute. Just open an issue to discuss something before creating a PR.

License

Apache 2.0

scrapedin's People

Contributors

leonardiwagner avatar hiber avatar yosefc avatar

Watchers

James Cloos avatar  avatar

Forkers

mellowle

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.