VLC_HTTP_LAUNCHER/utils.py
2023-05-16 22:33:36 +02:00

7 lines
232 B
Python

def get_url(site: dict):
if (site.get("user") == "" and site.get("password") == ""):
return (f"http://{site.get('url')}")
else:
return (f"http://{site.get('user')}:{site.get('password')}@{site.get('url')}")