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. |
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 |
|
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 |
|
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 |
|
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 |
|
credentials
credentials(obj)
Manage users credentials for basic authentication.
Source code in dlunch/cli.py
111 112 113 114 |
|
db
db(obj)
Manage the database.
Source code in dlunch/cli.py
165 166 167 168 |
|
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 |
|
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 |
|
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 |
|
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 |
|
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 |
|
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 |
|
main
main() -> None
Main command line entrypoint.
Source code in dlunch/cli.py
359 360 361 |
|
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 |
|
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 |
|
table
table(obj)
Manage tables in database.
Source code in dlunch/cli.py
224 225 226 227 |
|
users
users(obj)
Manage privileged users and admin privileges.
Source code in dlunch/cli.py
55 56 57 58 |
|