+ author and description

This commit is contained in:
oleting
2021-02-09 15:42:14 +01:00
parent 99cc7993fa
commit 96b4aedf66
10 changed files with 68 additions and 0 deletions

View File

@@ -1,3 +1,10 @@
#!/usr/bin/env python
"""Iinstruction.py: #TODO"""
__author__ = "Weckyy702"
from typing import Iterable, List
from abc import ABCMeta, abstractmethod
from draw import code_to_image as cti

View File

@@ -1,3 +1,9 @@
#!/usr/bin/env python
"""code_to_image.py: #TODO"""
__author__ = "plexx, Weckyy702"
from typing import Iterable
from PIL import Image, ImageDraw, ImageFont
import os

View File

@@ -1,3 +1,10 @@
#!/usr/bin/env python
"""code_to_image_wrapper.py: #TODO"""
__author__ = "Weckyy702"
import draw.code_to_image as cti
class NSD_writer(object):

View File

@@ -1,3 +1,10 @@
#!/usr/bin/env python
"""gui.py: handle and init Gui."""
__author__ = "oleting"
from gui.utils import nassi, output
from gui.new_window_layouts import Layout_std, Layout_settings
from errors.custom import JavaSyntaxError, ScopeNotFoundException, InterpreterException, NoPathError

View File

@@ -1,3 +1,10 @@
#!/usr/bin/env python
"""new_window_layouts.py: create layouts"""
__author__ = "oleting"
import PySimpleGUI as sg
class Layout_std:

View File

@@ -1,3 +1,10 @@
#!/usr/bin/env python
"""utils.py: utils for gui.py"""
__author__ = "oleting, Weckyy702"
from errors.custom import NoPathError
from interpreter.NassiShneidermann import NassiShneidermanDiagram, Overwrite_behaviour, OB

View File

@@ -1,3 +1,11 @@
#!/usr/bin/env python
"""NassiShneidermann.py: #TODO"""
__author__ = "Weckyy702"
from typing import Dict, List, Optional
from PySimpleGUI import one_line_progress_meter
import logging

View File

@@ -1,3 +1,9 @@
#!/usr/bin/env python
"""function_scope.py: #TODO"""
__author__ = "Weckyy702"
from typing import Iterable, List
from draw.Iinstruction import Iinstruction

View File

@@ -1,3 +1,11 @@
#!/usr/bin/env python
"""interpret_source.py: #TODO"""
__author__ = "Weckyy702"
import logging
import re
from typing import Dict, List, Match, Tuple, Union, Iterable

5
run.py
View File

@@ -1,4 +1,9 @@
#!/usr/bin/env python
"""run.py: entrypoint"""
__author__ = "oleting, Weckyy702"
from gui.gui import Gui as gui
from sys import argv