()
| 376 | |
| 377 | |
| 378 | def show_mkpres_usage(): |
| 379 | c2 = colorama.Fore.BLUE + colorama.Back.LIGHTGREEN_EX |
| 380 | c3 = colorama.Fore.BLUE + colorama.Back.LIGHTYELLOW_EX |
| 381 | cr = colorama.Style.RESET_ALL |
| 382 | sc = " " + c2 + "** " + c3 + "mkpres" + c2 + " **" + cr |
| 383 | print(sc) |
| 384 | print("") |
| 385 | print(" Usage:") |
| 386 | print(" seleniumbase mkpres [FILE.py] [LANG]") |
| 387 | print(" OR: sbase mkpres [FILE.py] [LANG]") |
| 388 | print(" Example:") |
| 389 | print(" sbase mkpres new_presentation.py --en") |
| 390 | print(" Language Options:") |
| 391 | print(" --en / --English | --zh / --Chinese") |
| 392 | print(" --nl / --Dutch | --fr / --French") |
| 393 | print(" --it / --Italian | --ja / --Japanese") |
| 394 | print(" --ko / --Korean | --pt / --Portuguese") |
| 395 | print(" --ru / --Russian | --es / --Spanish") |
| 396 | print(" Output:") |
| 397 | print(" Creates a new presentation with 3 example slides.") |
| 398 | print(" If the file already exists, an error is raised.") |
| 399 | print(" By default, the slides are written in English,") |
| 400 | print(' and use "serif" theme with "slide" transition.') |
| 401 | print(" The slides can be used as a basic boilerplate.") |
| 402 | print("") |
| 403 | |
| 404 | |
| 405 | def show_mkchart_usage(): |
no outgoing calls
no test coverage detected
searching dependent graphs…