Как мне вернуть полную json, используя cherrypy, используя cherrypy.tools.json_out () decorator.
import cherrypy, requests
class HelloWorld(object):
@cherrypy.expose
@cherrypy.tools.json_out()
def index(self):
response = requests.get("http://api.open-notify.org/astros.json")
return response[0]
if __name__ == '__main__':
cherrypy.quickstart(HelloWorld(),'/')