Hi @all.
I have python file and it is contains import libraries, some class and no of methods(functions).
for ex:
import time
import traceback
import sys
import copy
import os
import logger.logger as logger
from regal.utility import GetRegal
class Enum0nfWithoutSubIdSignalling():
"""
comments.
"""
def __init__(self):
self._log = logger.GetLogger("Enum0nfWithoutSubIdSignalling")
self._log.debug(">")
self._system_alerts = []
self._failure_causes = []
self._note = []
.......
self._validate_stats_obj = ValidateStats(stats_config)
self._log.debug("<")
def _start_simulator(self):
self._log.debug(">")
// code
self._log.debug("<")
def _stop_simulator(self):
self._log.debug(">")
// code
self._log.debug("<")
So Here in the BlockMirror its is generating the xml block keyword-by-keyword(statement to statement) like that how do i can generate in blockly workspace using the file.