一.python打包exe
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple pyinstaller
pyinstaller -F test.py
二.安装卸载
pip install <包名>
//卸载
pip uninstall <包名>
//查看
pip show <包名>
pip freeze
三.json数据处理
post_data= '{"name": "Alice", "age": 25, "city": "New York"}'
//转字符串
json.dumps(post_data)
//转json
json.loads(post_data)