git-subtree-dir: lib/dsmr_parser_lib git-subtree-mainline:4c0b801f96git-subtree-split:f9e188812f
9 lines
320 B
Python
9 lines
320 B
Python
from dsmr_parser import telegram_specifications
|
|
from dsmr_parser.objects import Telegram
|
|
from dsmr_parser.parsers import TelegramParser
|
|
from example_telegrams import TELEGRAM_V4_2
|
|
parser = TelegramParser(telegram_specifications.V4)
|
|
telegram = Telegram(TELEGRAM_V4_2, parser, telegram_specifications.V4)
|
|
|
|
print(telegram)
|