1"""
2Shim to maintain backwards compatibility with old IPython.consoleapp imports.
3"""
4# Copyright (c) IPython Development Team.
5# Distributed under the terms of the Modified BSD License.
6
7from warnings import warn
8
9warn("The `IPython.consoleapp` package has been deprecated. "
10     "You should import from jupyter_client.consoleapp instead.")
11
12from jupyter_client.consoleapp import *
13