def seperate_link(self, url, url_type) -> dict:
host, uri = re.split("\?", url)
image.png
fix:
def seperate_link(self, url, url_type) -> dict:
host, uri = re.split(r"\?", url) # noted r before ""
def seperate_link(self, url, url_type) -> dict:
host, uri = re.split("\?", url)
image.png
fix:
def seperate_link(self, url, url_type) -> dict:
host, uri = re.split(r"\?", url) # noted r before ""