-
base64与图片互转
摘要:1.图片转base64,url指图片路径def ToBase64(url): with open(url,'rb') as f: base64_data=base64.b64encode(f.read()) s=base64_data.decode() #print(url+"已转base64")
阅读全文
-
python的requests包安装
摘要:最后安装requests,因为它对前四个有依赖pip install certifi-2020.12.5-py2.py3-none-any.whl pip install chardet-4.0.0-py2.py3-none-any.whl pip install idna-2.5-py2.py3-
阅读全文
-
python使用mysql之坑
摘要:1 pymysql连接数据库报错TypeError: __init__() takes 1 positional argument but 5 positional arguments 2 3 之前 4 db = pymysql.connect("localhost", "root", "19999
阅读全文
|