syrenka is mermaid markdown generator
Project description
syrenka
syrenka is mermaid markdown generator
Description
The aim of this project is to provide easy to use classes for generating mermaid charts and diagrams.
Installation
pip install syrenka
Example
SyrenkaClassDiagram
Here are current classes in syrenka module:
---
title: syrenka class diagram
config:
theme: neutral
class:
hideEmptyMembersBox: true
---
classDiagram
namespace syrenka.classdiagram{
class SyrenkaClass{
+lang_class
+indent
+skip_underscores
+\_\_init\_\_(self, cls, bool skip_underscores)
+to_code(self, TextIOBase file, int indent_level, str indent_base)
+to_code_inheritance(self, TextIOBase file, int indent_level, str indent_base)
}
class SyrenkaClassDiagram{
+title
+unique_classes
+config
+\_\_init\_\_(self, str title, SyrenkaClassDiagramConfig config)
+add_class(self, cls)
+add_classes(self, classes)
+to_code(self, TextIOBase file, int indent_level, str indent_base)
}
class SyrenkaClassDiagramConfig{
+class_config
+\_\_init\_\_(self)
+set(self, name, value)
+theme(self, theme_name)
+to_code(self, TextIOBase file)
}
class SyrenkaEnum{
+cls
+indent
+skip_underscores
+\_\_init\_\_(self, cls, bool skip_underscores)
+to_code(self, TextIOBase file, int indent_level, str indent_base)
+to_code_inheritance(self, file, int indent_level, str indent_base)
}
}
namespace syrenka.flowchart{
class SyrenkaFlowchart{
+\_\_init\_\_(self, str title, FlowchartDirection direction, MutableSequence nodes)
+add(self, Node node)
+connect(self, Node source, Node target, EdgeType edge_type)
+connect_by_id(self, str source_id, str target_id, EdgeType edge_type)
+get_node_by_id(self, str id)
+remove(self, Node node, bool exception_if_not_exists)
+to_code(self, TextIOBase file, int indent_level, str indent_base)
}
class Edge{
+id
+edge_type
+text
+source
+target
+\_\_init\_\_(self, EdgeType edge_type, text, source, target)
+to_code(self, TextIOBase file, indent_level, indent_base)
+valid(self)
}
class EdgeType{
<<enumeration>>
ArrowEdge
CircleEdge
CrossEdge
DottedLink
InvisibleLink
MultiArrowEdge
MultiCircleEdge
MultiCrossEdge
OpenLink
ThickLink
}
class FlowchartDirection{
<<enumeration>>
BottomToTop
LeftToRight
RightToLeft
TopToBottom
}
class Node{
+id
+text
+shape
+\_\_init\_\_(self, str id, Optional text, NodeShape shape)
+to_code(self, TextIOBase file, int indent_level, str indent_base)
}
class NodeShape{
<<enumeration>>
AssymetricShape
Circle
CylindricalShape
Default
DoubleCircle
HexagonNode
Parallelogram
Rhombus
RoundEdges
StadiumShapedNode
SubroutineShape
Trapezoid
TrapezoidAlt
}
class Subgraph{
+edges
+direction
+nodes_dict
+subgraphs_dict
+\_\_init\_\_(self, str id, text, FlowchartDirection direction, MutableSequence nodes)
+add(self, Node node)
+get_node_by_id(self, str id)
+remove(self, Node node, bool exception_if_not_exists)
+to_code(self, TextIOBase file, int indent_level, str indent_base)
}
}
namespace syrenka.lang.base{
class LangAccess{
<<enumeration>>
Private
Protected
Public
}
class LangAttr{
+\_\_init\_\_(self, str name, str typee, LangAccess access)
}
class LangClass{
+\_\_init\_\_(self)
-_parse(self, bool force)
+attributes(self)
+functions(self)
+namespace(self)
}
class LangFunction{
+\_\_init\_\_(self, LangVar ident, list args, LangAccess access)
}
class LangVar{
+\_\_init\_\_(self, str name, str typee)
}
}
namespace syrenka.lang.python{
class PythonClass{
+cls
+parsed
+info
+skip_underscores
+\_\_init\_\_(self, cls)
-_parse(self, bool force)
+attributes(self)
+functions(self)
}
class PythonModuleAnalysis{
-_classes_in_module(module module, bool nested)
+classes_in_module(module_name, bool nested)
+generate_class_list_from_module(module_name, starts_with)
+get_access_from_name(name)
+get_assign_attributes(FunctionDef ast_function)
+get_ast(filename)
+get_ast_function(filename, firstlineno)
+get_ast_node(filename, firstlineno, ast_type)
+isbuiltin_module(module module)
}
}
namespace syrenka.base{
class SyrenkaGeneratorBase{
+\_\_init\_\_(self)
+to_code(self, TextIOBase file, int indent_level, str indent_base)
}
class SyrenkaConfig{
+config
+\_\_init\_\_(self)
+set(self, name, value)
+theme(self, theme_name)
+to_code(self, TextIOBase file)
}
class ThemeNames{
<<enumeration>>
base
dark
default
forest
neutral
}
}
%% inheritance
SyrenkaGeneratorBase <|-- SyrenkaClass
SyrenkaGeneratorBase <|-- SyrenkaClassDiagram
SyrenkaConfig <|-- SyrenkaClassDiagramConfig
SyrenkaGeneratorBase <|-- SyrenkaEnum
Subgraph <|-- SyrenkaFlowchart
SyrenkaGeneratorBase <|-- Edge
SyrenkaGeneratorBase <|-- Node
Node <|-- Subgraph
LangClass <|-- PythonClass
So how do we get it? This is a code snippet that does it:
from syrenka.classdiagram import SyrenkaClassDiagram, SyrenkaClassDiagramConfig
from syrenka.base import ThemeNames
from syrenka.lang.python import PythonModuleAnalysis
# from io import StringIO
import sys
class_diagram = SyrenkaClassDiagram(
"syrenka class diagram", SyrenkaClassDiagramConfig().theme(ThemeNames.neutral)
)
class_diagram.add_classes(
PythonModuleAnalysis.classes_in_module(module_name="syrenka", nested=True)
)
# file can be anything that implements TextIOBase
# out = StringIO() # string buffer in memory
out = sys.stdout # stdout
# out = open("syrenka.md", "w") # write it to file
class_diagram.to_code(file=out)
# StringIO
# out.seek(0)
# print(out.read())
SyrenkaFlowchart
Here is the simple flowchart:
---
title: Simple Flowchart
---
flowchart TB
1 --> 2
2 --> 3
3 --> 4
4 --> s
1["First"]
subgraph s["Subgraph"]
2["Second"]
3["Third"]
end
4["Fourth"]
and the code behind it:
import syrenka.flowchart as sf
import sys
fl = sf.SyrenkaFlowchart(
title="Simple Flowchart", direction=sf.FlowchartDirection.TopToBottom
)
fl.add(sf.Node(id="1", text="First"))
sub = sf.Subgraph(id="s", text="Subgraph")
sub.add(sf.Node(id="2", text="Second"))
sub.add(sf.Node(id="3", text="Third"))
fl.add(sub)
fl.add(sf.Node(id="4", text="Fourth"))
fl.connect_by_id("1", "2")
fl.connect_by_id(source_id="2", target_id="3", edge_type=sf.EdgeType.DottedLink)
fl.connect_by_id("3", "4").connect_by_id("4", "s", sf.EdgeType.ThickLink)
fl.to_code(file=sys.stdout)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file syrenka-0.3.1.tar.gz.
File metadata
- Download URL: syrenka-0.3.1.tar.gz
- Upload date:
- Size: 36.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
997c5c6ebcc8c251cb83de9765b0151481273314d2be35e798be8509c168efc4
|
|
| MD5 |
2f51eafa093d7e4f36ca5f4c6ea67243
|
|
| BLAKE2b-256 |
f5b71039286498bdec79d68fbce7776828dc9654ab3b4ed22897d2d4cce2f3c4
|
Provenance
The following attestation bundles were made for syrenka-0.3.1.tar.gz:
Publisher:
python-publish.yml on bartlomiejcieszkowski/syrenka
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
syrenka-0.3.1.tar.gz -
Subject digest:
997c5c6ebcc8c251cb83de9765b0151481273314d2be35e798be8509c168efc4 - Sigstore transparency entry: 191637573
- Sigstore integration time:
-
Permalink:
bartlomiejcieszkowski/syrenka@d4993a66d70370346c18e6aa05a62b28bd432996 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/bartlomiejcieszkowski
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@d4993a66d70370346c18e6aa05a62b28bd432996 -
Trigger Event:
release
-
Statement type:
File details
Details for the file syrenka-0.3.1-py3-none-any.whl.
File metadata
- Download URL: syrenka-0.3.1-py3-none-any.whl
- Upload date:
- Size: 12.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
106b153745960214f9a883f0fcb246422af650a72f09912dddd39c9ffe701539
|
|
| MD5 |
6ab4d5cbc52f6928c7a313eed2d4f1d2
|
|
| BLAKE2b-256 |
e25b760f380282c191aa21a6f8af4adb256324d54fe36d45448270de83f3d119
|
Provenance
The following attestation bundles were made for syrenka-0.3.1-py3-none-any.whl:
Publisher:
python-publish.yml on bartlomiejcieszkowski/syrenka
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
syrenka-0.3.1-py3-none-any.whl -
Subject digest:
106b153745960214f9a883f0fcb246422af650a72f09912dddd39c9ffe701539 - Sigstore transparency entry: 191637574
- Sigstore integration time:
-
Permalink:
bartlomiejcieszkowski/syrenka@d4993a66d70370346c18e6aa05a62b28bd432996 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/bartlomiejcieszkowski
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@d4993a66d70370346c18e6aa05a62b28bd432996 -
Trigger Event:
release
-
Statement type: