Skip to content

cli

Module with Data-Lunch's command line.

The command line is built with click.

Call data-lunch --help from the terminal inside an environment where the dlunch package is installed.

Modules:

Name Description
auth

Module with classes and functions used for authentication and password handling.

Functions:

Name Description
add_privileged_user

Add privileged users (with or without admin privileges).

add_user_credential

Add users credentials to credentials table (used by basic authentication).

clean_tables

Clean 'users', 'menu', 'orders' and 'flags' tables.

cli

Command line interface for managing Data-Lunch database and users.

credentials

Manage users credentials for basic authentication.

db

Manage the database.

delete_database

Delete the database.

delete_table

Drop a single table from database.

export_table_to_csv

Export a single table to a csv file.

init_database

Initialize the database.

list_users_name

List users.

load_table

Load a single table from a csv file.

main

Main command line entrypoint.

remove_privileged_user

Remove user from both privileged users and basic login credentials table.

remove_user_credential

Remove user from both privileged users and basic login credentials table.

table

Manage tables in database.

users

Manage privileged users and admin privileges.

Attributes:

Name Type Description
__version__ str

Data-Lunch command line version.

__version__ module-attribute

__version__: str = version

Data-Lunch command line version.

add_privileged_user

add_privileged_user(obj, user, is_admin)

Add privileged users (with or without admin privileges).

Source code in dlunch/cli.py
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
@users.command("add")
@click.argument("user")
@click.option("--admin", "is_admin", is_flag=True, help="add admin privileges")
@click.pass_obj
def add_privileged_user(obj, user, is_admin):
    """Add privileged users (with or without admin privileges)."""

    # Add privileged user to 'privileged_users' table
    auth.add_privileged_user(
        user=user,
        is_admin=is_admin,
        config=obj["config"],
    )

    click.secho(f"User '{user}' added (admin: {is_admin})", fg="green")

add_user_credential

add_user_credential(
    obj, user, password, is_admin, is_guest
)

Add users credentials to credentials table (used by basic authentication).

Source code in dlunch/cli.py
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
@credentials.command("add")
@click.argument("user")
@click.argument("password")
@click.option("--admin", "is_admin", is_flag=True, help="add admin privileges")
@click.option(
    "--guest",
    "is_guest",
    is_flag=True,
    help="add user as guest (not added to privileged users)",
)
@click.pass_obj
def add_user_credential(obj, user, password, is_admin, is_guest):
    """Add users credentials to credentials table (used by basic authentication)."""

    # Add a privileged users only if guest option is not active
    if not is_guest:
        auth.add_privileged_user(
            user=user,
            is_admin=is_admin,
            config=obj["config"],
        )
    # Add hashed password to credentials table
    auth.add_user_hashed_password(user, password, config=obj["config"])

    click.secho(f"User '{user}' added", fg="green")

clean_tables

clean_tables(obj)

Clean 'users', 'menu', 'orders' and 'flags' tables.

Source code in dlunch/cli.py
208
209
210
211
212
213
214
215
216
217
218
219
220
221
@db.command("clean")
@click.confirmation_option()
@click.pass_obj
def clean_tables(obj):
    """Clean 'users', 'menu', 'orders' and 'flags' tables."""

    # Drop table
    try:
        clean_tables_func(obj["config"])
        click.secho("done", fg="green")
    except Exception as e:
        # Generic error
        click.secho("Cannot clean database", fg="red")
        click.secho(f"\n ===== EXCEPTION =====\n\n{e}", fg="red")

cli

cli(ctx, hydra_overrides: tuple | None)

Command line interface for managing Data-Lunch database and users.

Source code in dlunch/cli.py
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
@click.group()
@click.version_option(__version__)
@click.option(
    "-o",
    "--hydra-overrides",
    "hydra_overrides",
    default=None,
    multiple=True,
    help="pass hydra override, use multiple time to add more than one override",
)
@click.pass_context
def cli(ctx, hydra_overrides: tuple | None):
    """Command line interface for managing Data-Lunch database and users."""
    # global initialization
    initialize(
        config_path="conf", job_name="data_lunch_cli", version_base="1.3"
    )
    config = compose(config_name="config", overrides=hydra_overrides)
    ctx.obj = {"config": config}

    # Auth encryption
    auth.set_app_auth_and_encryption(config)

