Skip to content

Instantly share code, notes, and snippets.

View wvigiloliver's full-sized avatar

Will Vigil-Oliver wvigiloliver

View GitHub Profile
@wvigiloliver
wvigiloliver / pipenv_cheat_sheet.md
Created January 6, 2020 03:16 — forked from bradtraversy/pipenv_cheat_sheet.md
Pipenv cheat sheet for common commands

Pipenv Cheat Sheet

Install pipenv

pip3 install pipenv

Activate

pipenv shell
@wvigiloliver
wvigiloliver / compare.py
Last active January 2, 2020 04:35 — forked from sanzoghenzo/compare.py
Compare Excel sheets with Pandas
"""
Command-Line Interface Program to Compare Excel Sheets using Python
Author: https://github.com/sanzoghenzo
Inspired by https://pbpython.com/excel-diff-pandas-update.html
"""
import argparse # Module to integrate Python code with command-line interfaces