file_utils.py 文件源码

python
阅读 25 收藏 0 点赞 0 评论 0

项目:pheweb 作者: statgen 项目源码 文件源码
def read_gzip(filepath):
    # handles buffering # TODO: profile whether this is fast.
    with gzip.open(filepath, 'rb') as f: # leave in binary mode (default), let TextIOWrapper decode
        with io.BufferedReader(f, buffer_size=2**18) as g: # 256KB buffer
            with io.TextIOWrapper(g) as h: # bytes -> unicode
                yield h
评论列表
文章目录


问题


面经


文章

微信
公众号

扫码关注公众号