File: banner.py

package info (click to toggle)
python-trame-server 3.6.1-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 480 kB
  • sloc: python: 4,075; javascript: 5; sh: 4; makefile: 3
file content (6 lines) | stat: -rw-r--r-- 143 bytes parent folder | download
1
2
3
4
5
6
from pathlib import Path


def print_banner(*_, **__):
    txt = Path(__file__).with_name("banner.txt").read_text()
    print(txt, flush=True)