Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
ewjoachim.github.io/_scripts/ipynb_to_jekyll.py
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
117 lines (88 sloc)
3.49 KB
This file contains 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
#!/usr/bin/env python3 | |
# coding=utf-8 | |
""" | |
Borrowed and updated from | |
https://adamj.eu/tech/2014/09/21/using-ipython-notebook-to-write-jekyll-blog-posts/ | |
""" | |
from __future__ import print_function | |
import functools | |
import json | |
import os | |
import re | |
import sys | |
import io | |
import glob | |
def main(): | |
for filename in sys.argv[1:] or ["_posts/*"]: | |
for one_filename in glob.glob(filename): | |
if one_filename.endswith(".ipynb"): | |
convert(one_filename) | |
def convert(filename): | |
notebook = json.load(open(filename)) | |
dirname = os.path.dirname(filename) | |
title = os.path.splitext(os.path.basename(filename))[0] | |
out_filename = os.path.join( | |
dirname, | |
"{}.md".format(title) | |
) | |
out_content = "" | |
mem_file = io.StringIO() | |
write = functools.partial(print, file=mem_file) | |
cells = notebook['cells'] | |
for cell in cells: | |
if cell.get("metadata", {}).get("invisible", False): | |
continue | |
try: | |
if cell['cell_type'] == 'markdown': | |
# Easy | |
write(''.join(cell['source'])) | |
elif cell['cell_type'] == 'code': | |
write("{% capture content %}{% highlight python %}") | |
write(''.join(cell['source'])) | |
write("{% endhighlight %}{% endcapture %}") | |
write("{{% include notebook-cell.html execution_count='{}' content=content type='input' %}}".format( | |
"In: [{}]".format(cell['execution_count'] or " "), | |
)) | |
unknown_types = {o['output_type'] for o in cell['outputs']} - {'stream', 'execute_result', 'error'} | |
if unknown_types: | |
raise ValueError("Unknown types : {}".format(", ".join(unknown_types))) | |
for output in cell['outputs']: | |
output_type_css = { | |
'execute_result': 'output', | |
'stream': 'print', | |
'error': 'exception', | |
} | |
header = "" | |
if output['output_type'] == 'execute_result': | |
content = ''.join(output['data']["text/plain"]) | |
header = "Out: [{}]".format(cell['execution_count']) | |
else: | |
if output['output_type'] == 'stream': | |
content = ''.join(output['text']).strip(" \n") | |
elif output['output_type'] == 'error': | |
content = '\n'.join( | |
strip_colors(o) | |
for o in output['traceback'] | |
).strip(" \n") | |
write("{% capture content %}{% highlight pytb %}") | |
write(content) | |
write("{% endhighlight %}{% endcapture %}") | |
write( | |
"{{% include notebook-cell.html execution_count='{}' " | |
"content=content type='{}' %}}".format( | |
header, | |
output_type_css[output['output_type']] | |
) | |
) | |
except: | |
print(cell, type(cell)) | |
raise | |
write("") | |
with open(out_filename, "w") as out_file: | |
out_file.write(mem_file.getvalue()) | |
print("{} created.".format(out_filename)) | |
ansi_escape = re.compile(r'\x1b[^m]*m') | |
def strip_colors(string): | |
return ansi_escape.sub('', string) | |
if __name__ == '__main__': | |
main() |