Skip to content

Instantly share code, notes, and snippets.

View drewtu2's full-sized avatar

Andrew Tu drewtu2

View GitHub Profile
@drewtu2
drewtu2 / CdContextManager.py
Created May 16, 2020 16:22
Simple Context Manager for Cd in Python
import contextlib
import os, sys
@contextlib.contextmanager
def cd(path):
CWD = os.getcwd()
os.chdir(path)
try:
yield