view Sphinx/source/plugins/python/extending-rest-api.py @ 1104:f8a335fdeae7

ohif ref to known issue
author Alain Mazy <am@orthanc.team>
date Mon, 26 Aug 2024 11:43:03 +0200
parents a589668768d7
children
line wrap: on
line source

import orthanc
import pprint

def OnRest(output, uri, **request):
    pprint.pprint(request)
    print('Accessing uri: %s' % uri)
    output.AnswerBuffer('ok\n', 'text/plain')

orthanc.RegisterRestCallback('/(to)(t)o', OnRest)
orthanc.RegisterRestCallback('/tata', OnRest)