python - 为什么运行这个 python 脚本会占用我所有的磁盘空间?

标签 python python-3.x memory memory-management

我正在运行一个 python 脚本,您可以在下面看到它以供引用。该脚本使用 pytesseract 将从 pdf 获取的图像中的文本转换为包含文本作为字符串以及页码等的 json 文件。但是每次我运行该脚本时,一段时间后,我的磁盘存储空间就耗尽了,它是我重新启动计算机后才释放。举个例子,我的电脑目前还剩 20GB,但运行脚本一段时间后,磁盘已满,我不知道为什么会发生这种情况。如果局部变量正在使用它,我尝试使用“del”来释放空间,并且还尝试使用 gc.collect() 来强制释放该空间,但没有任何效果。我做错了什么以及如何改进?

import io
from PIL import Image
import pytesseract
from wand.image import Image as wi
import gc
import json
import uuid
import gc

def generate_id(code):
    increment_no = str(uuid.uuid4().int)[5:12]
    _id = code + increment_no
    return _id

def pdf_to_json(pdf_path):
    """This function takes in the path of pdf to generate a json object with the following attributes"""
    """Company (Name of company), id (Unique Id), Page_*No. (Example Page_1, Page_2 etc.) with each page containing text in that speicifc pdf page"""
    data = {}
    pdf=wi(filename=pdf_path,resolution=300)
    data['company'] = str(pdf_path.split('/')[-1:][0])
    countrycode = str(pdf_path.split('/')[-2:-1][0].split('_')[0:1][0])
    data['id'] = generate_id(countrycode)
    pdfImg=pdf.convert('jpeg')
    del pdf
    gc.collect()
    imgBlobs=[]
    for img in pdfImg.sequence:
        page=wi(image=img)
        gc.collect()
        imgBlobs.append(page.make_blob('jpeg'))
        del page
        gc.collect()
    del pdfImg
    gc.collect()
    i=1
    Pages = []
    for imgBlob in imgBlobs:
        im=Image.open(io.BytesIO(imgBlob))
        text=pytesseract.image_to_string(im,lang='eng')
        Pages.append(text)
        del text
        gc.collect()
        im.close()
        del im
        gc.collect()
    del imgBlobs
    gc.collect()
    data['Pages'] = Pages
    with open('/Users/rishabh/Desktop/CyberBoxer/hawaii_pdf/'+data['id']+'.json', 'w', encoding='utf-8') as f:
        json.dump(data, f, ensure_ascii=False, indent=4)
    del data
    gc.collect()
    del Pages
    gc.collect()

from os import listdir
onlyfiles = [f for f in listdir('/Users/rishabh/Desktop/CyberBoxer/iowa_pdf/')]

j=1
for i in onlyfiles:
    if '.pdf' in i:
        start = time.time()
        pdf_path = '/Users/rishabh/Desktop/CyberBoxer/iowa_pdf/'+i
        pdf_to_json(pdf_path)
        print(j)
        j+=1
        end = time.time()
        print(end-start)
        gc.collect()```

最佳答案

我想出了为什么会发生这种情况,这是因为 python 中的 wand Image 模块,我必须销毁通过 'del' 或 gc.collect() 获得的对象,因为 wand image 有它自己的销毁方法,所以不会发生这种情况.

这是相同的更新函数:

    """This function takes in the path of pdf to generate a json object with the following attributes"""
    """Company (Name of company), id (Unique Id), Page_*No. (Example Page_1, Page_2 etc.) with each page containing text in that speicifc pdf page"""
    data = {}
    #pdf=wi(filename=pdf_path,resolution=300)
    data['company'] = str(pdf_path.split('/')[-1:][0])
    countrycode = str(pdf_path.split('/')[-2:-1][0].split('_')[0:1][0])
    data['id'] = generate_id(countrycode)
    #pdfImg=pdf.convert('jpeg')
    #del pdf
    #gc.collect()
    #imgBlobs=[]
    #for img in pdfImg.sequence:
    #    page=wi(image=img)
    #    gc.collect()
    #    imgBlobs.append(page.make_blob('jpeg'))
    #    del page
    #    gc.collect()    
    req_image = []
    with WI(filename=pdf_path, resolution=150) as image_jpeg:
        image_jpeg.compression_quality = 99
        image_jpeg = image_jpeg.convert('jpeg')

        for img in image_jpeg.sequence:
            with WI(image=img) as img_page:
                req_image.append(img_page.make_blob('jpeg'))
    image_jpeg.destroy()
    i=1
    Pages = []
    for imgBlob in req_image:
        im=Image.open(io.BytesIO(imgBlob))
        text=pytesseract.image_to_string(im,lang='eng')
        Pages.append(text)
        im.close()
        del im
    data['Pages'] = Pages
    with open('/Users/rishabh/Desktop/CyberBoxer/iowa_pdf/'+data['id']+'.json', 'w', encoding='utf-8') as f:
        json.dump(data, f, ensure_ascii=False, indent=4)```

关于python - 为什么运行这个 python 脚本会占用我所有的磁盘空间?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59857837/

相关文章:

Python datetime.now() 作为默认函数参数在不同时间返回相同的值

python - 是否可以让装饰器在 asyncio 执行器中运行阻塞函数?

python - 尝试将 R 对象文件加载到 python numpy 数组中时出现内存错误

C++:在重载 ostream 时引用 2D 数组元素时崩溃 >>

python - 使用按钮更改变量的值 (Tkinter)

python - 第二个 matplotlib x 轴与第一个 : wrong tick position 相关

python - 采用跳跃洪泛算法的 Voronoi 图 : performance issue

python - 在列表中动态生成列表元素

python - 使用 argparse 从命令行获取自定义结构列表

memory - 为什么哈希表比其他数据结构占用更多内存?