Created
March 22, 2023 23:03
-
-
Save billmetangmo/7130f6a929067057388c58a6b02076d6 to your computer and use it in GitHub Desktop.
use rich to debug
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from rich.traceback import install | |
| install(show_locals=True) | |
| from rich.console import Console | |
| console = Console() | |
| cache = Cache('prompt_cache') | |
| try: | |
| CMD | |
| except Exception as e: | |
| console.print_exception(show_locals=True) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment