jupyter.py 177 B

12345678910
  1. """Launch the root jupyter command
  2. Alias to jupyter_core
  3. """
  4. __version__ = '1.0.0'
  5. if __name__ == '__main__':
  6. from runpy import run_module
  7. run_module('jupyter_core')