This file contains 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
#!/usr/bin/env python3 | |
import requests | |
import json | |
from typing import List, Dict, Union, Optional | |
import subprocess | |
import argparse | |
from rich.console import Console | |
from rich.table import Table | |
from rich.panel import Panel |