Skip to main content

Scrape public jobs postings from LinkedIn in native python without selenium or any headless browser.

Project description

Linkedin Jobs PyScraper

Install Package from Pypi

  1. Install it using pip.
pip install linkedin-jobs-pyscraper

Example Usage

  1. Use it in your code
from linkedin_jobs_pyscraper.models.search.searcher import Searcher
from linkedin_jobs_pyscraper.models.filters import filters
from linkedin_jobs_pyscraper.linkedin_jobs_scraper import LinkedInJobsPyScraper

## create searach query with configurations
searcher = Searcher(
    search_pages_per_search_term = 4,
    search_terms = ['data analyst', 'data scientist'],
    batch_size = 5,
    output_filepath = 'out.csv',
    location = 'Germany'
    )

search_filter = filters.Filters(
    experience= filters.ExperienceLevelFilters.INTERNSHIP,
    job_type= filters.TypeFilters.INTERNSHIP,
    relevance= filters.RelevanceFilters.RECENT,
    time= filters.TimeFilters.MONTH
    )
scraper = LinkedInJobsPyScraper(searcher= searcher, filters=search_filter) 
scraper.start()

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

linkedin-jobs-pyscraper-1.0.0.tar.gz (6.8 kB view hashes)

Uploaded Source

Built Distribution

linkedin_jobs_pyscraper-1.0.0-py3.7.egg (22.6 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page