(text, subtext=None)
| 20 | script_path = os.path.dirname(__file__) |
| 21 | |
| 22 | def header(text, subtext=None): |
| 23 | print() |
| 24 | print("* "*30) |
| 25 | print(text.center(60)) |
| 26 | if subtext: |
| 27 | print(subtext.center(60)) |
| 28 | print("* "*30) |
| 29 | print() |
| 30 | |
| 31 | ### SQL Convert |
| 32 | import jsonToSql |