Skip to content

danited1234/linkedin_scraper

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Linkedin Scraper

LinkdOutScraper is a Python library for scraping data from Linkedin

Installation

Use the package manager pip to install LinkedOutScraper.

pip install LinkdOutScraper==0.0.1

Scrape Multiple Profiles With A Single Keyword

from LinkedOutScraper import key_search
file_path= "somefile/path/with/csv/extension"
search = key_search.MultiProfiles(username="someusername@example.com",password="password",headless=True,file_path=file_path)
search.login()
profiles = search.get_multiple_profiles("Google")

Scrape A Single Profile Using Their Profile Link

from LinkedOutScraper import profile_scraper
search = profile_scarper.Linkedin(username="someusername@example.com",password="password")
search.login()
profiles = search.get_profiles("https://www.linkedin.com/in/muzammal-akram/")
for variables in profiles:
    print(variables)

Scrape Job Results By Entering A Query

from LinkedOutScraper import job_search
search = job_search.JobSearch("someusername@example","password")
search.login()
search.find_jobs("Senior Python Developer")

About

Linkedin Scraper

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages