Module ro_py.utilities.url

Expand source code
root_site = "roblox.com"


def url(path="www"):
    if path:
        return f"https://{path}.{root_site}/"
    else:
        return f"https://{root_site}"

Functions

def url(path='www')
Expand source code
def url(path="www"):
    if path:
        return f"https://{path}.{root_site}/"
    else:
        return f"https://{root_site}"