credentials

credentials(obj)

Manage users credentials for basic authentication.

Source code in dlunch/cli.py
111
112
113
114
@cli.group()
@click.pass_obj
def credentials(obj):
    """Manage users credentials for basic authentication."""

db

db(obj)

Manage the database.

Source code in dlunch/cli.py
165
166
167
168
@cli.group()
@click.pass_obj
def db(obj):
    """Manage the database."""

delete_database

delete_database(obj)

Delete the database.

Source code in dlunch/cli.py
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
@db.command("delete")
@click.confirmation_option()
@click.pass_obj
def delete_database(obj):
    """Delete the database."""

    # Create database
    try:
        engine = create_engine(obj["config"])
        Data.metadata.drop_all(engine)
        click.secho("Database deleted", fg="green")
    except Exception as e:
        # Generic error
        click.secho("Cannot delete database", fg="red")
        click.secho(f"\n ===== EXCEPTION =====\n\n{e}", fg="red")

delete_table

delete_table(obj, name)

Drop a single table from database.

Source code in dlunch/cli.py
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
@table.command("drop")
@click.confirmation_option()
@click.argument("name")
@click.pass_obj
def delete_table(obj, name):
    """Drop a single table from database."""

    # Drop table
    try:
        engine = create_engine(obj["config"])
        metadata_obj.tables[name].drop(engine)
        click.secho(f"Table '{name}' deleted", fg="green")
    except Exception as e:
        # Generic error
        click.secho("Cannot drop table", fg="red")
        click.secho(f"\n ===== EXCEPTION =====\n\n{e}", fg="red")

export_table_to_csv

export_table_to_csv(obj, name, csv_file_path, index)

Export a single table to a csv file.

Source code in dlunch/cli.py
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
@table.command("export")
@click.argument("name")
@click.argument("csv_file_path")
@click.option(
    "--index/--no-index",
    "index",
    show_default=True,
    default=False,
    help="select if index is exported to csv",
)
@click.pass_obj
def export_table_to_csv(obj, name, csv_file_path, index):
    """Export a single table to a csv file."""

    click.secho(f"Export table '{name}' to CSV {csv_file_path}", fg="yellow")

    # Create dataframe
    try:
        engine = create_engine(obj["config"])
        df = pd.read_sql_table(
            name, engine, schema=obj["config"].db.get("schema", SCHEMA)
        )
    except Exception as e:
        # Generic error
        click.secho("Cannot read table", fg="red")
        click.secho(f"\n ===== EXCEPTION =====\n\n{e}", fg="red")

    # Show head
    click.echo("First three rows of the table")
    click.echo(f"{df.head(3)}\n")

    # Export table
    try:
        df.to_csv(csv_file_path, index=index)
    except Exception as e:
        # Generic error
        click.secho("Cannot write CSV", fg="red")
        click.secho(f"\n ===== EXCEPTION =====\n\n{e}", fg="red")

    click.secho("Done", fg="green")

init_database

init_database(obj, add_basic_auth_users)

Initialize the database.

Source code in dlunch/cli.py
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
@db.command("init")
@click.option(
    "--add-basic-auth-users",
    "add_basic_auth_users",
    is_flag=True,
    help="automatically create basic auth standard users",
)
@click.pass_obj
def init_database(obj, add_basic_auth_users):
    """Initialize the database."""

    # Create database
    create_database(obj["config"], add_basic_auth_users=add_basic_auth_users)

    click.secho(
        f"Database initialized (basic auth users: {add_basic_auth_users})",
        fg="green",
    )

list_users_name

list_users_name(obj)

List users.

Source code in dlunch/cli.py
61
62
63
64
65
66
67
68
69
70
@users.command("list")
@click.pass_obj
def list_users_name(obj):
    """List users."""

    # Clear action
    usernames = auth.list_users(config=obj["config"])
    click.secho("USERS:")
    click.secho("\n".join(usernames), fg="yellow")
    click.secho("\nDone", fg="green")

