Skip to content

Instantly share code, notes, and snippets.

@ryantm
Created January 17, 2019 04:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ryantm/8832f694a884b4968403009c9d0a72b0 to your computer and use it in GitHub Desktop.
Save ryantm/8832f694a884b4968403009c9d0a72b0 to your computer and use it in GitHub Desktop.
/nix/store/jc09bzrkr7vmvd7k2zx0vawlpy2af51p-python3.7-bokeh-1.0.3
├── bin
│   └── bokeh
├── lib
│   └── python3.7
│   └── site-packages
│   ├── bokeh
│   │   ├── application
│   │   │   ├── application.py
│   │   │   ├── handlers
│   │   │   │   ├── code.py
│   │   │   │   ├── code_runner.py
│   │   │   │   ├── directory.py
│   │   │   │   ├── document_lifecycle.py
│   │   │   │   ├── function.py
│   │   │   │   ├── handler.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── lifecycle.py
│   │   │   │   ├── notebook.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── code.cpython-37.pyc
│   │   │   │   │   ├── code_runner.cpython-37.pyc
│   │   │   │   │   ├── directory.cpython-37.pyc
│   │   │   │   │   ├── document_lifecycle.cpython-37.pyc
│   │   │   │   │   ├── function.cpython-37.pyc
│   │   │   │   │   ├── handler.cpython-37.pyc
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── lifecycle.cpython-37.pyc
│   │   │   │   │   ├── notebook.cpython-37.pyc
│   │   │   │   │   ├── script.cpython-37.pyc
│   │   │   │   │   └── server_lifecycle.cpython-37.pyc
│   │   │   │   ├── script.py
│   │   │   │   ├── server_lifecycle.py
│   │   │   │   └── tests
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── test_code.cpython-37.pyc
│   │   │   │   │   ├── test_code_runner.cpython-37.pyc
│   │   │   │   │   ├── test_directory.cpython-37.pyc
│   │   │   │   │   ├── test_document_lifecycle.cpython-37.pyc
│   │   │   │   │   ├── test_function.cpython-37.pyc
│   │   │   │   │   ├── test_handler.cpython-37.pyc
│   │   │   │   │   ├── test___init__.cpython-37.pyc
│   │   │   │   │   ├── test_notebook.cpython-37.pyc
│   │   │   │   │   ├── test_script.cpython-37.pyc
│   │   │   │   │   └── test_server_lifecycle.cpython-37.pyc
│   │   │   │   ├── test_code.py
│   │   │   │   ├── test_code_runner.py
│   │   │   │   ├── test_directory.py
│   │   │   │   ├── test_document_lifecycle.py
│   │   │   │   ├── test_function.py
│   │   │   │   ├── test_handler.py
│   │   │   │   ├── test___init__.py
│   │   │   │   ├── test_notebook.py
│   │   │   │   ├── test_script.py
│   │   │   │   └── test_server_lifecycle.py
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── application.cpython-37.pyc
│   │   │   │   └── __init__.cpython-37.pyc
│   │   │   └── tests
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── test_application.cpython-37.pyc
│   │   │   │   └── test___init__.cpython-37.pyc
│   │   │   ├── test_application.py
│   │   │   └── test___init__.py
│   │   ├── client
│   │   │   ├── connection.py
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── connection.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── session.cpython-37.pyc
│   │   │   │   ├── states.cpython-37.pyc
│   │   │   │   ├── util.cpython-37.pyc
│   │   │   │   └── websocket.cpython-37.pyc
│   │   │   ├── session.py
│   │   │   ├── states.py
│   │   │   ├── tests
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── test_connection.cpython-37.pyc
│   │   │   │   │   ├── test___init__.cpython-37.pyc
│   │   │   │   │   ├── test_session.cpython-37.pyc
│   │   │   │   │   ├── test_states.cpython-37.pyc
│   │   │   │   │   ├── test_util.cpython-37.pyc
│   │   │   │   │   └── test_websocket.cpython-37.pyc
│   │   │   │   ├── test_connection.py
│   │   │   │   ├── test___init__.py
│   │   │   │   ├── test_session.py
│   │   │   │   ├── test_states.py
│   │   │   │   ├── test_util.py
│   │   │   │   └── test_websocket.py
│   │   │   ├── util.py
│   │   │   └── websocket.py
│   │   ├── colors
│   │   │   ├── color.py
│   │   │   ├── groups.py
│   │   │   ├── hsl.py
│   │   │   ├── __init__.py
│   │   │   ├── named.py
│   │   │   ├── __pycache__
│   │   │   │   ├── color.cpython-37.pyc
│   │   │   │   ├── groups.cpython-37.pyc
│   │   │   │   ├── hsl.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── named.cpython-37.pyc
│   │   │   │   ├── rgb.cpython-37.pyc
│   │   │   │   └── util.cpython-37.pyc
│   │   │   ├── rgb.py
│   │   │   ├── tests
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── test_color.cpython-37.pyc
│   │   │   │   │   ├── test_groups.cpython-37.pyc
│   │   │   │   │   ├── test_hsl.cpython-37.pyc
│   │   │   │   │   ├── test___init__.cpython-37.pyc
│   │   │   │   │   ├── test_named.cpython-37.pyc
│   │   │   │   │   ├── test_rgb.cpython-37.pyc
│   │   │   │   │   └── test_util.cpython-37.pyc
│   │   │   │   ├── test_color.py
│   │   │   │   ├── test_groups.py
│   │   │   │   ├── test_hsl.py
│   │   │   │   ├── test___init__.py
│   │   │   │   ├── test_named.py
│   │   │   │   ├── test_rgb.py
│   │   │   │   └── test_util.py
│   │   │   └── util.py
│   │   ├── command
│   │   │   ├── bootstrap.py
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── bootstrap.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── subcommand.cpython-37.pyc
│   │   │   │   └── util.cpython-37.pyc
│   │   │   ├── subcommand.py
│   │   │   ├── subcommands
│   │   │   │   ├── file_output.py
│   │   │   │   ├── html.py
│   │   │   │   ├── info.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── json.py
│   │   │   │   ├── png.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── file_output.cpython-37.pyc
│   │   │   │   │   ├── html.cpython-37.pyc
│   │   │   │   │   ├── info.cpython-37.pyc
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── json.cpython-37.pyc
│   │   │   │   │   ├── png.cpython-37.pyc
│   │   │   │   │   ├── sampledata.cpython-37.pyc
│   │   │   │   │   ├── secret.cpython-37.pyc
│   │   │   │   │   ├── serve.cpython-37.pyc
│   │   │   │   │   ├── static.cpython-37.pyc
│   │   │   │   │   └── svg.cpython-37.pyc
│   │   │   │   ├── sampledata.py
│   │   │   │   ├── secret.py
│   │   │   │   ├── serve.py
│   │   │   │   ├── static.py
│   │   │   │   ├── svg.py
│   │   │   │   └── tests
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── test_html.cpython-37.pyc
│   │   │   │   │   ├── test_info.cpython-37.pyc
│   │   │   │   │   ├── test_json.cpython-37.pyc
│   │   │   │   │   ├── test_png.cpython-37.pyc
│   │   │   │   │   ├── test_sampledata.cpython-37.pyc
│   │   │   │   │   ├── test_secret.cpython-37.pyc
│   │   │   │   │   ├── test_serve.cpython-37.pyc
│   │   │   │   │   ├── test_subcommands_package.cpython-37.pyc
│   │   │   │   │   └── test_svg.cpython-37.pyc
│   │   │   │   ├── test_html.py
│   │   │   │   ├── test_info.py
│   │   │   │   ├── test_json.py
│   │   │   │   ├── test_png.py
│   │   │   │   ├── test_sampledata.py
│   │   │   │   ├── test_secret.py
│   │   │   │   ├── test_serve.py
│   │   │   │   ├── test_subcommands_package.py
│   │   │   │   └── test_svg.py
│   │   │   ├── tests
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── test_bootstrap.cpython-37.pyc
│   │   │   │   │   ├── test_command_package.cpython-37.pyc
│   │   │   │   │   ├── test_subcommand.cpython-37.pyc
│   │   │   │   │   └── test_util.cpython-37.pyc
│   │   │   │   ├── test_bootstrap.py
│   │   │   │   ├── test_command_package.py
│   │   │   │   ├── test_subcommand.py
│   │   │   │   └── test_util.py
│   │   │   └── util.py
│   │   ├── core
│   │   │   ├── enums.py
│   │   │   ├── has_props.py
│   │   │   ├── __init__.py
│   │   │   ├── json_encoder.py
│   │   │   ├── properties.py
│   │   │   ├── property
│   │   │   │   ├── any.py
│   │   │   │   ├── auto.py
│   │   │   │   ├── bases.py
│   │   │   │   ├── color.py
│   │   │   │   ├── container.py
│   │   │   │   ├── dataspec.py
│   │   │   │   ├── datetime.py
│   │   │   │   ├── descriptor_factory.py
│   │   │   │   ├── descriptors.py
│   │   │   │   ├── either.py
│   │   │   │   ├── enum.py
│   │   │   │   ├── include.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── instance.py
│   │   │   │   ├── json.py
│   │   │   │   ├── numeric.py
│   │   │   │   ├── override.py
│   │   │   │   ├── primitive.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── any.cpython-37.pyc
│   │   │   │   │   ├── auto.cpython-37.pyc
│   │   │   │   │   ├── bases.cpython-37.pyc
│   │   │   │   │   ├── color.cpython-37.pyc
│   │   │   │   │   ├── container.cpython-37.pyc
│   │   │   │   │   ├── dataspec.cpython-37.pyc
│   │   │   │   │   ├── datetime.cpython-37.pyc
│   │   │   │   │   ├── descriptor_factory.cpython-37.pyc
│   │   │   │   │   ├── descriptors.cpython-37.pyc
│   │   │   │   │   ├── either.cpython-37.pyc
│   │   │   │   │   ├── enum.cpython-37.pyc
│   │   │   │   │   ├── include.cpython-37.pyc
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── instance.cpython-37.pyc
│   │   │   │   │   ├── json.cpython-37.pyc
│   │   │   │   │   ├── numeric.cpython-37.pyc
│   │   │   │   │   ├── override.cpython-37.pyc
│   │   │   │   │   ├── primitive.cpython-37.pyc
│   │   │   │   │   ├── regex.cpython-37.pyc
│   │   │   │   │   ├── validation.cpython-37.pyc
│   │   │   │   │   ├── visual.cpython-37.pyc
│   │   │   │   │   └── wrappers.cpython-37.pyc
│   │   │   │   ├── regex.py
│   │   │   │   ├── tests
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   │   ├── test_any.cpython-37.pyc
│   │   │   │   │   │   ├── test_auto.cpython-37.pyc
│   │   │   │   │   │   ├── test_bases.cpython-37.pyc
│   │   │   │   │   │   ├── test_color.cpython-37.pyc
│   │   │   │   │   │   ├── test_container.cpython-37.pyc
│   │   │   │   │   │   ├── test_dataspec.cpython-37.pyc
│   │   │   │   │   │   ├── test_datetime.cpython-37.pyc
│   │   │   │   │   │   ├── test_descriptor_factory.cpython-37.pyc
│   │   │   │   │   │   ├── test_descriptors.cpython-37.pyc
│   │   │   │   │   │   ├── test_either.cpython-37.pyc
│   │   │   │   │   │   ├── test_enum.cpython-37.pyc
│   │   │   │   │   │   ├── test_include.cpython-37.pyc
│   │   │   │   │   │   ├── test___init__.cpython-37.pyc
│   │   │   │   │   │   ├── test_instance.cpython-37.pyc
│   │   │   │   │   │   ├── test_json.cpython-37.pyc
│   │   │   │   │   │   ├── test_numeric.cpython-37.pyc
│   │   │   │   │   │   ├── test_override.cpython-37.pyc
│   │   │   │   │   │   ├── test_primitive.cpython-37.pyc
│   │   │   │   │   │   ├── test_regex.cpython-37.pyc
│   │   │   │   │   │   ├── test_validation.cpython-37.pyc
│   │   │   │   │   │   ├── test_visual.cpython-37.pyc
│   │   │   │   │   │   └── test_wrappers.cpython-37.pyc
│   │   │   │   │   ├── test_any.py
│   │   │   │   │   ├── test_auto.py
│   │   │   │   │   ├── test_bases.py
│   │   │   │   │   ├── test_color.py
│   │   │   │   │   ├── test_container.py
│   │   │   │   │   ├── test_dataspec.py
│   │   │   │   │   ├── test_datetime.py
│   │   │   │   │   ├── test_descriptor_factory.py
│   │   │   │   │   ├── test_descriptors.py
│   │   │   │   │   ├── test_either.py
│   │   │   │   │   ├── test_enum.py
│   │   │   │   │   ├── test_include.py
│   │   │   │   │   ├── test___init__.py
│   │   │   │   │   ├── test_instance.py
│   │   │   │   │   ├── test_json.py
│   │   │   │   │   ├── test_numeric.py
│   │   │   │   │   ├── test_override.py
│   │   │   │   │   ├── test_primitive.py
│   │   │   │   │   ├── test_regex.py
│   │   │   │   │   ├── test_validation.py
│   │   │   │   │   ├── test_visual.py
│   │   │   │   │   └── test_wrappers.py
│   │   │   │   ├── validation.py
│   │   │   │   ├── visual.py
│   │   │   │   └── wrappers.py
│   │   │   ├── property_mixins.py
│   │   │   ├── __pycache__
│   │   │   │   ├── enums.cpython-37.pyc
│   │   │   │   ├── has_props.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── json_encoder.cpython-37.pyc
│   │   │   │   ├── properties.cpython-37.pyc
│   │   │   │   ├── property_mixins.cpython-37.pyc
│   │   │   │   ├── query.cpython-37.pyc
│   │   │   │   └── templates.cpython-37.pyc
│   │   │   ├── query.py
│   │   │   ├── _templates
│   │   │   │   ├── autoload_js.js
│   │   │   │   ├── autoload_nb_js.js
│   │   │   │   ├── autoload_tag.html
│   │   │   │   ├── css_resources.html
│   │   │   │   ├── doc_js.js
│   │   │   │   ├── doc_nb_js.js
│   │   │   │   ├── file.html
│   │   │   │   ├── js_resources.html
│   │   │   │   ├── macros.html
│   │   │   │   ├── notebook_load.html
│   │   │   │   ├── plot_div.html
│   │   │   │   ├── root_div.html
│   │   │   │   ├── script_tag.html
│   │   │   │   └── try_run.js
│   │   │   ├── templates.py
│   │   │   ├── tests
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── test_enums.cpython-37.pyc
│   │   │   │   │   ├── test_has_props.cpython-37.pyc
│   │   │   │   │   ├── test_json_encoder.cpython-37.pyc
│   │   │   │   │   ├── test_properties.cpython-37.pyc
│   │   │   │   │   ├── test_query.cpython-37.pyc
│   │   │   │   │   ├── test_templates.cpython-37.pyc
│   │   │   │   │   └── test_validation.cpython-37.pyc
│   │   │   │   ├── test_enums.py
│   │   │   │   ├── test_has_props.py
│   │   │   │   ├── test_json_encoder.py
│   │   │   │   ├── test_properties.py
│   │   │   │   ├── test_query.py
│   │   │   │   ├── test_templates.py
│   │   │   │   └── test_validation.py
│   │   │   └── validation
│   │   │   ├── check.py
│   │   │   ├── decorators.py
│   │   │   ├── errors.py
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── check.cpython-37.pyc
│   │   │   │   ├── decorators.cpython-37.pyc
│   │   │   │   ├── errors.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   └── warnings.cpython-37.pyc
│   │   │   └── warnings.py
│   │   ├── document
│   │   │   ├── document.py
│   │   │   ├── events.py
│   │   │   ├── __init__.py
│   │   │   ├── locking.py
│   │   │   ├── __pycache__
│   │   │   │   ├── document.cpython-37.pyc
│   │   │   │   ├── events.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── locking.cpython-37.pyc
│   │   │   │   └── util.cpython-37.pyc
│   │   │   ├── tests
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── setup.cpython-37.pyc
│   │   │   │   │   ├── test_document.cpython-37.pyc
│   │   │   │   │   ├── test_events.cpython-37.pyc
│   │   │   │   │   └── test_locking.cpython-37.pyc
│   │   │   │   ├── setup.py
│   │   │   │   ├── test_document.py
│   │   │   │   ├── test_events.py
│   │   │   │   └── test_locking.py
│   │   │   └── util.py
│   │   ├── driving.py
│   │   ├── embed
│   │   │   ├── bundle.py
│   │   │   ├── elements.py
│   │   │   ├── __init__.py
│   │   │   ├── notebook.py
│   │   │   ├── __pycache__
│   │   │   │   ├── bundle.cpython-37.pyc
│   │   │   │   ├── elements.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── notebook.cpython-37.pyc
│   │   │   │   ├── server.cpython-37.pyc
│   │   │   │   ├── standalone.cpython-37.pyc
│   │   │   │   ├── util.cpython-37.pyc
│   │   │   │   └── wrappers.cpython-37.pyc
│   │   │   ├── server.py
│   │   │   ├── standalone.py
│   │   │   ├── tests
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── test_bundle.cpython-37.pyc
│   │   │   │   │   ├── test_elements.cpython-37.pyc
│   │   │   │   │   ├── test___init__.cpython-37.pyc
│   │   │   │   │   ├── test_notebook.cpython-37.pyc
│   │   │   │   │   ├── test_server.cpython-37.pyc
│   │   │   │   │   ├── test_standalone.cpython-37.pyc
│   │   │   │   │   ├── test_util.cpython-37.pyc
│   │   │   │   │   └── test_wrappers.cpython-37.pyc
│   │   │   │   ├── test_bundle.py
│   │   │   │   ├── test_elements.py
│   │   │   │   ├── test___init__.py
│   │   │   │   ├── test_notebook.py
│   │   │   │   ├── test_server.py
│   │   │   │   ├── test_standalone.py
│   │   │   │   ├── test_util.py
│   │   │   │   └── test_wrappers.py
│   │   │   ├── util.py
│   │   │   └── wrappers.py
│   │   ├── events.py
│   │   ├── __init__.py
│   │   ├── io
│   │   │   ├── doc.py
│   │   │   ├── export.py
│   │   │   ├── __init__.py
│   │   │   ├── notebook.py
│   │   │   ├── output.py
│   │   │   ├── __pycache__
│   │   │   │   ├── doc.cpython-37.pyc
│   │   │   │   ├── export.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── notebook.cpython-37.pyc
│   │   │   │   ├── output.cpython-37.pyc
│   │   │   │   ├── saving.cpython-37.pyc
│   │   │   │   ├── showing.cpython-37.pyc
│   │   │   │   ├── state.cpython-37.pyc
│   │   │   │   ├── util.cpython-37.pyc
│   │   │   │   └── webdriver.cpython-37.pyc
│   │   │   ├── saving.py
│   │   │   ├── showing.py
│   │   │   ├── state.py
│   │   │   ├── tests
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── test_doc.cpython-37.pyc
│   │   │   │   │   ├── test_export.cpython-37.pyc
│   │   │   │   │   ├── test___init__.cpython-37.pyc
│   │   │   │   │   ├── test_notebook.cpython-37.pyc
│   │   │   │   │   ├── test_output.cpython-37.pyc
│   │   │   │   │   ├── test_saving.cpython-37.pyc
│   │   │   │   │   ├── test_showing.cpython-37.pyc
│   │   │   │   │   ├── test_state.cpython-37.pyc
│   │   │   │   │   ├── test_util.cpython-37.pyc
│   │   │   │   │   └── test_webdriver.cpython-37.pyc
│   │   │   │   ├── test_doc.py
│   │   │   │   ├── test_export.py
│   │   │   │   ├── test___init__.py
│   │   │   │   ├── test_notebook.py
│   │   │   │   ├── test_output.py
│   │   │   │   ├── test_saving.py
│   │   │   │   ├── test_showing.py
│   │   │   │   ├── test_state.py
│   │   │   │   ├── test_util.py
│   │   │   │   └── test_webdriver.py
│   │   │   ├── util.py
│   │   │   └── webdriver.py
│   │   ├── layouts.py
│   │   ├── LICENSE.txt
│   │   ├── __main__.py
│   │   ├── model.py
│   │   ├── models
│   │   │   ├── annotations.py
│   │   │   ├── arrow_heads.py
│   │   │   ├── axes.py
│   │   │   ├── callbacks.py
│   │   │   ├── expressions.py
│   │   │   ├── filters.py
│   │   │   ├── formatters.py
│   │   │   ├── glyphs.py
│   │   │   ├── graphs.py
│   │   │   ├── grids.py
│   │   │   ├── __init__.py
│   │   │   ├── layouts.py
│   │   │   ├── mappers.py
│   │   │   ├── map_plots.py
│   │   │   ├── markers.py
│   │   │   ├── plots.py
│   │   │   ├── __pycache__
│   │   │   │   ├── annotations.cpython-37.pyc
│   │   │   │   ├── arrow_heads.cpython-37.pyc
│   │   │   │   ├── axes.cpython-37.pyc
│   │   │   │   ├── callbacks.cpython-37.pyc
│   │   │   │   ├── expressions.cpython-37.pyc
│   │   │   │   ├── filters.cpython-37.pyc
│   │   │   │   ├── formatters.cpython-37.pyc
│   │   │   │   ├── glyphs.cpython-37.pyc
│   │   │   │   ├── graphs.cpython-37.pyc
│   │   │   │   ├── grids.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── layouts.cpython-37.pyc
│   │   │   │   ├── mappers.cpython-37.pyc
│   │   │   │   ├── map_plots.cpython-37.pyc
│   │   │   │   ├── markers.cpython-37.pyc
│   │   │   │   ├── plots.cpython-37.pyc
│   │   │   │   ├── ranges.cpython-37.pyc
│   │   │   │   ├── renderers.cpython-37.pyc
│   │   │   │   ├── scales.cpython-37.pyc
│   │   │   │   ├── selections.cpython-37.pyc
│   │   │   │   ├── sources.cpython-37.pyc
│   │   │   │   ├── tickers.cpython-37.pyc
│   │   │   │   ├── tiles.cpython-37.pyc
│   │   │   │   ├── tools.cpython-37.pyc
│   │   │   │   └── transforms.cpython-37.pyc
│   │   │   ├── ranges.py
│   │   │   ├── renderers.py
│   │   │   ├── scales.py
│   │   │   ├── selections.py
│   │   │   ├── sources.py
│   │   │   ├── tests
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── test_annotations.cpython-37.pyc
│   │   │   │   │   ├── test_axes.cpython-37.pyc
│   │   │   │   │   ├── test_callbacks.cpython-37.pyc
│   │   │   │   │   ├── test_defaults.cpython-37.pyc
│   │   │   │   │   ├── test_formatters.cpython-37.pyc
│   │   │   │   │   ├── test_glyphs.cpython-37.pyc
│   │   │   │   │   ├── test_graphs.cpython-37.pyc
│   │   │   │   │   ├── test_layouts.cpython-37.pyc
│   │   │   │   │   ├── test_mappers.cpython-37.pyc
│   │   │   │   │   ├── test_plots.cpython-37.pyc
│   │   │   │   │   ├── test_ranges.cpython-37.pyc
│   │   │   │   │   ├── test_renderers.cpython-37.pyc
│   │   │   │   │   ├── test_sources.cpython-37.pyc
│   │   │   │   │   ├── test_tools.cpython-37.pyc
│   │   │   │   │   └── test_transforms.cpython-37.pyc
│   │   │   │   ├── test_annotations.py
│   │   │   │   ├── test_axes.py
│   │   │   │   ├── test_callbacks.py
│   │   │   │   ├── test_defaults.py
│   │   │   │   ├── test_formatters.py
│   │   │   │   ├── test_glyphs.py
│   │   │   │   ├── test_graphs.py
│   │   │   │   ├── test_layouts.py
│   │   │   │   ├── test_mappers.py
│   │   │   │   ├── test_plots.py
│   │   │   │   ├── test_ranges.py
│   │   │   │   ├── test_renderers.py
│   │   │   │   ├── test_sources.py
│   │   │   │   ├── test_tools.py
│   │   │   │   ├── test_transforms.py
│   │   │   │   └── utils
│   │   │   │   ├── __init__.py
│   │   │   │   ├── property_utils.py
│   │   │   │   └── __pycache__
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   └── property_utils.cpython-37.pyc
│   │   │   ├── tickers.py
│   │   │   ├── tiles.py
│   │   │   ├── tools.py
│   │   │   ├── transforms.py
│   │   │   └── widgets
│   │   │   ├── buttons.py
│   │   │   ├── groups.py
│   │   │   ├── icons.py
│   │   │   ├── __init__.py
│   │   │   ├── inputs.py
│   │   │   ├── markups.py
│   │   │   ├── panels.py
│   │   │   ├── __pycache__
│   │   │   │   ├── buttons.cpython-37.pyc
│   │   │   │   ├── groups.cpython-37.pyc
│   │   │   │   ├── icons.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── inputs.cpython-37.pyc
│   │   │   │   ├── markups.cpython-37.pyc
│   │   │   │   ├── panels.cpython-37.pyc
│   │   │   │   ├── sliders.cpython-37.pyc
│   │   │   │   ├── tables.cpython-37.pyc
│   │   │   │   └── widget.cpython-37.pyc
│   │   │   ├── sliders.py
│   │   │   ├── tables.py
│   │   │   ├── tests
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   └── test_slider.cpython-37.pyc
│   │   │   │   └── test_slider.py
│   │   │   └── widget.py
│   │   ├── palettes.py
│   │   ├── plotting
│   │   │   ├── figure.py
│   │   │   ├── gmap.py
│   │   │   ├── helpers.py
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── figure.cpython-37.pyc
│   │   │   │   ├── gmap.cpython-37.pyc
│   │   │   │   ├── helpers.cpython-37.pyc
│   │   │   │   └── __init__.cpython-37.pyc
│   │   │   └── tests
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── test_figure.cpython-37.pyc
│   │   │   │   └── test_helpers.cpython-37.pyc
│   │   │   ├── test_figure.py
│   │   │   └── test_helpers.py
│   │   ├── protocol
│   │   │   ├── exceptions.py
│   │   │   ├── __init__.py
│   │   │   ├── message.py
│   │   │   ├── messages
│   │   │   │   ├── ack.py
│   │   │   │   ├── error.py
│   │   │   │   ├── event.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── ok.py
│   │   │   │   ├── patch_doc.py
│   │   │   │   ├── pull_doc_reply.py
│   │   │   │   ├── pull_doc_req.py
│   │   │   │   ├── push_doc.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── ack.cpython-37.pyc
│   │   │   │   │   ├── error.cpython-37.pyc
│   │   │   │   │   ├── event.cpython-37.pyc
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── ok.cpython-37.pyc
│   │   │   │   │   ├── patch_doc.cpython-37.pyc
│   │   │   │   │   ├── pull_doc_reply.cpython-37.pyc
│   │   │   │   │   ├── pull_doc_req.cpython-37.pyc
│   │   │   │   │   ├── push_doc.cpython-37.pyc
│   │   │   │   │   ├── server_info_reply.cpython-37.pyc
│   │   │   │   │   └── server_info_req.cpython-37.pyc
│   │   │   │   ├── server_info_reply.py
│   │   │   │   ├── server_info_req.py
│   │   │   │   └── tests
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── test_ack.cpython-37.pyc
│   │   │   │   │   ├── test_error.cpython-37.pyc
│   │   │   │   │   ├── test_ok.cpython-37.pyc
│   │   │   │   │   ├── test_patch_doc.cpython-37.pyc
│   │   │   │   │   ├── test_pull_doc.cpython-37.pyc
│   │   │   │   │   ├── test_push_doc.cpython-37.pyc
│   │   │   │   │   ├── test_server_info_reply.cpython-37.pyc
│   │   │   │   │   ├── test_server_info_req.cpython-37.pyc
│   │   │   │   │   └── test_working.cpython-37.pyc
│   │   │   │   ├── test_ack.py
│   │   │   │   ├── test_error.py
│   │   │   │   ├── test_ok.py
│   │   │   │   ├── test_patch_doc.py
│   │   │   │   ├── test_pull_doc.py
│   │   │   │   ├── test_push_doc.py
│   │   │   │   ├── test_server_info_reply.py
│   │   │   │   ├── test_server_info_req.py
│   │   │   │   └── test_working.py
│   │   │   ├── __pycache__
│   │   │   │   ├── exceptions.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── message.cpython-37.pyc
│   │   │   │   ├── receiver.cpython-37.pyc
│   │   │   │   └── versions.cpython-37.pyc
│   │   │   ├── receiver.py
│   │   │   ├── tests
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── test_message.cpython-37.pyc
│   │   │   │   │   ├── test_receiver.cpython-37.pyc
│   │   │   │   │   └── test_versions.cpython-37.pyc
│   │   │   │   ├── test_message.py
│   │   │   │   ├── test_receiver.py
│   │   │   │   └── test_versions.py
│   │   │   └── versions.py
│   │   ├── __pycache__
│   │   │   ├── driving.cpython-37.pyc
│   │   │   ├── events.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── layouts.cpython-37.pyc
│   │   │   ├── __main__.cpython-37.pyc
│   │   │   ├── model.cpython-37.pyc
│   │   │   ├── palettes.cpython-37.pyc
│   │   │   ├── resources.cpython-37.pyc
│   │   │   ├── settings.cpython-37.pyc
│   │   │   ├── tile_providers.cpython-37.pyc
│   │   │   ├── transform.cpython-37.pyc
│   │   │   └── _version.cpython-37.pyc
│   │   ├── resources.py
│   │   ├── sampledata
│   │   │   ├── airport_routes.py
│   │   │   ├── airports.py
│   │   │   ├── autompg2.py
│   │   │   ├── autompg.py
│   │   │   ├── browsers.py
│   │   │   ├── commits.py
│   │   │   ├── _data
│   │   │   │   ├── auto-mpg2.csv
│   │   │   │   ├── auto-mpg.csv
│   │   │   │   ├── browsers_nov_2013.csv
│   │   │   │   ├── commits.txt.gz
│   │   │   │   ├── daylight_warsaw_2013.csv
│   │   │   │   ├── elements.csv
│   │   │   │   ├── icons
│   │   │   │   │   ├── chrome_32x32.png
│   │   │   │   │   ├── firefox_32x32.png
│   │   │   │   │   ├── ie_32x32.png
│   │   │   │   │   ├── opera_32x32.png
│   │   │   │   │   └── safari_32x32.png
│   │   │   │   ├── iris.csv
│   │   │   │   ├── les_mis.json
│   │   │   │   ├── numberly.csv
│   │   │   │   ├── obiszow_mtb_xcm.csv
│   │   │   │   ├── olympics2014.json
│   │   │   │   ├── percent-bachelors-degrees-women-usa.csv
│   │   │   │   ├── probly.csv
│   │   │   │   ├── sample_geojson.geojson
│   │   │   │   ├── sea_surface_temperature.csv.gz
│   │   │   │   ├── sprint.csv
│   │   │   │   ├── unemployment1948.csv
│   │   │   │   ├── USHolidays.ics
│   │   │   │   ├── us_marriages_divorces.csv
│   │   │   │   └── US_Regions_State_Boundaries.csv.gz
│   │   │   ├── daylight.py
│   │   │   ├── degrees.py
│   │   │   ├── gapminder.py
│   │   │   ├── glucose.py
│   │   │   ├── haar_cascade.py
│   │   │   ├── __init__.py
│   │   │   ├── iris.py
│   │   │   ├── les_mis.py
│   │   │   ├── movies_data.py
│   │   │   ├── mtb.py
│   │   │   ├── olympics2014.py
│   │   │   ├── perceptions.py
│   │   │   ├── periodic_table.py
│   │   │   ├── population.py
│   │   │   ├── __pycache__
│   │   │   │   ├── airport_routes.cpython-37.pyc
│   │   │   │   ├── airports.cpython-37.pyc
│   │   │   │   ├── autompg2.cpython-37.pyc
│   │   │   │   ├── autompg.cpython-37.pyc
│   │   │   │   ├── browsers.cpython-37.pyc
│   │   │   │   ├── commits.cpython-37.pyc
│   │   │   │   ├── daylight.cpython-37.pyc
│   │   │   │   ├── degrees.cpython-37.pyc
│   │   │   │   ├── gapminder.cpython-37.pyc
│   │   │   │   ├── glucose.cpython-37.pyc
│   │   │   │   ├── haar_cascade.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── iris.cpython-37.pyc
│   │   │   │   ├── les_mis.cpython-37.pyc
│   │   │   │   ├── movies_data.cpython-37.pyc
│   │   │   │   ├── mtb.cpython-37.pyc
│   │   │   │   ├── olympics2014.cpython-37.pyc
│   │   │   │   ├── perceptions.cpython-37.pyc
│   │   │   │   ├── periodic_table.cpython-37.pyc
│   │   │   │   ├── population.cpython-37.pyc
│   │   │   │   ├── sample_geojson.cpython-37.pyc
│   │   │   │   ├── sea_surface_temperature.cpython-37.pyc
│   │   │   │   ├── sprint.cpython-37.pyc
│   │   │   │   ├── stocks.cpython-37.pyc
│   │   │   │   ├── unemployment1948.cpython-37.pyc
│   │   │   │   ├── unemployment.cpython-37.pyc
│   │   │   │   ├── us_cities.cpython-37.pyc
│   │   │   │   ├── us_counties.cpython-37.pyc
│   │   │   │   ├── us_holidays.cpython-37.pyc
│   │   │   │   ├── us_marriages_divorces.cpython-37.pyc
│   │   │   │   ├── us_states.cpython-37.pyc
│   │   │   │   └── world_cities.cpython-37.pyc
│   │   │   ├── sample_geojson.py
│   │   │   ├── sea_surface_temperature.py
│   │   │   ├── sprint.py
│   │   │   ├── stocks.py
│   │   │   ├── tests
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── test_airport_routes.cpython-37.pyc
│   │   │   │   │   ├── test_airports.cpython-37.pyc
│   │   │   │   │   ├── test_autompg2.cpython-37.pyc
│   │   │   │   │   ├── test_autompg.cpython-37.pyc
│   │   │   │   │   ├── test_browsers.cpython-37.pyc
│   │   │   │   │   ├── test_commits.cpython-37.pyc
│   │   │   │   │   ├── test_daylight.cpython-37.pyc
│   │   │   │   │   ├── test_degrees.cpython-37.pyc
│   │   │   │   │   ├── test_gapminder.cpython-37.pyc
│   │   │   │   │   ├── test_glucose.cpython-37.pyc
│   │   │   │   │   ├── test_haar_cascade.cpython-37.pyc
│   │   │   │   │   ├── test___init__.cpython-37.pyc
│   │   │   │   │   ├── test_iris.cpython-37.pyc
│   │   │   │   │   ├── test_les_mis.cpython-37.pyc
│   │   │   │   │   ├── test_movies_data.cpython-37.pyc
│   │   │   │   │   ├── test_mtb.cpython-37.pyc
│   │   │   │   │   ├── test_olympics2014.cpython-37.pyc
│   │   │   │   │   ├── test_perceptions.cpython-37.pyc
│   │   │   │   │   ├── test_periodic_table.cpython-37.pyc
│   │   │   │   │   ├── test_population.cpython-37.pyc
│   │   │   │   │   ├── test_sample_geojson.cpython-37.pyc
│   │   │   │   │   ├── test_sea_surface_temperature.cpython-37.pyc
│   │   │   │   │   ├── test_sprint.cpython-37.pyc
│   │   │   │   │   ├── test_stocks.cpython-37.pyc
│   │   │   │   │   ├── test_unemployment1948.cpython-37.pyc
│   │   │   │   │   ├── test_unemployment.cpython-37.pyc
│   │   │   │   │   ├── test_us_cities.cpython-37.pyc
│   │   │   │   │   ├── test_us_counties.cpython-37.pyc
│   │   │   │   │   ├── test_us_holidays.cpython-37.pyc
│   │   │   │   │   ├── test_us_marriages_divorces.cpython-37.pyc
│   │   │   │   │   ├── test_us_states.cpython-37.pyc
│   │   │   │   │   └── test_world_cities.cpython-37.pyc
│   │   │   │   ├── test_airport_routes.py
│   │   │   │   ├── test_airports.py
│   │   │   │   ├── test_autompg2.py
│   │   │   │   ├── test_autompg.py
│   │   │   │   ├── test_browsers.py
│   │   │   │   ├── test_commits.py
│   │   │   │   ├── test_daylight.py
│   │   │   │   ├── test_degrees.py
│   │   │   │   ├── test_gapminder.py
│   │   │   │   ├── test_glucose.py
│   │   │   │   ├── test_haar_cascade.py
│   │   │   │   ├── test___init__.py
│   │   │   │   ├── test_iris.py
│   │   │   │   ├── test_les_mis.py
│   │   │   │   ├── test_movies_data.py
│   │   │   │   ├── test_mtb.py
│   │   │   │   ├── test_olympics2014.py
│   │   │   │   ├── test_perceptions.py
│   │   │   │   ├── test_periodic_table.py
│   │   │   │   ├── test_population.py
│   │   │   │   ├── test_sample_geojson.py
│   │   │   │   ├── test_sea_surface_temperature.py
│   │   │   │   ├── test_sprint.py
│   │   │   │   ├── test_stocks.py
│   │   │   │   ├── test_unemployment1948.py
│   │   │   │   ├── test_unemployment.py
│   │   │   │   ├── test_us_cities.py
│   │   │   │   ├── test_us_counties.py
│   │   │   │   ├── test_us_holidays.py
│   │   │   │   ├── test_us_marriages_divorces.py
│   │   │   │   ├── test_us_states.py
│   │   │   │   └── test_world_cities.py
│   │   │   ├── unemployment1948.py
│   │   │   ├── unemployment.py
│   │   │   ├── us_cities.py
│   │   │   ├── us_counties.py
│   │   │   ├── us_holidays.py
│   │   │   ├── us_marriages_divorces.py
│   │   │   ├── us_states.py
│   │   │   └── world_cities.py
│   │   ├── server
│   │   │   ├── callbacks.py
│   │   │   ├── connection.py
│   │   │   ├── contexts.py
│   │   │   ├── __init__.py
│   │   │   ├── protocol_handler.py
│   │   │   ├── __pycache__
│   │   │   │   ├── callbacks.cpython-37.pyc
│   │   │   │   ├── connection.cpython-37.pyc
│   │   │   │   ├── contexts.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── protocol_handler.cpython-37.pyc
│   │   │   │   ├── server.cpython-37.pyc
│   │   │   │   ├── session.cpython-37.pyc
│   │   │   │   ├── tornado.cpython-37.pyc
│   │   │   │   ├── urls.cpython-37.pyc
│   │   │   │   └── util.cpython-37.pyc
│   │   │   ├── server.py
│   │   │   ├── session.py
│   │   │   ├── static
│   │   │   │   ├── css
│   │   │   │   │   ├── bokeh.css
│   │   │   │   │   ├── bokeh.min.css
│   │   │   │   │   ├── bokeh-tables.css
│   │   │   │   │   ├── bokeh-tables.min.css
│   │   │   │   │   ├── bokeh-widgets.css
│   │   │   │   │   └── bokeh-widgets.min.css
│   │   │   │   └── js
│   │   │   │   ├── bokeh-api.js
│   │   │   │   ├── bokeh-api.js.map
│   │   │   │   ├── bokeh-api.json
│   │   │   │   ├── bokeh-api.min.js
│   │   │   │   ├── bokeh-api.min.js.map
│   │   │   │   ├── bokeh-gl.js
│   │   │   │   ├── bokeh-gl.js.map
│   │   │   │   ├── bokeh-gl.json
│   │   │   │   ├── bokeh-gl.min.js
│   │   │   │   ├── bokeh-gl.min.js.map
│   │   │   │   ├── bokeh.js
│   │   │   │   ├── bokeh.js.map
│   │   │   │   ├── bokeh.json
│   │   │   │   ├── bokeh.min.js
│   │   │   │   ├── bokeh.min.js.map
│   │   │   │   ├── bokeh-tables.js
│   │   │   │   ├── bokeh-tables.js.map
│   │   │   │   ├── bokeh-tables.json
│   │   │   │   ├── bokeh-tables.min.js
│   │   │   │   ├── bokeh-tables.min.js.map
│   │   │   │   ├── bokeh-widgets.js
│   │   │   │   ├── bokeh-widgets.js.map
│   │   │   │   ├── bokeh-widgets.json
│   │   │   │   ├── bokeh-widgets.min.js
│   │   │   │   ├── bokeh-widgets.min.js.map
│   │   │   │   ├── compiler
│   │   │   │   │   ├── compile.js
│   │   │   │   │   └── dependencies.js
│   │   │   │   ├── compiler.js
│   │   │   │   ├── compiler.js.map
│   │   │   │   └── compiler.json
│   │   │   ├── tests
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── test_callbacks.cpython-37.pyc
│   │   │   │   │   ├── test_contexts.cpython-37.pyc
│   │   │   │   │   ├── test_server.cpython-37.pyc
│   │   │   │   │   ├── test_session.cpython-37.pyc
│   │   │   │   │   ├── test_tornado.cpython-37.pyc
│   │   │   │   │   ├── test_util.cpython-37.pyc
│   │   │   │   │   └── utils.cpython-37.pyc
│   │   │   │   ├── test_callbacks.py
│   │   │   │   ├── test_contexts.py
│   │   │   │   ├── test_server.py
│   │   │   │   ├── test_session.py
│   │   │   │   ├── test_tornado.py
│   │   │   │   ├── test_util.py
│   │   │   │   └── utils.py
│   │   │   ├── tornado.py
│   │   │   ├── urls.py
│   │   │   ├── util.py
│   │   │   └── views
│   │   │   ├── app_index.html
│   │   │   ├── autoload_js_handler.py
│   │   │   ├── doc_handler.py
│   │   │   ├── __init__.py
│   │   │   ├── metadata_handler.py
│   │   │   ├── __pycache__
│   │   │   │   ├── autoload_js_handler.cpython-37.pyc
│   │   │   │   ├── doc_handler.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── metadata_handler.cpython-37.pyc
│   │   │   │   ├── root_handler.cpython-37.pyc
│   │   │   │   ├── session_handler.cpython-37.pyc
│   │   │   │   ├── static_handler.cpython-37.pyc
│   │   │   │   └── ws.cpython-37.pyc
│   │   │   ├── root_handler.py
│   │   │   ├── session_handler.py
│   │   │   ├── static_handler.py
│   │   │   ├── tests
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   └── test_ws.cpython-37.pyc
│   │   │   │   └── test_ws.py
│   │   │   └── ws.py
│   │   ├── settings.py
│   │   ├── sphinxext
│   │   │   ├── bokeh_autodoc.py
│   │   │   ├── bokeh_color.py
│   │   │   ├── bokeh_directive.py
│   │   │   ├── bokeh_enum.py
│   │   │   ├── bokeh_gallery.py
│   │   │   ├── bokeh_github.py
│   │   │   ├── bokeh_jinja.py
│   │   │   ├── bokeh_model.py
│   │   │   ├── bokeh_options.py
│   │   │   ├── bokeh_palette_group.py
│   │   │   ├── bokeh_palette.py
│   │   │   ├── bokeh_plot.py
│   │   │   ├── bokeh_prop.py
│   │   │   ├── bokeh_releases.py
│   │   │   ├── bokeh_sitemap.py
│   │   │   ├── collapsible_code_block.py
│   │   │   ├── example_handler.py
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── bokeh_autodoc.cpython-37.pyc
│   │   │   │   ├── bokeh_color.cpython-37.pyc
│   │   │   │   ├── bokeh_directive.cpython-37.pyc
│   │   │   │   ├── bokeh_enum.cpython-37.pyc
│   │   │   │   ├── bokeh_gallery.cpython-37.pyc
│   │   │   │   ├── bokeh_github.cpython-37.pyc
│   │   │   │   ├── bokeh_jinja.cpython-37.pyc
│   │   │   │   ├── bokeh_model.cpython-37.pyc
│   │   │   │   ├── bokeh_options.cpython-37.pyc
│   │   │   │   ├── bokeh_palette.cpython-37.pyc
│   │   │   │   ├── bokeh_palette_group.cpython-37.pyc
│   │   │   │   ├── bokeh_plot.cpython-37.pyc
│   │   │   │   ├── bokeh_prop.cpython-37.pyc
│   │   │   │   ├── bokeh_releases.cpython-37.pyc
│   │   │   │   ├── bokeh_sitemap.cpython-37.pyc
│   │   │   │   ├── collapsible_code_block.cpython-37.pyc
│   │   │   │   ├── example_handler.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── sample.cpython-37.pyc
│   │   │   │   └── templates.cpython-37.pyc
│   │   │   ├── sample.py
│   │   │   ├── _templates
│   │   │   │   ├── collapsible_code_block_epilogue.html
│   │   │   │   ├── collapsible_code_block_prologue.html
│   │   │   │   ├── color_detail.html
│   │   │   │   ├── enum_detail.rst
│   │   │   │   ├── gallery_page.rst
│   │   │   │   ├── jinja_detail.rst
│   │   │   │   ├── model_detail.rst
│   │   │   │   ├── options_detail.rst
│   │   │   │   ├── palette_detail.html
│   │   │   │   ├── palette_group_detail.html
│   │   │   │   ├── plot_page.rst
│   │   │   │   └── prop_detail.rst
│   │   │   └── templates.py
│   │   ├── _testing
│   │   │   ├── __init__.py
│   │   │   ├── plugins
│   │   │   │   ├── bokeh.py
│   │   │   │   ├── bokeh_server.py
│   │   │   │   ├── examples_report.py
│   │   │   │   ├── file_server.py
│   │   │   │   ├── implicit_mark.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── jupyter_notebook.py
│   │   │   │   ├── log_file.py
│   │   │   │   ├── pandas.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── bokeh.cpython-37.pyc
│   │   │   │   │   ├── bokeh_server.cpython-37.pyc
│   │   │   │   │   ├── examples_report.cpython-37.pyc
│   │   │   │   │   ├── file_server.cpython-37.pyc
│   │   │   │   │   ├── implicit_mark.cpython-37.pyc
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── jupyter_notebook.cpython-37.pyc
│   │   │   │   │   ├── log_file.cpython-37.pyc
│   │   │   │   │   ├── pandas.cpython-37.pyc
│   │   │   │   │   └── selenium.cpython-37.pyc
│   │   │   │   └── selenium.py
│   │   │   ├── __pycache__
│   │   │   │   └── __init__.cpython-37.pyc
│   │   │   └── util
│   │   │   ├── api.py
│   │   │   ├── compare.py
│   │   │   ├── examples.py
│   │   │   ├── filesystem.py
│   │   │   ├── git.py
│   │   │   ├── images.py
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── api.cpython-37.pyc
│   │   │   │   ├── compare.cpython-37.pyc
│   │   │   │   ├── examples.cpython-37.pyc
│   │   │   │   ├── filesystem.cpython-37.pyc
│   │   │   │   ├── git.cpython-37.pyc
│   │   │   │   ├── images.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── s3.cpython-37.pyc
│   │   │   │   ├── screenshot.cpython-37.pyc
│   │   │   │   ├── selenium.cpython-37.pyc
│   │   │   │   └── travis.cpython-37.pyc
│   │   │   ├── s3.py
│   │   │   ├── screenshot.py
│   │   │   ├── selenium.py
│   │   │   └── travis.py
│   │   ├── tests
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── test_client_server.cpython-37.pyc
│   │   │   │   ├── test_driving.cpython-37.pyc
│   │   │   │   ├── test_events.cpython-37.pyc
│   │   │   │   ├── test___init__.cpython-37.pyc
│   │   │   │   ├── test_layouts.cpython-37.pyc
│   │   │   │   ├── test___main__.cpython-37.pyc
│   │   │   │   ├── test_model.cpython-37.pyc
│   │   │   │   ├── test_objects.cpython-37.pyc
│   │   │   │   ├── test_palettes.cpython-37.pyc
│   │   │   │   ├── test_resources.cpython-37.pyc
│   │   │   │   ├── test_server.cpython-37.pyc
│   │   │   │   ├── test_settings.cpython-37.pyc
│   │   │   │   ├── test_themes.cpython-37.pyc
│   │   │   │   ├── test_tile_providers.cpython-37.pyc
│   │   │   │   ├── test_transform.cpython-37.pyc
│   │   │   │   └── test_widgets.cpython-37.pyc
│   │   │   ├── test_client_server.py
│   │   │   ├── test_driving.py
│   │   │   ├── test_events.py
│   │   │   ├── test___init__.py
│   │   │   ├── test_layouts.py
│   │   │   ├── test___main__.py
│   │   │   ├── test_model.py
│   │   │   ├── test_objects.py
│   │   │   ├── test_palettes.py
│   │   │   ├── test_resources.py
│   │   │   ├── test_server.py
│   │   │   ├── test_settings.py
│   │   │   ├── test_themes.py
│   │   │   ├── test_tile_providers.py
│   │   │   ├── test_transform.py
│   │   │   └── test_widgets.py
│   │   ├── themes
│   │   │   ├── _caliber.py
│   │   │   ├── _dark_minimal.py
│   │   │   ├── __init__.py
│   │   │   ├── _light_minimal.py
│   │   │   ├── __pycache__
│   │   │   │   ├── _caliber.cpython-37.pyc
│   │   │   │   ├── _dark_minimal.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── _light_minimal.cpython-37.pyc
│   │   │   │   └── theme.cpython-37.pyc
│   │   │   └── theme.py
│   │   ├── tile_providers.py
│   │   ├── transform.py
│   │   ├── util
│   │   │   ├── browser.py
│   │   │   ├── callback_manager.py
│   │   │   ├── compiler.py
│   │   │   ├── datatypes.py
│   │   │   ├── dependencies.py
│   │   │   ├── deprecation.py
│   │   │   ├── future.py
│   │   │   ├── hex.py
│   │   │   ├── __init__.py
│   │   │   ├── logconfig.py
│   │   │   ├── options.py
│   │   │   ├── paths.py
│   │   │   ├── __pycache__
│   │   │   │   ├── browser.cpython-37.pyc
│   │   │   │   ├── callback_manager.cpython-37.pyc
│   │   │   │   ├── compiler.cpython-37.pyc
│   │   │   │   ├── datatypes.cpython-37.pyc
│   │   │   │   ├── dependencies.cpython-37.pyc
│   │   │   │   ├── deprecation.cpython-37.pyc
│   │   │   │   ├── future.cpython-37.pyc
│   │   │   │   ├── hex.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── logconfig.cpython-37.pyc
│   │   │   │   ├── options.cpython-37.pyc
│   │   │   │   ├── paths.cpython-37.pyc
│   │   │   │   ├── sampledata.cpython-37.pyc
│   │   │   │   ├── serialization.cpython-37.pyc
│   │   │   │   ├── session_id.cpython-37.pyc
│   │   │   │   ├── string.cpython-37.pyc
│   │   │   │   ├── terminal.cpython-37.pyc
│   │   │   │   ├── tornado.cpython-37.pyc
│   │   │   │   ├── version.cpython-37.pyc
│   │   │   │   └── warnings.cpython-37.pyc
│   │   │   ├── sampledata.py
│   │   │   ├── serialization.py
│   │   │   ├── session_id.py
│   │   │   ├── string.py
│   │   │   ├── terminal.py
│   │   │   ├── tests
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── test_browser.cpython-37.pyc
│   │   │   │   │   ├── test_callback_manager.cpython-37.pyc
│   │   │   │   │   ├── test_compiler.cpython-37.pyc
│   │   │   │   │   ├── test_dependencies.cpython-37.pyc
│   │   │   │   │   ├── test_deprecation.cpython-37.pyc
│   │   │   │   │   ├── test_hex.cpython-37.pyc
│   │   │   │   │   ├── test_options.cpython-37.pyc
│   │   │   │   │   ├── test_sampledata.cpython-37.pyc
│   │   │   │   │   ├── test_serialization.cpython-37.pyc
│   │   │   │   │   ├── test_session_id.cpython-37.pyc
│   │   │   │   │   ├── test_string.cpython-37.pyc
│   │   │   │   │   ├── test_tornado.cpython-37.pyc
│   │   │   │   │   └── test_version.cpython-37.pyc
│   │   │   │   ├── test_browser.py
│   │   │   │   ├── test_callback_manager.py
│   │   │   │   ├── test_compiler.py
│   │   │   │   ├── test_dependencies.py
│   │   │   │   ├── test_deprecation.py
│   │   │   │   ├── test_hex.py
│   │   │   │   ├── test_options.py
│   │   │   │   ├── test_sampledata.py
│   │   │   │   ├── test_serialization.py
│   │   │   │   ├── test_session_id.py
│   │   │   │   ├── test_string.py
│   │   │   │   ├── test_tornado.py
│   │   │   │   └── test_version.py
│   │   │   ├── tornado.py
│   │   │   ├── version.py
│   │   │   └── warnings.py
│   │   └── _version.py
│   └── bokeh-1.0.3.dist-info
│   ├── entry_points.txt
│   ├── INSTALLER
│   ├── LICENSE.txt
│   ├── METADATA
│   ├── RECORD
│   ├── top_level.txt
│   └── WHEEL
└── nix-support
└── propagated-build-inputs
112 directories, 1086 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment