当前位置:  开发笔记 > 编程语言 > 正文

在Python中读取大文件的懒惰方法?

如何解决《在Python中读取大文件的懒惰方法?》经验,为你挑选了5个好方法。

我有一个非常大的文件4GB,当我尝试阅读它时,我的电脑挂起.所以我想逐一阅读它并在处理完每件之后将处理过的零件存储到另一个文件中并阅读下一篇文章.

yield这些作品有什么方法吗?

我很想拥有一种懒惰的方法.



1> nosklo..:

要编写一个惰性函数,只需使用yield:

def read_in_chunks(file_object, chunk_size=1024):
    """Lazy function (generator) to read a file piece by piece.
    Default chunk size: 1k."""
    while True:
        data = file_object.read(chunk_size)
        if not data:
            break
        yield data


f = open('really_big_file.dat')
for piece in read_in_chunks(f):
    process_data(piece)

另一个选择是使用iter和辅助函数:

f = open('really_big_file.dat')
def read1k():
    return f.read(1024)

for piece in iter(read1k, ''):
    process_data(piece)

如果文件是基于行的,则文件对象已经是一个懒惰的行生成器:

for line in open('really_big_file.dat'):
    process_data(line)


缺少`rb`作为@Tal Weiss提到; 并且缺少`file.close()`语句(可以使用`with open('really_big_file.dat','rb')作为f:`来完成相同的操作;参见[这里有另一个简洁的实现](http:// stackoverflow的.com /一个/1174169分之11143944)
使用open('really_big_file.dat','rb')来与同事使用Posix挑战Windows兼容的良好实践。
@ cod3monk3y:文本和二进制文件是不同的东西.两种类型都有用,但在不同的情况下.默认(文本)模式在这里可能很有用,即`'rb'`是*不*缺失.
@ jf-sebastian:是的,OP没有指定他是在读取文本数据还是二进制数据。但是,如果他在* Windows *上使用python 2.7且*正在*读取二进制数据,那么值得注意的是,如果他忘记了''b'`,他的数据将很可能被破坏。[摘自文档](https://docs.python.org/2/tutorial/inputoutput.html#reading-and-writing-files)-Windows上的Python区分文本文件和二进制文件;[...]它将破坏JPEG或EXE文件中的二进制数据。读写此类文件时,请务必小心使用二进制模式。

2> 小智..:

如果您的计算机,操作系统和python是64位,那么您可以使用mmap模块将文件的内容映射到内存并使用索引和切片访问它.这里是文档中的一个例子:

import mmap
with open("hello.txt", "r+") as f:
    # memory-map the file, size 0 means whole file
    map = mmap.mmap(f.fileno(), 0)
    # read content via standard file methods
    print map.readline()  # prints "Hello Python!"
    # read content via slice notation
    print map[:5]  # prints "Hello"
    # update content using slice notation;
    # note that new content must have same size
    map[6:] = " world!\n"
    # ... and read again using standard file methods
    map.seek(0)
    print map.readline()  # prints "Hello  world!"
    # close the map
    map.close()

如果您的计算机,操作系统或python是32位,那么mmap-ing大文件可以保留大部分地址空间并使您的内存程序饿死.


即使对于大文件,这也适用于64位Python.即使文件是内存映射的,它也不会读取到内存,因此物理内存量可能比文件大小小得多.
@ V3ss0n:我试图在64位Python上映射32GB文件.*它工作*(我的RAM小于32GB):我可以使用序列和文件接口访问文件的开头,中间和结尾.
这应该怎么样?如果我有一个32GB的文件怎么办?如果我在拥有256MB RAM的虚拟机上怎么办?映射这么大的文件真的不是一件好事.
这个答案值得投票.这将杀死任何使用大文件的人.

3> 小智..:

file.readlines()接受一个可选的size参数,该参数近似于返回的行中读取的行数.

bigfile = open('bigfilename','r')
tmp_lines = bigfile.readlines(BUF_SIZE)
while tmp_lines:
    process([line for line in tmp_lines])
    tmp_lines = bigfile.readlines(BUF_SIZE)


我建议使用`.read()`而不是`.readlines()`.如果文件是二进制文件,则不会有换行符.

4> user48678..:

已经有很多很好的答案,但我最近遇到了类似的问题,我需要的解决方案没有列在这里,所以我想我可以补充这个线程.

80%的时间,我需要逐行读取文件.然后,如本回答所示,您希望将文件对象本身用作延迟生成器:

with open('big.csv') as f:
    for line in f:
        process(line)

不过,我最近遇到了一个非常非常大的(几乎)单行CSV,其中行分隔符实际上没有'\n',但是'|'.

逐行阅读不是一个选项,但我仍然需要逐行处理它.

转换'|''\n'处理之前也是不可能的,因为此csv的某些字段包含'\n'(自由文本用户输入).

使用csv库也被排除了,因为至少在lib的早期版本中,它被硬编码以逐行读取输入.

我提出了以下代码段:

def rows(f, chunksize=1024, sep='|'):
    """
    Read a file where the row separator is '|' lazily.

    Usage:

    >>> with open('big.csv') as f:
    >>>     for r in rows(f):
    >>>         process(row)
    """
    curr_row = ''
    while True:
        chunk = f.read(chunksize)
        if chunk == '': # End of file
            yield curr_row
            break
        while True:
            i = chunk.find(sep)
            if i == -1:
                break
            yield curr_row + chunk[:i]
            curr_row = ''
            chunk = chunk[i+1:]
        curr_row += chunk

我已经在大文件和不同的块大小上成功测试了它(我甚至尝试了1个字节的块,只是为了确保算法不依赖于大小).



5> myroslav..:
f = ... # file-like object, i.e. supporting read(size) function and 
        # returning empty string '' when there is nothing to read

def chunked(file, chunk_size):
    return iter(lambda: file.read(chunk_size), '')

for data in chunked(f, 65536):
    # process the data

更新:该方法最好在/sf/ask/17360801/中解释

推荐阅读
135369一生真爱_890
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有