python Python:检查YAML前端

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python Python:检查YAML前端相关的知识,希望对你有一定的参考价值。

import re
with open(f_path, 'rU') as f:
	yaml_break = 0
	for line in f:
		if line == '---\n':
			yaml_break += 1
		
		m = re.match("published:", line)
		if m and m.group():
			# published flag found...
			print(line)
		
		if yaml_break == 2:
			break

以上是关于python Python:检查YAML前端的主要内容,如果未能解决你的问题,请参考以下文章

读取Python的Yaml配置文件

觉得 Yaml 怪,那就来我这儿,对标 Python 让我快速上手

前端python解释器方案预研

webdriver技巧:使用YAML将元素层分离

python——Yaml

python操作yaml文件