2019-10-03 19:33:11 +00:00
|
|
|
from dsmr_parser import telegram_specifications
|
2020-02-02 21:12:25 +00:00
|
|
|
from dsmr_parser.objects import Telegram
|
2019-10-03 19:33:11 +00:00
|
|
|
from dsmr_parser.parsers import TelegramParser
|
2019-11-25 00:37:48 +00:00
|
|
|
from example_telegrams import TELEGRAM_V4_2
|
2019-10-03 19:33:11 +00:00
|
|
|
parser = TelegramParser(telegram_specifications.V4)
|
2023-01-14 12:39:44 +00:00
|
|
|
telegram = parser.parse(TELEGRAM_V4_2)
|
2019-10-03 19:33:11 +00:00
|
|
|
|
2020-02-02 21:12:25 +00:00
|
|
|
print(telegram)
|