摘要:
Go 1.17中提出,主要提供子孙goroutine的通知关闭的统一解决方法 Context接口 type Context interface { Deadline() // 截止时间 Done() // 手动Cancel时接收到值 Err() // 错误 Value() // 存储值 } Cont 阅读全文
摘要:
import base64 import random import re import time from playwright.sync_api import sync_playwright import cv2 def show(name): '''展示圈出来的位置''' cv2.imshow 阅读全文