Вывод данных с АЭМД
All checks were successful
Build And Push / publish (push) Successful in 3m4s

This commit is contained in:
2026-04-03 10:34:07 +03:00
parent b285e08885
commit c52b3c704c
2 changed files with 2 additions and 1 deletions

View File

@ -1,6 +1,6 @@
[project] [project]
name = "HospitalAssistantBackend" name = "HospitalAssistantBackend"
version = "1.0.1" version = "1.0.2"
description = "Backend for Hospital Assistant" description = "Backend for Hospital Assistant"
readme = "README.md" readme = "README.md"
requires-python = ">=3.13,<3.14" requires-python = ">=3.13,<3.14"

View File

@ -49,6 +49,7 @@ class AEMD_API(AsyncClient):
match req.status_code: match req.status_code:
case status.HTTP_200_OK: case status.HTTP_200_OK:
print(req.text)
envelope = s.Envelope.from_xml(req.text) envelope = s.Envelope.from_xml(req.text)
case _: case _: