File: jupyter-migrate

package info (click to toggle)
jupyter-core 5.7.2-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 740 kB
  • sloc: python: 2,595; makefile: 175; sh: 77; javascript: 1
file content (9 lines) | stat: -rwxr-xr-x 207 bytes parent folder | download
1
2
3
4
5
6
7
8
9
#!/usr/bin/env python
# PYTHON_ARGCOMPLETE_OK
"""Migrate Jupyter config from IPython < 4.0"""
from __future__ import annotations

from jupyter_core.migrate import main

if __name__ == "__main__":
    main()