Screenshot Python
検証の結果、Screenshotを撮影して保存し、保存した画像をAPIに呼び出す時間を大幅に短縮
次は有効なコードです
次は有効なコードです
from PIL import Image
from io import BytesIO
import urllib3
http = urllib3.PoolManager()
image_url = 'URL'
r = http.request('GET', image_url, preload_content=False)
image = Image.open(BytesIO(r.read()))
r.release_conn()하세요
Reference
この問題について(Screenshot Python), 我々は、より多くの情報をここで見つけました https://velog.io/@nsw1020/Screenshot-Pythonテキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol