view Sphinx/source/plugins/python/extending-rest-api.py @ 1088:eaf09977e3e9

ReadCommitted
author Alain Mazy <am@orthanc.team>
date Mon, 01 Jul 2024 10:23:55 +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)