export.py 363 B

123456789
  1. """Deprecated as of 5.0 use nbconvert.exporters.base."""
  2. # Copyright (c) Jupyter Development Team.
  3. # Distributed under the terms of the Modified BSD License.
  4. import warnings
  5. warnings.warn("""`nbconvert.exporters.export` has been deprecated in favor of `nbconvert.exporters.base` since nbconvert 5.0.""",
  6. DeprecationWarning)
  7. from .exporter_locator import *