Skip to content

Add command line flag to skip existing table #75

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 37 additions & 11 deletions csvs_to_sqlite/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,11 @@
is_flag=True,
help="Import all columns as text strings by default (and, if specified, still obey --shape, --date/datetime, and --datetime-format)",
)
@click.option(
"--skip-existing-tables",
help="Skip creation of this table if the database contains a table with the same name.",
is_flag=True
)
@click.version_option()
def cli(
paths,
Expand All @@ -142,6 +147,7 @@ def cli(
no_index_fks,
no_fulltext_fks,
just_strings,
skip_existing_tables,
):
"""
PATHS: paths to individual .csv files or to directories containing .csvs
Expand All @@ -163,6 +169,16 @@ def cli(

conn = sqlite3.connect(dbname)

"""
Skip entire operation if --skip-existing-tables flag is set
and if table of same name exists in database
"""
if table_exists(conn,table) and skip_existing_tables:
click.echo(
"Table '{}' already exists.".format(table)
)
return

dataframes = []
csvs = csvs_from_paths(paths)
sql_type_overrides = None
Expand Down Expand Up @@ -206,7 +222,16 @@ def cli(
if replace_tables and table_exists(conn, df.table_name):
drop_table(conn, df.table_name)
if table_exists(conn, df.table_name):
df.to_sql(df.table_name, conn, if_exists="append", index=False)
if skip_existing_tables:
raise click.UsageError(
"Table '{}' already exists.".format(str(df.table_name))
)
break
if replace_tables and not skip_existing_tables:
click.echo("Dropping table {}.".format(df.table_name))
drop_table(conn, df.table_name)
else:
df.to_sql(df.table_name, conn, if_exists="append", index=False)
else:
to_sql_with_foreign_keys(
conn,
Expand Down Expand Up @@ -242,15 +267,16 @@ def cli(

conn.close()

if db_existed:
click.echo(
"Added {} CSV file{} to {}".format(
len(csvs), "" if len(csvs) == 1 else "s", dbname
if not skip_existing_tables:
if db_existed:
click.echo(
"Added {} CSV file{} to {}".format(
len(csvs), "" if len(csvs) == 1 else "s", dbname
)
)
)
else:
click.echo(
"Created {} from {} CSV file{}".format(
dbname, len(csvs), "" if len(csvs) == 1 else "s"
else:
click.echo(
"Created {} from {} CSV file{}".format(
dbname, len(csvs), "" if len(csvs) == 1 else "s"
)
)
)