本文整理汇总了Python中subprocess.Popen.lower方法的典型用法代码示例。如果您正苦于以下问题:Python Popen.lower方法的具体用法?Python Popen.lower怎么用?Python Popen.lower使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类subprocess.Popen
的用法示例。
在下文中一共展示了Popen.lower方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: _check_compatibility
# 需要导入模块: from subprocess import Popen [as 别名]
# 或者: from subprocess.Popen import lower [as 别名]
def _check_compatibility(self):
uname = Popen('uname -a', shell=True, stdout=PIPE).stdout.read()
if os.path.exists(self.RELEASE_ISSUE_PATH):
#На всякий случай, добавляем содержимое /etc/issue
issue_file = open(self.RELEASE_ISSUE_PATH)
uname += issue_file.read()
issue_file.close()
uname = uname.lower()
if 'debian' not in uname and 'ubuntu' not in uname:
raise Exception('For now this class only supports Debian and Ubuntu Linux')
示例2: lookup_country_code
# 需要导入模块: from subprocess import Popen [as 别名]
# 或者: from subprocess.Popen import lower [as 别名]
def lookup_country_code(addr):
out = Popen(['geoiplookup', '-f', database, addr], stdout=PIPE).communicate()[0]
out = out.split(':')[1].strip().split(',')[0]
return out.lower()