You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
465 B
Python

import logging
# outputDict={
# 'status': 1,
# 'input': {
# 'argsRaw': sys.argv,
# 'streamObjects': []
# },
# 'output': [],
# 'errors': []
# }
class OutputObject:
def __init__(self):
self.status = 1
import sys
self.input = {
'argsRaw': sys.argv,
'streamObjects': []
}
del sys
self.output = []
self.errors = []