rich/examples/exception.py

36 lines
857 B
Python
Raw Normal View History

2020-10-20 04:56:57 +00:00
"""
Basic example to show how to print an traceback of an exception
"""
2020-10-23 16:20:05 +00:00
from typing import List, Tuple
2020-10-20 04:56:57 +00:00
from rich.console import Console
console = Console()
2020-10-23 16:20:05 +00:00
def divide_by(number: float, divisor: float) -> float:
"""Divide any number by zero."""
# Will throw a ZeroDivisionError if divisor is 0
result = number / divisor
2020-10-20 04:56:57 +00:00
return result
2020-10-23 16:20:05 +00:00
def divide_all(divides: List[Tuple[float, float]]) -> None:
"""Do something impossible every day."""
2020-10-20 04:56:57 +00:00
try:
2020-10-23 16:20:05 +00:00
for number, divisor in divides:
result = divide_by(number, divisor)
console.print(f"{number} divided by {divisor} is {result}")
except Exception:
2020-10-20 04:56:57 +00:00
console.print_exception(extra_lines=5, show_locals=True)
2020-10-23 16:20:05 +00:00
DIVIDES = [
(1000, 200),
(10000, 500),
(0, 1000000),
(3.1427, 2),
(2 ** 32, 2 ** 16),
(1, 0),
]
divide_all(DIVIDES)