Skip to content

Latest commit

 

History

History
27 lines (21 loc) · 894 Bytes

README.md

File metadata and controls

27 lines (21 loc) · 894 Bytes

VPLCodeGenerator

Python 3.10 test

Visual Programming Language Elements Auto-Generation

Questions?

  • offline generation
  • realtime generation

Development

Docstring

The NumPy style docstring is used for functions, class, modules in this library.

#: doc comment is used for variable or attributes docstring.

class AClass(object):
    """    
    Description for class 

    """

    def __init__(self, v1, v2):
        self.v1 = v1 #: initial value: v1 using doc comment
        self.v2 = v2 # initial value: v2 using comment