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.
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. |
generate_secrets |
Generate secrets for DATA_LUNCH_COOKIE_SECRET and DATA_LUNCH_OAUTH_ENC_KEY env variables. |
init_database |
Initialize the database. |
list_users |
List users and privileges. |
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 their group. |
utils |
Utility commands. |
Attributes:
Name | Type | Description |
---|---|---|
__version__ |
str
|
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
113 114 115 116 117 118 119 120 121 122 123 124 |
|
add_user_credential
¶
add_user_credential(
obj, user, password, is_admin, is_guest
)
Add users credentials to credentials table (used by basic authentication) and to privileged users (if not guest).
Source code in dlunch/cli.py
154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 |
|
clean_tables
¶
clean_tables(obj)
Clean 'users', 'menu', 'orders' and 'flags' tables.
Source code in dlunch/cli.py
247 248 249 250 251 252 253 254 255 256 257 258 259 260 |
|
cli
¶
cli(ctx, hydra_overrides: tuple | None)
Command line interface for managing Data-Lunch database and users.
Source code in dlunch/cli.py
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 |
|
credentials
¶
credentials(obj)
Manage users credentials for basic authentication.
Source code in dlunch/cli.py
148 149 150 151 |
|
db
¶
db(obj)
Manage the database.
Source code in dlunch/cli.py
200 201 202 203 |
|
delete_database
¶
delete_database(obj)
Delete the database.
Source code in dlunch/cli.py
229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 |
|
delete_table
¶
delete_table(obj, name)
Drop a single table from database.
Source code in dlunch/cli.py
269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 |
|
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
288 289 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 |
|
generate_secrets
¶
generate_secrets(obj)
Generate secrets for DATA_LUNCH_COOKIE_SECRET and DATA_LUNCH_OAUTH_ENC_KEY env variables.
Source code in dlunch/cli.py
413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 |
|
init_database
¶
init_database(obj, add_basic_auth_users)
Initialize the database.
Source code in dlunch/cli.py
206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 |
|
list_users
¶
list_users(obj, list_only_privileged_users)
List users and privileges.
Source code in dlunch/cli.py
73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 |
|
load_table
¶
load_table(obj, name, csv_file_path, index, index_col)
Load a single table from a csv file.
Source code in dlunch/cli.py
345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 |
|
main
¶
main() -> None
Main command line entrypoint.
Source code in dlunch/cli.py
446 447 448 |
|
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
127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 |
|
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
179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 |
|
table
¶
table(obj)
Manage tables in database.
Source code in dlunch/cli.py
263 264 265 266 |
|
users
¶
users(obj)
Manage privileged users and their group.
Source code in dlunch/cli.py
67 68 69 70 |
|
utils
¶
utils(obj)
Utility commands.
Source code in dlunch/cli.py
407 408 409 410 |
|