I've been poking around on the forum, reading about using CherryPy on PythonAnywhere, but I'm still not sure how to convert my rest api endpoints set up in Cherry Py to be exposed through a wsgi interface.
https://help.pythonanywhere.com/pages/UsingCherryPy/ doesn't seem to show how multiple endpoints are exposed.
https://www.pythonanywhere.com/forums/topic/11058/ talks about exposing static content through cherry py
https://uwsgi-docs.readthedocs.io/en/latest/WSGIquickstart.html doesn't show how to expose multiple endpoints.
Essentially, I'm looking for the WSGI equivalent/implementation of this CherryPy snippet
cherrypy.tree.mount(Root(), '/', "static.conf")
cherrypy.tree.mount(Totals(), '/totals', "app.conf")
cherrypy.tree.mount(Source(), '/transactions', "app.conf")
Any tips on pointing me in the right direction?
Thanks,Robert