spinlud / py-linkedin-jobs-scraper

MIT License
311 stars 86 forks source link

Using 'experience' filter returns no results found. #17

Closed AnkitaTW closed 2 years ago

AnkitaTW commented 3 years ago

I have tried applying and using the experience filter in the query. But the query returns no results found with any value for experience filter.

When I remove the filter for 'experience' I get the job postings. Can you please help me resolve this?

    Query(
        query='Data Engineer',
        options=QueryOptions(
            locations=['India'],
            optimize=False,
            limit=25,
            filters=QueryFilters(
                company_jobs_url='https://www.linkedin.com/jobs/search/?f_C=1441%2C17876832%2C791962%2C2374003%2C18950635%2C16140%2C10440912',  # Filter by companies
                relevance=RelevanceFilters.RECENT,
                time=TimeFilters.MONTH,
                type=[TypeFilters.FULL_TIME],
                experience=[ExperienceLevelFilters.MID_SENIOR,ExperienceLevelFilters.ENTRY_LEVEL,ExperienceLevelFilters.ASSOCIATE,ExperienceLevelFilters.DIRECTOR],
            )
        )
    )
]
spinlud commented 3 years ago

Hi there, it seems correct to have zero results with your query filters:

image

As you can see, there are no jobs available if you specify an experience filter.