Skip to content

Instantly share code, notes, and snippets.

@sberke
Last active November 1, 2015 21:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save sberke/7360a4b7aa79aefccbb0 to your computer and use it in GitHub Desktop.
Save sberke/7360a4b7aa79aefccbb0 to your computer and use it in GitHub Desktop.
An Plantuml extension for generating UML figures from within ipython notebook.
"""
An Plantuml extension for generating UML figures from within ipython notebook.
Source: http://stackoverflow.com/questions/20303335/ipython-notebook-plantuml-extension
See example notebook at: http://nbviewer.ipython.org/gist/sberke/bb90ff09193a8888d7f7
"""
import os
from IPython.core.magic import magics_class, cell_magic, Magics
from IPython.display import Image, SVG
@magics_class
class Plantuml(Magics):
@cell_magic
def plantuml(self, line, cell):
"""Generate and display a figure using Plantuml.
Usage:
%java -jar plantuml.jar -tsvg filname
"""
self.filename = line
self.code = cell
with open(self.filename + ".plt", "w") as file:
file.write(self.code)
os.system("java -jar plantuml.jar -tsvg %s.plt" % self.filename)
return SVG(filename=self.filename+".svg")
def load_ipython_extension(ipython):
ipython.register_magics(Plantuml)
@sberke
Copy link
Author

sberke commented Nov 1, 2014

Deprecated and moved to git repo: https://github.com/sberke/ipython-plantuml

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment