gpt4 book ai didi

python - pyparsing 输入和特定输出

转载 作者:太空宇宙 更新时间:2023-11-03 21:42:42 24 4
gpt4 key购买 nike

我正在考虑如何解析以下输入:

comment ='  @Class wordinfo dict<<position:int>,wordinfo:str>\n ' + \
'@Class instances dict<<word:str>,instances:atomicint> '

到特定输出:

{'wordinfo': {'columns': [('wordinfo', 'text')],
'primary_keys': [('position', 'int')],
'type': 'StorageDict'},

'instances': {'columns': [('instances', 'counter')],
'primary_keys': [('word', 'text')],
'type': 'StorageDict'}
}

正如我们在上面看到的,我需要将字典的键作为主键,然后我可以将一个或多个值作为列,首先我总是有变量名称,然后是变量类型。I'我问自己是否有一些基本方法可以得到我想要的结果,因为我不是 pyparsing 专家。可行吗?我需要执行哪些步骤?

最佳答案

第一步是编写 BNF。当您写道:我需要将字典的键作为主键,然后我可以将一个或多个值作为列,首先我总是有变量名称,然后变量类型。

将其转换为更正式的内容:

class_definition :: '@Class' identifier class_body
class_body :: class_dict // can add other types here as necessary
class_dict :: 'dict' '<' '<' identifier ':' value_type '>' ','
column_decl [',' column_decl]... '>'
column_decl :: identifier ':' value_type
value_type :: 'int' | 'str' | 'atomicint'

嗯,identifier : value_type位于几个地方,我们称之为 var_decl并重写。另外,我认为您可以通过在 <> 内定义逗号分隔的列表来拥有复合主键。 s,我们在几个地方使用这种列表。重写:

class_definition :: '@Class' identifier class_body
class_body :: class_dict // can add other types here as necessary
class_dict :: 'dict' '<' '<' vars_decl '>' ',' vars_decl '>'
vars_decl :: var_decl [',' var_decl]...
var_decl :: identifier ':' value_type
value_type :: 'int' | 'str' | 'atomicint'

然后自下而上地用 pyparsing 术语定义它们:

import pyparsing as pp
S = pp.Suppress
identifier = pp.pyparsing_common.identifier
value_type = pp.oneOf("int str atomicint")
var_decl = pp.Group(identifier + S(":") + value_type)
vars_decl = pp.Group(pp.delimitedList(var_decl))
dict_decl = pp.Group(S("dict") + S("<")
+ S("<") + vars_decl + S(">") + S(",")
+ vars_decl
+ S(">"))
class_decl = pp.Group('@Class' + identifier + dict_decl)

最后,输入结果名称,以便您在解析后可以更轻松地挑选出不同的部分:

import pyparsing as pp
S = pp.Suppress
identifier = pp.pyparsing_common.identifier
value_type = pp.oneOf("int str atomicint")
var_decl = pp.Group(identifier("name") + S(":") + value_type("type"))
vars_decl = pp.Group(pp.delimitedList(var_decl))
dict_decl = pp.Group(S("dict") + S("<")
+ S("<") + vars_decl("primary_key") + S(">") + S(",")
+ vars_decl("columns")
+ S(">"))
class_decl = pp.Group('@Class'
+ identifier("class_name")
+ dict_decl("class_body"))

然后使用以下方法解析您的文本:

class_definitions = pp.OneOrMore(class_decl).parseString(comment)

并打印出你得到的内容:

print(class_definitions.dump())

或者更好:

class_decl.runTests(comment)

这完全未经测试,可能是其中的括号不匹配,但这是总体思路。但即使您最终使用 pyparsing 之外的其他东西,也要从 BNF 开始。它确实有助于澄清您的想法和问题的一般概念。

关于python - pyparsing 输入和特定输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52734264/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com