python
小唐0128
这个作者很懒,什么都没留下…
展开
-
Python线程池模块,与进程池模块
Python线程池模块,与进程池模块一、线程池ThreadPoolExecutor# 导入模块from concurrent.futures import ThreadPoolExecutor# 常用方法map方法和submit+as_completed# 注意,一定要使用with,而不要使用for,如果你一定要用for,那么一定要手动进行executor.shutdown,而你使用了w...原创 2019-12-17 16:44:32 · 299 阅读 · 0 评论 -
python中PDF转png图片
python中PDF转png图片:调用第三方文件 :mutool官方文档:https://mupdf.com/docs/manual-mutool-draw.htmldef convert_pdf_to_png(request_id, pdf_data,image_saving_path): # pdf_data pdf文件流。image_saving_path 需要保存的路径...原创 2019-12-17 16:41:03 · 422 阅读 · 0 评论 -
python命令行参数解析包argparse
argparse 是python自带的命令行参数解析包,可以用来方便地读取命令行参数,当你的代码需要频繁地修改参数的时候,使用这个工具可以将参数和代码分离开来,让你的代码更简洁,适用范围更广。链接:http://vra.github.io/2017/12/02/argparse-usage/...转载 2019-12-17 16:31:56 · 159 阅读 · 0 评论 -
python中PIL常用命令
PIL:Python图像处理类库常用命令1、open()打开图片from PIL import Imagepil_im = Image.open('empire.jpg')"""open打开图片,pil_im 返回是一个PIL图像对象"""2、convert()图像的颜色转换,L将图像装换为灰度图像pil_im = Image.open('empire.jpg').convert('...原创 2019-04-08 21:31:54 · 942 阅读 · 0 评论 -
python中commands模块
commands模块是python的内置模块,他共有三个函数,使用help(commands)可以查看到。注:在3.x版本总,getstatus()方法被移除,getoutput()和getstatusoutput()被放到了subprocess模块中。FUNCTIONS1、 getoutput(cmd)Return output (stdout or stderr) of executi...转载 2019-05-06 11:39:45 · 7747 阅读 · 0 评论