标签:结合 init port vim ls -l python github git hub
1.安装
sudo pip install shellpy
如果提示你当前pip版本过低,可以参照提示执行
sudo pip install --upgrade pip
2.建立文件
vim yourFileName.spy 注意是spy后缀
3.执行
shellpy yourFileName.spy
可以很直观地在python中调用shell命令
例如result = `ls -l` 或者result = `ls -l注意是Tab键上的`另外shellpy还有包的概念,包的概念和python包的概念是完全一样的,如common.spy __init__.spy唯一的区别就是.py都变成了.spy.这样的包还能够被python直接引用,如from common.common import common_func具体请见 https://github.com/lamerman/shellpy另外也在此感谢公众号Python程序员的帮助
标签:结合 init port vim ls -l python github git hub
原文地址:http://www.cnblogs.com/fryduck/p/6132307.html