()
| 403 | |
| 404 | |
| 405 | def show_mkchart_usage(): |
| 406 | c2 = colorama.Fore.BLUE + colorama.Back.LIGHTGREEN_EX |
| 407 | c3 = colorama.Fore.BLUE + colorama.Back.LIGHTYELLOW_EX |
| 408 | cr = colorama.Style.RESET_ALL |
| 409 | sc = " " + c2 + "** " + c3 + "mkchart" + c2 + " **" + cr |
| 410 | print(sc) |
| 411 | print("") |
| 412 | print(" Usage:") |
| 413 | print(" seleniumbase mkchart [FILE.py] [LANG]") |
| 414 | print(" OR: sbase mkchart [FILE.py] [LANG]") |
| 415 | print(" Example:") |
| 416 | print(" sbase mkchart new_chart.py --en") |
| 417 | print(" Language Options:") |
| 418 | print(" --en / --English | --zh / --Chinese") |
| 419 | print(" --nl / --Dutch | --fr / --French") |
| 420 | print(" --it / --Italian | --ja / --Japanese") |
| 421 | print(" --ko / --Korean | --pt / --Portuguese") |
| 422 | print(" --ru / --Russian | --es / --Spanish") |
| 423 | print(" Output:") |
| 424 | print(" Creates a new SeleniumBase chart presentation.") |
| 425 | print(" If the file already exists, an error is raised.") |
| 426 | print(" By default, the slides are written in English,") |
| 427 | print(' and use a "sky" theme with "slide" transition.') |
| 428 | print(" The chart can be used as a basic boilerplate.") |
| 429 | print("") |
| 430 | |
| 431 | |
| 432 | def show_convert_usage(): |
no outgoing calls
no test coverage detected
searching dependent graphs…