A CLI application to help you track job applications and provide metrics on them.
This can help you answer questions like:
- In how many companies have I been shortlisted yet?
- What companies rejected my profile?
- In how many companies I've given tech interviews?
- In how many HR rounds I got rejected?
- How many offers do I have? Though you won't forget this one!
And the list goes on.
The documentation for this project is created using Mkdocs and deployed on GitHub Pages.
You can find the documentation here: https://aditya-gupta1.github.io/track-job-applications/
Prerequisites: Python
Run the following command to install the application:
pip install track-job-applications
// add a job application
> track-job add CompanyX SDE-1
// display all the applications
> track-job ls
// update the application details
> track-job update company <application-id> <new company name>
// know more about any command
> track-job <command> --help
// know about all the commands available
> track-job --help
// get a report on all the applications
> track-job report
// get report on all the applications made within a date range
> track-job report -s <start date in YYYY-MM-DD> -e <end date in YYYY-MM-DD>
// total applications rejected
> track-job report status rejected
Refer to the commands section in the documentation for the list of commands available.
Note: All the commands have a
--start-date
or-s
argument to mention the start date and--end-date
or-e
argument to specify the end date, in case the command is to run for applications made within a date range. Also, the data model in which applications are stored can be found in references section in the docs.
Contributions for docs as well as code are welcomed. Head over to the Contributing guidelines for steps to set up a development environment, contributing to code and contributing to docs.
Feel free to start a discussion on anything you want to suggest or have more clarity on.