gpt4 book ai didi

python - 在python imaplib中解析带括号的列表

转载 作者:太空宇宙 更新时间:2023-11-04 06:34:49 24 4
gpt4 key购买 nike

我正在寻找一种简单的方法来将来自 IMAP 响应的带括号的列表拆分为 Python 列表或元组。我想从

'(BODYSTRUCTURE ("text" "plain" ("charset" "ISO-8859-1") NIL NIL "quoted-printable" 1207 50 NIL NIL NIL NIL))'

(BODYSTRUCTURE, ("text", "plain", ("charset", "ISO-8859-1"), None, None, "quoted-printable", 1207, 50, None, None, None, None))

最佳答案

pyparsing 的 nestedExpr 解析器函数默认解析嵌套的括号:

from pyparsing import nestedExpr

text = '(BODYSTRUCTURE ("text" "plain" ("charset" "ISO-8859-1") NIL NIL "quotedprintable" 1207 50 NIL NIL NIL NIL))'

print nestedExpr().parseString(text)

打印:

[['BODYSTRUCTURE', ['"text"', '"plain"', ['"charset"', '"ISO-8859-1"'], 'NIL', 'NIL', '"quoted printable"', '1207', '50', 'NIL', 'NIL', 'NIL', 'NIL']]]

这是一个稍微修改过的解析器,它在解析时将整数字符串转换为整数,从“NIL”到 None,并从带引号的字符串中去除引号:

from pyparsing import (nestedExpr, Literal, Word, alphanums, 
quotedString, replaceWith, nums, removeQuotes)

NIL = Literal("NIL").setParseAction(replaceWith(None))
integer = Word(nums).setParseAction(lambda t:int(t[0]))
quotedString.setParseAction(removeQuotes)
content = (NIL | integer | Word(alphanums))

print nestedExpr(content=content, ignoreExpr=quotedString).parseString(text)

打印:

[['BODYSTRUCTURE', ['text', 'plain', ['charset', 'ISO-8859-1'], None, None, 'quoted-printable', 1207, 50, None, None, None, None]]]

关于python - 在python imaplib中解析带括号的列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12739563/

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