pynetdicom.status.Status¶
- class pynetdicom.status.Status(value)[source]¶
Constants for common status codes.
New in version 1.5.
New constants can be added with the
Status.add(name, code)method but the documentation for it is missing due to a bug in Sphinx. name is the variable name of the constant to add as astrand code is the corresponding status code as anint.Examples
from pynetdicom.status import Status # Customise the class Status.add('UNABLE_TO_PROCESS', 0xC000) def handle_store(event): try: event.dataset.save_as('temp.dcm') except: return Status.UNABLE_TO_PROCESS return Status.SUCCESS
- __init__()¶
Methods
add(name, code)Add a new constant to Status.
Attributes
0x0000- Success0xFE00- Operation terminated0xFF00- Matches or sub-operations are continuing0xA801- Move destination unknown