Skip to content

Instantly share code, notes, and snippets.

View ch4zm's full-sized avatar

ch4zm ch4zm

View GitHub Profile
@ch4zm
ch4zm / popen.md
Created September 17, 2021 22:30 — forked from achillesrasquinha/popen.md
A Python Popen that does not suck.

A Python Popen that does not suck.

Function

import os
import subprocess

def popen(*args, **kwargs):
    output      = kwargs.get('output', False)
    directory   = kwargs.get('dir')