前端之家收集整理的这篇文章主要介绍了
从shell命令管道输出到python脚本,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想运行一个
MysqL命令,并将其
输出设置为我的python脚本中的一个变量.
这是我要运行的shell命令:
$MysqL my_database --html -e "select * from limbs" | ./script.py
这是python脚本:
#!/usr/bin/env python
import sys
def hello(variable):
print variable
我如何接受python脚本中的变量并打印输出?
您需要从stdin读取以
获取python脚本中的数据,例如
#!/usr/bin/env python
import sys
def hello(variable):
print variable
data = sys.stdin.read()
hello(data)
如果您想在这里完成所有操作,请从MysqL数据库中获取一些数据,然后使用Python进行操作.我将跳过将其导入到脚本中,并使用the Python MySql module执行SQL查询.
原文链接:https://www.f2er.com/bash/386821.html