Quote

    파이썬 URL 인코딩해보기

    from urllib.parse import urlsplit, quote 필요한 라이브러리를 받아옵니다. https://cokes.tistory.com/manage/newpost/코크는 개발자 이렇게 한글이나 공백이 있는 경우 인코딩을 해주어야합니다. def quote(string, safe='/', encoding=None, errors=None): if isinstance(string, str): if not string: return string if encoding is None: encoding = 'utf-8' if errors is None: errors = 'strict' string = string.encode(encoding, errors) else: if encoding is not ..