python 常用代码
剪切板
-
保存剪切板图片到本地文件
参考链接# 保存剪切板图片到本地文件 # 安装所需包 # pip install pillow from PIL import ImageGrab from PIL import Image img = ImageGrab.grabclipboard() if isinstance(img, Image.Image): img.save('test.png', 'png')
-
打印剪切板图片为base64编码
参考链接from PIL import ImageGrab from PIL import Image import io img = ImageGrab.grabclipboard() img_bytes = io.BytesIO() if isinstance(img, Image.Image): img.save(img_bytes, 'png') print(img_bytes.getvalue())
-
隐藏python运行时的console
参考链接可以将这段代码写入python文件,然后在需要运行的python中引入即可
import ctypes whnd = ctypes.windll.kernel32.GetConsoleWindow() if whnd != 0: ctypes.windll.user32.ShowWindow(whnd, 0) ctypes.windll.kernel32.CloseHandle(whnd)
-
获取并打印当前时间
参考链接import datetime now_time = datetime.datetime.now().strftime('%Y-%m-%d %H:%M:%S') print(now_time)
网友评论