如何使用Pyparsing为以下数据创建语法

时间:2012-04-04 23:47:11

标签: python parsing pyparsing

我有类似于YAML的数据,需要使用Pyparsing为它创建语法。与Python一样,Yaml的数据范围由空白

定义

数据:

object : object_name 
comment : this object is created first 
methods:   
  method_name:
    input: 
      arg1: arg_type
      arg2: arg2_type
    output:   

  methond2_name:
    input:
    output:
      arg1 : arg_type

解析上面的内容之后,它应该输出类似的内容:

{'comment': 'this object is created first',
 'object': 'object_name',
 'methods': {'method_name': {'input': {'arg1': 'arg_type', 'arg2': 'arg2_type'}, 
 'output': None}, 'methond2_name': {'input': None, 'output': {'arg1': 'arg_type'}}}}

[编辑] 数据类似于YAML但不完全相同。所以YAML Python解析器无法解析它。我留下了一些细节,以使示例数据更简单

1 个答案:

答案 0 :(得分:3)

您可以使用PyYAML代替Pyparsing。

import yaml
f = open('yyy.yaml', 'r')
print yaml.load(f)

输出:

{'comment': 'this object is created first',
 'object': 'object_name',
 'methods': {'method_name': {'input': {'arg1': 'arg_type', 'arg2': 'arg2_type'}, 
 'output': None}, 'methond2_name': {'input': None, 'output': {'arg1': 'arg_type'}}}}