3 Commits
main ... 0.3

Author SHA1 Message Date
Ole Siepmann
23fc848855 Update README.md 2022-01-18 12:34:48 +01:00
oleting
5a0e79c403 . 2022-01-18 12:30:49 +01:00
Ole Siepmann
b50ae2c082 Update README.md 2021-04-26 13:49:39 +02:00
2 changed files with 3 additions and 2 deletions

View File

@@ -1,6 +1,7 @@
# Nassi-Shneiderman-Diagramm-Generator
This python code generates a Nassi Shneiderman Diagramm from Java Source Code
This python code generates a Nassi Shneiderman Diagramm from Java Source Code.
Newest Version --> 0.3
How it works:
In the final version, you will just have to execute the nassi.exe and choose your Code, it will display a preview of the Nassi-Shneiderman-Diagramm and give you the path of the created picture.

View File

@@ -104,7 +104,7 @@ class Gui:
if output_name is None:
sg.popup_auto_close(
'You didn\'t set a name for the image, it will be named randomly.')
output_name = secrets.token_hex(16)
output_name = "Nassi ist geil: " + secrets.token_hex(2)
path, file_is_empty = nassi_file(input_path=file_path, output_path=output_path, outputname=output_name, gui=self,
font_filepath=font_filepath, behaviour=exists_choice, types=types, remove_tags=modifier, comments=comments)