added nicegui and boto3 as dependencies

This commit is contained in:
2023-09-22 09:19:45 -04:00
parent d9c6d1132c
commit fd2a930a0a
3 changed files with 910 additions and 2 deletions

View File

@@ -7,10 +7,18 @@ from rich.traceback import install
install(show_locals=True)
console = Console()
logging.basicConfig(
level="NOTSET",
level="INFO",
format="%(message)s",
datefmt="[%X]",
handlers=[RichHandler(rich_tracebacks=True)],
)
log = logging.getLogger("rich")
def main() -> None:
pass
if __name__ == "__main__":
main()