I am working on a django/python project. i want to create an api (webservices). What i want is to call a remote function from a python client. I was used to work with WSDL and WCF in ASP.Net. Is there something like this in django/python ? I started to work with djangorestframework but i do not think this is the right way. This framework allows me to put, read, insert or update objects in a database. I think REST is only dedicated to those operations. What i want is to call a remote function, without storing data on the server (this is just calculation).
Thanks