Repo created
This commit is contained in:
parent
4af19165ec
commit
68073add76
12458 changed files with 12350765 additions and 2 deletions
21
tools/python/mwm/dump_mwm.py
Executable file
21
tools/python/mwm/dump_mwm.py
Executable file
|
|
@ -0,0 +1,21 @@
|
|||
import json
|
||||
|
||||
from mwm import EnumAsStrEncoder
|
||||
from mwm import Mwm
|
||||
|
||||
|
||||
def dump_mwm(path, format, need_features):
|
||||
mwm = Mwm(path)
|
||||
if format == "str":
|
||||
print(mwm)
|
||||
elif format == "json":
|
||||
print(json.dumps(mwm.to_json(), ensure_ascii=False, cls=EnumAsStrEncoder))
|
||||
|
||||
if need_features:
|
||||
for ft in mwm:
|
||||
if format == "str":
|
||||
print(ft)
|
||||
elif format == "json":
|
||||
print(
|
||||
json.dumps(ft.to_json(), ensure_ascii=False, cls=EnumAsStrEncoder)
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue