Skip to content

Instantly share code, notes, and snippets.

View natedileas's full-sized avatar

Nate Dileas natedileas

View GitHub Profile
@natedileas
natedileas / redirect.py
Last active January 25, 2024 16:43
c-level stdout redirection on windows
""" Tested on Windows 10, 64 bit, Python 3.6
Sources:
https://eli.thegreenplace.net/2015/redirecting-all-kinds-of-stdout-in-python/
https://stackoverflow.com/questions/17942874/stdout-redirection-with-ctypes
"""
from contextlib import contextmanager
import ctypes
import io
import os, sys