bokeh.server.urls (original) (raw)

Define standard endpoints and their associated views for a Bokeh Server application.

These will be added by the BokehTornadoapplication. The Bokeh Tornado application can then be served using Tornado’s built-in HTTPServer.

toplevel_patterns#

Top-level routes, independent of any applications. They will be prefixed with any configured prefix.

[ ( r'/?', RootHandler ), # / ( r'/static/(.*)', StaticHandler ), # /static/ ]

per_app_patterns#

Per-application routes. These be prefixed with the application path, as well as with any configured prefix.

[ ( r'/?', DocHandler ), # // ( r'/ws', WSHandler ), # //ws ( r'/metadata', MetadataHandler ), # //metadata ( r'/autoload.js', AutoloadJsHandler ), # //autoload.js ]