Skip to content

A locally run recent job aggregator with REPL interface and SQLite type query syntax.

License

Notifications You must be signed in to change notification settings

Yukigeshiki/job-hunt-v2-rust

Repository files navigation

job-hunt-v2-rust

build

A locally run recent job aggregator written in Rust, with a SQLite database, and REPL. Jobs are scraped from job sites and added to the database at start-up and then each time the database is refreshed.

To query jobs you use simplified SQLite syntax. For example, to fetch all senior jobs with the upper bound for remuneration above 100 (if a listing does not include remuneration, the upper and lower bounds will be set at 0), and order them by date posted, you would enter:

select jobs where title like "%senior%" and rem_upper > 100 order by date_posted;

Table fields for querying include:

title text not null
company text not null
date_posted date not null
location text
remuneration text
tags json
apply text not null
site text not null
rem_lower int
rem_upper int

To refresh the database enter:

refresh

And to exit you can use CTRL-C or enter:

exit

There are currently scrapers for a number of Web3 job sites. I will be adding other sites in the future too. Sites included at the moment:

How to Run Job Hunt

First make sure you have Rust installed. To do this you can follow the instructions found here.

Once installation is complete, clone this repo and from the root directory run:

cargo build --release

Then run:

./target/release/jobhunt

You should see the below info messages followed by a prompt. Happy Job Hunting!

Populating local database. This shouldn't take long...
Population completed successfully! Welcome, please begin your job hunt by entering a query.

This project is usable but still under Construction! 🚧

About

A locally run recent job aggregator with REPL interface and SQLite type query syntax.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages