This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"""Convert ipynb file to py file from CLI. | |
Usage: | |
python ./convert_ipynb_to_py.py [full input path] [full output path] | |
!! overwrites output path without warning if it exists !! | |
""" | |
import sys | |
import json |