xmindparser icon indicating copy to clipboard operation
xmindparser copied to clipboard

config not work for me

Open hachi-zzq opened this issue 5 years ago • 0 comments

just like the demo:

import logging
from xmindparser import xmind_to_dict,config

config = {'logName': 'your_log_name',
          'logLevel': logging.DEBUG,
          'logFormat': '%(asctime)s %(levelname)-8s: %(message)s',
          'showTopicId': True, # internal id will be included, default = False
          'hideEmptyValue': False  # empty values will be hidden, default = True
          }

d = xmind_to_dict('/path/to/your/xmind')
print(d)

config showTopicId do not work for me !

hachi-zzq avatar Sep 17 '19 06:09 hachi-zzq