Navigation | Overlay |
---|---|
t Navigate files | h Toggle hits |
y Change url to tip of branch | m Toggle misses |
b / v Jump to prev/next hit line | p Toggle partial |
z / x Jump to prev/next missed or partial line | 1..9 Toggle flags |
shift + o Open current page in GitHub | a Toggle all on |
/ or ? Show keyboard shortcuts dialog | c Toggle context lines or commits |
1 |
"""
|
|
2 |
The io module contains utilities for loading JS components, embedding
|
|
3 |
model state, and rendering panel objects.
|
|
4 |
"""
|
|
5 |
|
|
6 | 6 |
import logging |
7 |
|
|
8 | 6 |
from ..config import config |
9 |
|
|
10 | 6 |
from .callbacks import PeriodicCallback # noqa |
11 | 6 |
from .embed import embed_state # noqa |
12 | 6 |
from .state import state # noqa |
13 | 6 |
from .model import add_to_doc, remove_root, diff # noqa |
14 | 6 |
from .resources import Resources # noqa |
15 | 6 |
from .server import get_server, init_doc, serve, unlocked, with_lock # noqa |
16 | 6 |
from .notebook import block_comm, ipywidget, load_notebook, push # noqa |
17 |
|
|
18 | 6 |
panel_logger = logging.getLogger('panel') |
19 |
|
|
20 | 6 |
if config.log_level is not None: |
21 | 6 |
panel_logger.setLevel(config.log_level) |
Read our documentation on viewing source code .