10 lines
199 B
Python
10 lines
199 B
Python
#!/usr/bin/env python
|
|
# coding: utf-8
|
|
"""
|
|
compat.py
|
|
~~~~~~~~~~
|
|
"""
|
|
from urllib.parse import quote_plus
|
|
from urllib.request import urlopen
|
|
from base64 import decodebytes, encodebytes
|