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
@click.option('--skip-invalid-nodes', '-s', default=False, is_flag=True, help='ignore nodes that use previously defined IDs')
63
63
@click.option('--skip-invalid-edges', '-e', default=False, is_flag=True, help='ignore invalid edges, print an error message and continue loading (True), or stop loading after an edge loading failure (False)')
64
64
@click.option('--quote', '-q', default=0, help='the quoting format used in the CSV file. QUOTE_MINIMAL=0,QUOTE_ALL=1,QUOTE_NONNUMERIC=2,QUOTE_NONE=3')
65
+
@click.option('--escapechar', '-x', default='\\', help='the escape char used for the CSV reader (default \\). Use "none" for None.')
65
66
# Buffer size restrictions
66
67
@click.option('--max-token-count', '-c', default=1024, help='max number of processed CSVs to send per query (default 1024)')
67
68
@click.option('--max-buffer-size', '-b', default=2048, help='max buffer size in megabytes (default 2048)')
68
69
@click.option('--max-token-size', '-t', default=500, help='max size of each token in megabytes (default 500, max 512)')
69
70
@click.option('--index', '-i', multiple=True, help='Label:Propery on which to create an index')
70
71
@click.option('--full-text-index', '-f', multiple=True, help='Label:Propery on which to create an full text search index')
0 commit comments