python.tpl 473 B

1234567891011121314151617181920
  1. {%- extends 'null.tpl' -%}
  2. {%- block header -%}
  3. #!/usr/bin/env python
  4. # coding: utf-8
  5. {% endblock header %}
  6. {% block in_prompt %}
  7. {% if resources.global_content_filter.include_input_prompt -%}
  8. # In[{{ cell.execution_count if cell.execution_count else ' ' }}]:
  9. {% endif %}
  10. {% endblock in_prompt %}
  11. {% block input %}
  12. {{ cell.source | ipython2python }}
  13. {% endblock input %}
  14. {% block markdowncell scoped %}
  15. {{ cell.source | comment_lines }}
  16. {% endblock markdowncell %}