簡體   English   中英

將 Erlang 數據解析為 Python 字典

[英]Parsing Erlang data to Python dictionary

我有一個 erlang 腳本,我想從中獲取一些數據並將其存儲在 python 字典中。 很容易解析腳本以獲得這樣的字符串:

    {userdata,
     [{tags,
       [#dt{number=111},
        #mp{id='X23.W'}]},
      {log,
       'LG22'},
      {instruction,
       "String that can contain characters like -, _ or numbers"}
     ]
    }.

想要的結果:

userdata = {"tags": {"dt": {"number": 111}, "mp": {"id": "X23.W"}},
            "log": "LG22",
            "instruction": "String that can contain characters like -, _ or numbers"}
# "#" mark for data in "tags" is not required in this structure. 
# Also value for "tags" can be any iterable structure: tuple, list or dictionary.

但我不確定如何將這些數據傳輸到 python 字典中。 我的第一個想法是使用json.loads但它需要很多修改(將單詞放入引號中,將“,”替換為“:”等等)。

此外,userdata 中的鍵不限於某個池。 在這種情況下,有“標簽”、“日志”和“指令”,但可以有更多,例如。 'slogan'、'ids' 等。此外,我不確定順序。 我假設密鑰可以以隨機順序出現。

我的代碼(它不適用於id='X23.W'所以我從輸入中刪除了 '.'):

import re
import json
in_ = """{userdata, [{tags, [#dt{number=111}, #mp{id='X23W'}]}, {log, 'LG22'}, {instruction, "String that can contain characters like -, _ or numbers"}]}"""

buff = in_.replace("{userdata, [", "")[:-2]

re_helper = re.compile(r"(#\w+)")
buff = re_helper.sub(r'\1:', buff)

partition = buff.partition("instruction")
section_to_replace = partition[0]
replacer = re.compile(r"(\w+)")
match = replacer.sub(r'"\1"', section_to_replace)
buff = ''.join([match, '"instruction"', partition[2]])
buff = buff.replace("#", "")
buff = buff.replace('",', '":')

buff = buff.replace("}, {", "}, \n{")
buff = buff.replace("=", ":")
buff = buff.replace("'", "")
temp = buff.split("\n")
userdata = {}
buff = temp[0][:-2]
buff = buff.replace("[", "{")
buff = buff.replace("]", "}")

userdata .update(json.loads(buff))
for i, v in enumerate(temp[1:]):
    v = v.strip()
    if v.endswith(","):
        v = v[:-1]
    userdata .update(json.loads(v))

print(userdata)

輸出:

{'tags': {'dt': {'number': '111'}, 'mp': {'id': 'X23W'}}, 'instruction': 'String that can contain characters like -, _ or numbers', 'log': 'LG22'}
import json
import re
in_ = """{userdata, [{tags, [#dt{number=111}, #mp{id='X23.W'}]}, {log, 'LG22'}, {instruction, "String that can contain characters like -, _ or numbers"}]}"""


qouted_headers = re.sub(r"\{(\w+),", r'{"\1":', in_)
changed_hashed_list_to_dict = re.sub(r"\[(#.*?)\]", r'{\1}', qouted_headers)

hashed_variables = re.sub(r'#(\w+)', r'"\1":', changed_hashed_list_to_dict)
equality_signes_replaced_and_quoted = re.sub(r'{(\w+)=', r'{"\1":', hashed_variables)
replace_single_qoutes = equality_signes_replaced_and_quoted.replace('\'', '"')

result = json.loads(replace_single_qoutes)
print(result)

產生:

{'userdata': [{'tags': {'dt': {'number': 111}, 'mp': {'id': 'X23.W'}}}, {'log': 'LG22'}, {'instruction': 'String that can contain characters like -, _ or numbers'}]}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM