cod8a 0.2.1__tar.gz → 0.2.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {cod8a-0.2.1 → cod8a-0.2.2}/PKG-INFO +4 -4
- {cod8a-0.2.1 → cod8a-0.2.2}/README.md +3 -3
- {cod8a-0.2.1 → cod8a-0.2.2}/pyproject.toml +1 -1
- {cod8a-0.2.1 → cod8a-0.2.2}/LICENSE +0 -0
- {cod8a-0.2.1 → cod8a-0.2.2}/src/cod8a/__init__.py +0 -0
- {cod8a-0.2.1 → cod8a-0.2.2}/src/cod8a/cli.py +0 -0
- {cod8a-0.2.1 → cod8a-0.2.2}/src/cod8a/cod8a.py +0 -0
- {cod8a-0.2.1 → cod8a-0.2.2}/src/cod8a/dotnet/CodeAnalyzer/CodeAnalyzer.csproj +0 -0
- {cod8a-0.2.1 → cod8a-0.2.2}/src/cod8a/dotnet/CodeAnalyzer/CodeAnalyzer.csproj.lscache +0 -0
- {cod8a-0.2.1 → cod8a-0.2.2}/src/cod8a/dotnet/CodeAnalyzer/Parsers/BaseParser.cs +0 -0
- {cod8a-0.2.1 → cod8a-0.2.2}/src/cod8a/dotnet/CodeAnalyzer/Parsers/FileParser.cs +0 -0
- {cod8a-0.2.1 → cod8a-0.2.2}/src/cod8a/dotnet/CodeAnalyzer/Parsers/ProjectParser.cs +0 -0
- {cod8a-0.2.1 → cod8a-0.2.2}/src/cod8a/dotnet/CodeAnalyzer/Parsers/SolutionParser.cs +0 -0
- {cod8a-0.2.1 → cod8a-0.2.2}/src/cod8a/dotnet/CodeAnalyzer/Program.cs +0 -0
- {cod8a-0.2.1 → cod8a-0.2.2}/src/cod8a/dotnet/CodeAnalyzer/models/FileStructure.cs +0 -0
- {cod8a-0.2.1 → cod8a-0.2.2}/src/cod8a/dotnet/CodeAnalyzer/models/ProjectStructure.cs +0 -0
- {cod8a-0.2.1 → cod8a-0.2.2}/src/cod8a/dotnet/CodeAnalyzer/models/SolutionStructure.cs +0 -0
- {cod8a-0.2.1 → cod8a-0.2.2}/src/cod8a/dotnet/Test/CodeAnalyzerTest.csproj +0 -0
- {cod8a-0.2.1 → cod8a-0.2.2}/src/cod8a/dotnet/Test/ExtensionTypeTest.cs +0 -0
- {cod8a-0.2.1 → cod8a-0.2.2}/src/cod8a/dotnet/Test/Mermaid/ClassDiagramTest.cs +0 -0
- {cod8a-0.2.1 → cod8a-0.2.2}/src/cod8a/enums/__init__.py +0 -0
- {cod8a-0.2.1 → cod8a-0.2.2}/src/cod8a/enums/diagram_type.py +0 -0
- {cod8a-0.2.1 → cod8a-0.2.2}/src/cod8a/generators/mermaid/class_diagram.py +0 -0
- {cod8a-0.2.1 → cod8a-0.2.2}/src/cod8a/generators/mermaid/flowchart_diagram.py +0 -0
- {cod8a-0.2.1 → cod8a-0.2.2}/src/cod8a/generators/mermaid/sequence_diagram.py +0 -0
- {cod8a-0.2.1 → cod8a-0.2.2}/src/cod8a/helpers/__init__.py +0 -0
- {cod8a-0.2.1 → cod8a-0.2.2}/src/cod8a/helpers/cli_helper.py +0 -0
- {cod8a-0.2.1 → cod8a-0.2.2}/src/cod8a/models/__init__.py +0 -0
- {cod8a-0.2.1 → cod8a-0.2.2}/src/cod8a/models/models.py +0 -0
- {cod8a-0.2.1 → cod8a-0.2.2}/src/cod8a/parsers/dotnet_parser.py +0 -0
- {cod8a-0.2.1 → cod8a-0.2.2}/src/cod8a/parsers/python_parser.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: cod8a
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.2
|
|
4
4
|
Summary: cod8a is a code documentation and visualization tool for Python and .NET projects
|
|
5
5
|
License-Expression: MIT
|
|
6
6
|
License-File: LICENSE
|
|
@@ -72,9 +72,9 @@ cod8a uml -p <path_to_source> --no-summarize
|
|
|
72
72
|
### Samples
|
|
73
73
|
Below are detailed example Mermaid diagrams generated by `cod8a` based on its own `src/cod8a/models/models.py` file:
|
|
74
74
|
|
|
75
|
-
- [Class Diagram Example](examples/class_diagram.mmd)
|
|
76
|
-
- [Flowchart Example](examples/flowchart.mmd)
|
|
77
|
-
- [Sequence Diagram Example](examples/sequence_diagram.mmd)
|
|
75
|
+
- [Class Diagram Example](https://github.com/marietta-a/cod8a/blob/main/examples/class_diagram.mmd)
|
|
76
|
+
- [Flowchart Example](https://github.com/marietta-a/cod8a/blob/main/examples/flowchart.mmd)
|
|
77
|
+
- [Sequence Diagram Example](https://github.com/marietta-a/cod8a/blob/main/examples/sequence_diagram.mmd)
|
|
78
78
|
|
|
79
79
|
### CLI Options
|
|
80
80
|
|
|
@@ -53,9 +53,9 @@ cod8a uml -p <path_to_source> --no-summarize
|
|
|
53
53
|
### Samples
|
|
54
54
|
Below are detailed example Mermaid diagrams generated by `cod8a` based on its own `src/cod8a/models/models.py` file:
|
|
55
55
|
|
|
56
|
-
- [Class Diagram Example](examples/class_diagram.mmd)
|
|
57
|
-
- [Flowchart Example](examples/flowchart.mmd)
|
|
58
|
-
- [Sequence Diagram Example](examples/sequence_diagram.mmd)
|
|
56
|
+
- [Class Diagram Example](https://github.com/marietta-a/cod8a/blob/main/examples/class_diagram.mmd)
|
|
57
|
+
- [Flowchart Example](https://github.com/marietta-a/cod8a/blob/main/examples/flowchart.mmd)
|
|
58
|
+
- [Sequence Diagram Example](https://github.com/marietta-a/cod8a/blob/main/examples/sequence_diagram.mmd)
|
|
59
59
|
|
|
60
60
|
### CLI Options
|
|
61
61
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|