Assume you have a .ipynb file with code cells and normal text for a proyect. I've been looking for ways to extract "code" cells directly to a .py file so i can mess with it and upload it on my standard format to Github.
I've tried parsing with awk, but due to the format having " in front of code lines and ASCII formatting, i'm out of clues. Are there any libraries, or ways to accomplish this without having to copypaste every code cell from the Notebook to my .py file? As i have one file for each proyect, feels dull to do this every time.
Thanks in advance!