Here are the examples of the python api bokeh.server.server.prefix taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.
1 Examples
3
View Source File : test_server.py
License : MIT License
Project Creator : rthorst
License : MIT License
Project Creator : rthorst
def test_prefix():
application = Application()
with ManagedServerLoop(application) as server:
assert server.prefix == ""
with ManagedServerLoop(application, prefix="foo") as server:
assert server.prefix == "foo"
def test_index():