Finds Jobs on LinkedIn using web-scraping
Find Jobs on LinkedIn
- ๐ This program finds jobs by scraping on LinkedIn
- ๐จโ๐ป Relies on User Input. Accepts: Country, City, State
- ๐ Data about jobs will be generated as .csv format.
Click Me To See Demo
Installation:
# clone the repo
$ git clone https://github.com/KungPaoChick/FindLinkedInjobs.git
change the working directory to FindLinkedInjobs
$ cd FindLinkedInjobs/
install the requirements
$ python -m pip install -r requirements.txt
Usage:
$ python search_jobs.py --help
usage: search_jobs.py [-h] [-p PLACES [PLACES ...]] [-j jobfunction [jobfunction ...]] [-jp job place]
Find Nearby or Faraway Jobs
optional arguments: -h, --help show this help message and exit -p PLACES [PLACES ...], --place PLACES [PLACES ...] Enter country/city/state. One or more places to look jobs from. -j jobfunction [jobfunction ...], --jobfunction jobfunction [jobfunction ...] Searches Job Specification in your area. (e.g software-engineer) -jp job place, --jobplace job place Searches The Specified Job in the Specified Place. (e.g teacher iowa)
To search for only one place:
$ python search_jobs.py -p san-jose
To search for more than one place:
$ python search_jobs.py -p california texas arizona
To search a Specific job in your area:
$ python search_jobs.py -j teacher
To search Specific more than one job in your area:
$ python search_jobs.py -j teacher engineer designer
To search a Specific Job in a Specific Location:
$ python search_jobs.py -jp designer san-jose
Data collected will be stored in an individual csv file inside of its respective folder (e.g
-jose.csv)