12 lines
307 B
Python
12 lines
307 B
Python
import webbrowser as browser
|
|
|
|
import secrets
|
|
import requests
|
|
|
|
|
|
from rich.console import Console
|
|
|
|
class Interactive:
|
|
def __init__(self, base_url: str = "http://localhost:3000", redirect_url: str = "http://localhost:8001") -> None:
|
|
self.base_url = base_url
|
|
self.redirect_url = redirect_url |