Skip to content

Instantly share code, notes, and snippets.

View osiemomatrixx's full-sized avatar
💭
ThinkCOD

Syrus Mathew osiemomatrixx

💭
ThinkCOD
  • Centura Health
  • Denver colorado
View GitHub Profile
#!/bin/bash
#####################################################
# Name: Bash CheatSheet for Mac OSX
#
# A little overlook of the Bash basics
#
# Usage:
#
# Author: J. Le Coupanec
# Date: 2014/11/04
@osiemomatrixx
osiemomatrixx / ExcelCompare.py
Created September 30, 2021 19:41 — forked from VankatPetr/ExcelCompare.py
Compare 2 Excel files and create an Excel diff using Python
import pandas as pd
from pathlib import Path
#define parameters
#path to files
path_old=Path(r'C:\Users\owner\Documents\old.xlsx')
path_new=Path(r'C:\Users\owner\Documents\new.xlsx')
#list of key column(s)
key=['id']
#sheets to read in