__init__.py 465 B

123456789101112131415161718
  1. """Terminals support."""
  2. import warnings
  3. # Shims
  4. from jupyter_server_terminals import api_handlers
  5. from jupyter_server_terminals.handlers import TermSocket
  6. from jupyter_server_terminals.terminalmanager import TerminalManager
  7. warnings.warn(
  8. "Terminals support has moved to `jupyter_server_terminals`",
  9. DeprecationWarning,
  10. stacklevel=2,
  11. )
  12. def initialize(webapp, root_dir, connection_url, settings):
  13. """Included for backward compat, but no-op."""