Sounds like you have all the API functionality already defined in Python methods so you might benefit by using a python web service framework that can expose them either directly or through simple wrapper service classes. I would advise you to look at the wiki page about web services at python.org.
If you want to use JSON as transport protocol for your web service I advise you to use JSON-RPC or JSON-WSP.
If it is not importent to use JSON there are a number of SOAP server implementations. Ladon and soaplib can produce WSDL files based on your python method implementation. examples:
soaplib:
from wsgitest.lib.base import *
from soaplib.service import soapmethod
from soaplib.serializers.primitive import String, Integer, Array
class HelloWorldService(SimpleWSGISoapApp):
@soapmethod(String,Integer,_returns=Array(String))
def say_hello(self,name,times):
results = []
for i in range(0,times):
results.append('Hello, %s'%name)
return results
Ladon:
from ladon.ladonizer import ladonize
class Calculator(object):
@ladonize(int,int,rtype=int)
def add(self,a,b):
return a+b
Ladon will also expose your API to JSON-WSP and a webpage with documentation for your API.
I don't know how many of the web services named on the wiki page that supports Python 3 but Ladon does.
There is also the very old ZSI python SOAP service framework. It cannot produce WSDL based on your actual code. Instead you need to define your wsdl file and create server stubs which you then implement.