You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Added GUI and fixed installer to work with it. Cleaned up some bugs when data output had one row only. Added float parsing. Updated string parsing to handle what looks like integers (0124).
parser=GooeyParser(description='Enter the name of the POJO in Entity and select a file with pipe separated (|) values with included headers. Click typescript for typescript generation.')
22
24
# Required Parameters
23
-
parser.add_argument('--entity', required=True, nargs=1, help="Name of the Entity")
24
-
parser.add_argument('--data', required=True, nargs=1, help="Pipe separated values (.txt) as result of query", widget='FileChooser')
25
+
parser.add_argument('--entity', required=True, nargs=1, metavar='Entity Name', help='Name of the Entity')
26
+
parser.add_argument('--data', required=True, nargs=1, metavar='Data', help='Pipe separated values as result of query', widget='FileChooser')
25
27
26
28
# Optional
27
-
parser.add_argument('--typescript', required=False, action='store_true', help="If supplied, will output a typescript file as well for Entity")
0 commit comments