Bunsly / JobSpy

Jobs scraper library for LinkedIn, Indeed, Glassdoor & ZipRecruiter
https://usejobspy.com
MIT License
555 stars 109 forks source link

Jobs' description is not scraped #121

Closed mingolladaniele closed 4 months ago

mingolladaniele commented 4 months ago

Hi! First of all, this tool is fantastic so thanks to all the people who are working on it.

I'm not able to get the description of the jobs. I noticed that also if i set the full_description argument to True, the column description of the returned dataset containing all the scraped jobs will contains the value None only. Am I doing something wrong?

Thanks for the support! :D I'm using the code below:

scraped_jobs_df = scrape_jobs(
        site_name=["linkedin"],
        search_term="Data Analyst",
        location="London",
        results_wanted=50,
        full_description=True,
        proxy=proxy
        # country_indeed="USA",  # only needed for indeed / glassdoor
    )
cullenwatson commented 4 months ago

try pip install -U python-jobspy and then passing linkedin_fetch_description=True

let met know if that works

mingolladaniele commented 4 months ago

Thanks for your answer, now it's working! 😊