Skip to content

Instantly share code, notes, and snippets.

@pythoncat1024
pythoncat1024 / git_shell
Created August 2, 2017 15:11 — forked from ladder1984/git_shell
python执行git命令并得到结果
def git_shell(git_command):
try:
return os.popen(git_command).read().strip()
except:
return None
@pythoncat1024
pythoncat1024 / decorator_learning
Created July 1, 2017 16:14
python decorator function
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# @name : log_args.py
# @author : cat
# @date : 2017/7/1.
import logging
def upper(text):