jupyter_github_action_runner / rich_print_help.py
narugo's picture
Upload directory 'repo', on 2024-06-10 10:41:35 UTC
8aa0467 verified
raw
history blame
227 Bytes
import os
from rich.console import Console
from rich.markdown import Markdown
console = Console()
with open(os.path.expanduser('~/how_to_use_github_action_runner.md')) as f:
md = Markdown(f.read())
console.print(md)