Skip to content

Instantly share code, notes, and snippets.

@olivetree123
olivetree123 / command.py
Last active April 18, 2018 02:28
Command
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
import os
import subprocess
class Result(object):
def __init__(self, output, err=None, status_code=0):