py.lib

John Y. 2019-01-20 Parent:5236a9505448

7:15fa2da6627d Go to Latest

py.lib/awNet/webapp/tool/url.py

+ Смена сервера с gevent на waitress + Организация членораздельного информирования в случае отсутствия модуля waitress

History
1 # -*- coding: utf-8 -*-
2 # ---
3 # Инструменты для работы с URL
4 # ---
5 from base64 import urlsafe_b64encode as _b64e, urlsafe_b64decode as _b64d
6 from urllib.parse import quote as urlquote
8 def encode(buf):
9 return _b64e(buf.encode('UTF-8')).decode('UTF-8')
11 def decode(buf):
12 return _b64d(buf.encode('UTF-8')).decode('UTF-8')