The Job Application Tracker is a Python-based command-line tool designed to help you keep track of your job applications. This simple program allows you to:
- Add new job applications.
- View all job applications.
- Update the status of job applications.
- Delete job applications.
All job application data is stored in a CSV file (job_applications.csv), providing an easy and efficient way to monitor your job application process.
- Add New Job Application: Input details of a new job you’ve applied for, including the company name, job title, date applied, and application status (e.g., "Applied", "Interviewing", etc.).
- View All Job Applications: View a list of all job applications with the details such as company name, job title, date applied, and application status.
- Update Application Status: Modify the status of an existing job application by specifying the company name and job title.
- Delete Job Application: Remove a job application from the list by providing the company name and job title.
- Python 3.x (No additional libraries required)
- The program uses built-in
csvandosmodules.
- Clone the repository to your local machine:..