/ open-webui.git
/ app
/ env
/ lib
/ python3.11
/ site-packages
/ moto
/ applicationautoscaling
/ utils.py
Run
Starting...
Stop
View File
Save
from urllib.parse import urlparse def region_from_applicationautoscaling_url(url: str) -> str: domain = urlparse(url).netloc if "." in domain: return domain.split(".")[1] else: return "us-east-1"
Memory