OpenMTC/doc/training/onem2m-examples/onem2m-example-12a.py

29 lines
887 B
Python
Raw Normal View History

2017-11-07 13:41:38 +00:00
# Example 12a: Making Requests with error handling
from openmtc_onem2m.client.http import OneM2MHTTPClient
from openmtc_onem2m.transport import OneM2MRequest, OneM2MErrorResponse
from openmtc.exc import OpenMTCError
client = OneM2MHTTPClient("http://localhost:8000", False)
try:
onem2m_request = OneM2MRequest("retrieve", to="onem2m")
promise = client.send_onem2m_request(onem2m_request)
onem2m_response = promise.get()
except OneM2MErrorResponse as e:
2019-01-10 10:10:02 +00:00
print("CSE reported an error:", e)
2017-11-07 13:41:38 +00:00
raise
except OpenMTCError as e:
2019-01-10 10:10:02 +00:00
print("Failed to reach the CSE:", e)
2017-11-07 13:41:38 +00:00
raise
else:
pass
# no exception was raised, the method returned normally.
2019-01-10 10:10:02 +00:00
print(onem2m_response.to)
2017-11-07 13:41:38 +00:00
#>>> onem2m
2019-01-10 10:10:02 +00:00
print(onem2m_response.response_status_code)
2017-11-07 13:41:38 +00:00
#>>> STATUS(numeric_code=2000, description='OK', http_status_code=200)
2019-01-10 10:10:02 +00:00
print(onem2m_response.content)
2017-11-07 13:41:38 +00:00
#>>> CSEBase(path='None', id='cb0')