This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import csv | |
import pandas as pd | |
from datetime import datetime | |
months = { | |
'JAN': 1, | |
'FEB': 2, | |
'MAR': 3, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" Indent automatically depending on filetype | |
filetype indent on | |
set autoindent | |
" Turn on line numbering. Turn it off with "set nonu" | |
set number | |
" Set syntax on | |
syntax on |