10 lines
136 B
Python
10 lines
136 B
Python
from authlib.common.urls import quote, unquote
|
|
|
|
|
|
def escape(s):
|
|
return quote(s, safe=b'~')
|
|
|
|
|
|
def unescape(s):
|
|
return unquote(s)
|