I googled it all but not able to find the tool to convert PLANTUML to the sequence diagram in python
Is there any library / tool for converting the plantuml to sequence diagram using python?
I understand this online tool does this : https://www.planttext.com/ but I want to automate the process so I don't want to use the online tool
Edit :
@startuml
participant ClassA as Class_UmlA
participant ClassB as Class_UmlB
note right of Class_UmlA: Function to test
Class_UmlA -> Class_UmlB : Function1
activate Class_UmlA
@enduml
Thanks,
Harry