Skip to content

ntpa/record-job-app

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

record-job-app

Record a job application in CSV format for standalone use, database use or for your favorite spreadsheet application.

Requirements

Usage

python3 record-job-app.py [-h] [--output-file csv-file] company-name job-title job-id

Overview

Run the script above in your terminal of choice. The script takes an optional output file parameter, that when given will append the job application in CSV format. Otherwise it will print the result out to standard output.

Below is an example of a table definition if you wish to copy the CSV data into a database(potential streamlined support for this in the future).

The below assumes PostgreSQL ('text' datatype is Postgre specific)

CREATE TABLE jobapps (
date date NOT NULL,
company text NOT NULL,
job_title text NOT NULL,
job_id text
);

As always, if you wish to contribute, or recommend implementations please do not hesitate to reach out!

About

Record a job application in CSV format

Topics

Resources

Stars

Watchers

Forks

Languages