摘要:
Python玩转微信 大家每天都在用微信,有没有想过用python来控制我们的微信,不多说,直接上干货! 这个是在 itchat上做的封装 http://itchat.readthedocs.io/zh/latest/ 安装模块 pip3 insta... 阅读全文
摘要:
Python生成内涵图片 先看案例 原图 生成后(放大看看,嘿嘿嘿) 上代码: from PIL import Image, ImageDraw, ImageFontfont_size = 7text = "我喜欢你!"img_path = "... 阅读全文
摘要:
Python3.x打包成exe程序并添加图标 1.安装pyinstaller pip install pyinstaller 2.打包exe程序 打开DOS窗口,输入命令:pyinstaller -F -w *.py(星号是.py的全部路径) pyinstal... 阅读全文