Mercurial > hg > orthanc-book
view Sphinx/source/plugins/python/autorouting-2.py @ 840:1262a26f96d1
Added tag Orthanc-1.11.0 for changeset c29ac12e3160
author | Alain Mazy <am@osimis.io> |
---|---|
date | Mon, 09 May 2022 13:11:47 +0200 |
parents | a589668768d7 |
children |
line wrap: on
line source
import orthanc def OnChange(changeType, level, resourceId): if changeType == orthanc.ChangeType.STABLE_STUDY: print('Stable study: %s' % resourceId) orthanc.RestApiPostAfterPlugins('/dicom-web/servers/sample/store', resourceId) orthanc.RegisterOnChangeCallback(OnChange)