GRAPHIC: New Entity Operations™ Alpha Logo

EntityScript



StandardOutput01



Configuring a modified or "branched" standard output would require knowledge of sub-system interfaces. You could tie them into many common open source IDE's this way. Blank output is supplied by default if the _interface hasn't been activated.


# -*- coding: utf-8 -*-
"""
COPYRIGHT (C) 2020-2021 NEW ENTITY OPERATIONS INC. ALL RIGHTS RESERVED
INSTANCE: OPENPACKAGER-> corehost-> StandardOutput01
MODIFIED: 2021/01/12
OVERVIEW: Output standard runtime information to the emulator
"""
__version__ = "0.0.5"
__author__ = "Ryan McKenna"
__copyright__ = "Copyright (C) 2020-2021 New Entity Operations Inc."
__credits__ = [
 "Ryan McKenna",
 "New Entity Operations Inc.", "New Entity Operations, LLC"]
__email__ = "Operator@NewEntityOperations.com"
__license__ = "New Entity License"
__maintainer__ = "Ryan McKenna"
__status__ = "Production"

## Imports: Custom
from core_middlelayer import (TERMINAL_OUTPUT)

## Standard Output Generator
#***********************************#
# START: STEP 10 - FRONTEND HOOK  #
#***********************************#
print("---------- START: STsEP 10 - FRONTEND HOOK ----------")
class VisualOutputStarting(object):
 def establish():
  print(TERMINAL_OUTPUT)
print("---------- STOP: STEP 10 - FRONTEND HOOK----------\n")
#***********************************#
# STOP: STEP 10 - FRONTEND HOOK    #
#***********************************#



Return HOME