load_table

load_table(
    obj,
    name,
    csv_file_path,
    index,
    index_label,
    index_col,
    if_exists,
)

Load a single table from a csv file.

Source code in dlunch/cli.py
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
@table.command("load")
@click.confirmation_option()
@click.argument("name")
@click.argument("csv_file_path")
@click.option(
    "--index/--no-index",
    "index",
    show_default=True,
    default=True,
    help="select if index is loaded to table",
)
@click.option(
    "-l",
    "--index-label",
    "index_label",
    type=str,
    default=None,
    help="select index label",
)
@click.option(
    "-c",
    "--index-col",
    "index_col",
    type=str,
    default=None,
    help="select the column used as index",
)
@click.option(
    "-e",
    "--if-exists",
    "if_exists",
    type=click.Choice(["fail", "replace", "append"], case_sensitive=False),
    show_default=True,
    default="append",
    help="logict used if the table already exists",
)
@click.pass_obj
def load_table(
    obj, name, csv_file_path, index, index_label, index_col, if_exists
):
    """Load a single table from a csv file."""

    click.secho(f"Load CSV {csv_file_path} to table '{name}'", fg="yellow")

    # Create dataframe
    df = pd.read_csv(csv_file_path, index_col=index_col)

    # Show head
    click.echo("First three rows of the CSV table")
    click.echo(f"{df.head(3)}\n")

    # Load table
    try:
        engine = create_engine(obj["config"])
        df.to_sql(
            name,
            engine,
            schema=obj["config"].db.get("schema", SCHEMA),
            index=index,
            index_label=index_label,
            if_exists=if_exists,
        )
        click.secho("Done", fg="green")
    except Exception as e:
        # Generic error
        click.secho("Cannot load table", fg="red")
        click.secho(f"\n ===== EXCEPTION =====\n\n{e}", fg="red")

main

main() -> None

Main command line entrypoint.

Source code in dlunch/cli.py
359
360
361
def main() -> None:
    """Main command line entrypoint."""
    cli(auto_envvar_prefix="DATA_LUNCH")

remove_privileged_user

remove_privileged_user(obj, user)

Remove user from both privileged users and basic login credentials table.

Source code in dlunch/cli.py
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
@users.command("remove")
@click.confirmation_option()
@click.argument("user")
@click.pass_obj
def remove_privileged_user(obj, user):
    """Remove user from both privileged users and basic login credentials table."""

    # Clear action
    deleted_data = auth.remove_user(user, config=obj["config"])

    if (deleted_data["privileged_users_deleted"] > 0) or (
        deleted_data["credentials_deleted"] > 0
    ):
        click.secho(
            f"User '{user}' removed (auth: {deleted_data['privileged_users_deleted']}, cred: {deleted_data['credentials_deleted']})",
            fg="green",
        )
    else:
        click.secho(f"User '{user}' does not exist", fg="yellow")

remove_user_credential

remove_user_credential(obj, user)

Remove user from both privileged users and basic login credentials table.

Source code in dlunch/cli.py
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
@credentials.command("remove")
@click.confirmation_option()
@click.argument("user")
@click.pass_obj
def remove_user_credential(obj, user):
    """Remove user from both privileged users and basic login credentials table."""

    # Clear action
    deleted_data = auth.remove_user(user, config=obj["config"])

    if (deleted_data["privileged_users_deleted"] > 0) or (
        deleted_data["credentials_deleted"] > 0
    ):
        click.secho(
            f"User '{user}' removed (auth: {deleted_data['privileged_users_deleted']}, cred: {deleted_data['credentials_deleted']})",
            fg="green",
        )
    else:
        click.secho(f"User '{user}' does not exist", fg="yellow")

table

table(obj)

Manage tables in database.

Source code in dlunch/cli.py
224
225
226
227
@db.group()
@click.pass_obj
def table(obj):
    """Manage tables in database."""

users

users(obj)

Manage privileged users and admin privileges.

Source code in dlunch/cli.py
55
56
57
58
@cli.group()
@click.pass_obj
def users(obj):
    """Manage privileged users and admin privileges."""