python
文章平均质量分 78
小黑黑
o0o_-_
这个作者很懒,什么都没留下…
展开
-
【python/flask】将PIL/OpenCV图像渲染到页面
说在前面python版本:3.7.3flask版本:2.0.1场景方法from io import BytesIOdef serve_pil_image(pil_img): img_io = BytesIO() pil_img.save(img_io, 'PNG') img_io.seek(0) return send_file(img_io, mimetype='image/png')原创 2021-08-26 11:10:30 · 1411 阅读 · 0 评论 -
【python/ctypes】windows下调用动态库dll
文章目录说在前面简单函数返回简单参数类型定义关于性能说在前面环境:windows10python版本:Python 3.7.3 [MSC v.1916 64 bit (AMD64)] on win32visual studio版本:2017 community其他:在此之前,尝试过使用boost来链接,但是boost库过大,并不是很方便。linux下的使用方法类似。简单函数返回下面的例子测试了int、char*的返回,例子比较简单,仅实现了返回。c++#include <io原创 2021-07-06 15:31:07 · 749 阅读 · 1 评论 -
【错误记录/python】requests库get请求:Remote end closed connection without response
场景在使用requests进行get请求时,由于请求比较频繁,导致报错 import requests while True: # do something requests.get(url)requests.exceptions.ConnectionError: ('Connection aborted.', RemoteDisconnected('Remote end closed connection without response',))服务器重启后可以正常返回,但是运行原创 2021-06-22 18:51:14 · 31756 阅读 · 7 评论