Python

python GUI 实践

GUI 实现艺术签名程序 from tkinter import * from tkinter import messagebox import requests import re from PIL import Image, ImageTk # 艺术签名 def sign(): # 获取用户输入 ...

Python itchat 详解

获取微信好友头像 import itchat ''' 获取微信好友头像 ''' # 登录微信 itchat.auto_login(hotReload=True) # 获取微信好友列表 for friend in itchat.get_friends(): # print(friend) ...