Я собираюсь развернуть веб-сервис в Google App Engine. Я использую CherryPy, так как мне было очень легко это понять.
import sys
sys.path.insert(0,'cherrypy.zip')
import cherrypy
from cherrypy import expose
class Converter:
@expose
def index(self):
return "Hello World!"
@expose
def fahr_to_celc(self, degrees):
temp = (float(degrees) - 32) * 5 / 9
return "%.01f" % temp
@expose
def celc_to_fahr(self, degrees):
temp = float(degrees) * 9 / 5 + 32
return "%.01f" % temp
cherrypy.quickstart(Converter())
Я хотел бы знать, как вернуть вывод в формате XML, например
<?xml version="1.0" encoding="UTF-8"?>
<root>
<answer>Hello World!</answer>
</root>
Я новичок в Python. Пожалуйста, помогите мне.
Харихаран