Last active
July 22, 2021 13:31
-
-
Save sng2c/a6ac0a66410e931f577ec923355d0e88 to your computer and use it in GitHub Desktop.
plantuml.ipynb
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
!pip install plantuml | |
import plantuml | |
from IPython.display import Image | |
_puml = plantuml.PlantUML('http://www.plantuml.com/plantuml/img/') | |
def puml(s): | |
return Image(_puml.processes(s)) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment