{% extends "_base.html" %} {% block title %} Bokeh Plot Server {% endblock %} {% block script %} Bokeh.server_page(); {% endblock %} {% block content %}
The first time you want to use bokehplots.com, you need to do the following:
    import bokeh
    cloud = bokeh.Cloud()
    
    cloud.register("myusername", "mypassword")
    # or
    cloud.login("myusername", "mypassword")
    
    cloud.browser_login()
  
Plots
{% endblock %}