[ Project name placeholder ]

Contributors:

Python 3.11

Create and activate virtual environment

% python3.11 -m venv venv
% source venv/bin/activate (Linux)
> venv\Scripts\activate.bat (Windows TBC)

Install dependencies (while having active virtual environment)

% pip install -r requirements/core.txt

Starting scrapy shell

% cd job_scrapper
% scrapy shell

Exiting Scrapy shell (while in Scrapy shell)

>>> exit()

Run custom Spider and saving results to the JSON file

% cd job_scrapper
% scrapy crawl protocol -O output.json

Installing dependencies and creating chart's

% cd chart
% yarn 
% yarn dev