Shortcuts

Source code for mmocr.utils.fileio

# Copyright (c) OpenMMLab. All rights reserved.
import os

import mmcv


[docs]def list_to_file(filename, lines): """Write a list of strings to a text file. Args: filename (str): The output filename. It will be created/overwritten. lines (list(str)): Data to be written. """ mmcv.mkdir_or_exist(os.path.dirname(filename)) with open(filename, 'w', encoding='utf-8') as fw: for line in lines: fw.write(f'{line}\n')
[docs]def list_from_file(filename, encoding='utf-8'): """Load a text file and parse the content as a list of strings. The trailing "\\r" and "\\n" of each line will be removed. Note: This will be replaced by mmcv's version after it supports encoding. Args: filename (str): Filename. encoding (str): Encoding used to open the file. Default utf-8. Returns: list[str]: A list of strings. """ item_list = [] with open(filename, 'r', encoding=encoding) as f: for line in f: item_list.append(line.rstrip('\n\r')) return item_list
Read the Docs v: v0.4.0
Versions
latest
stable
v0.4.0
v0.3.0
v0.2.1
v0.2.0
v0.1.0
Downloads
On Read the Docs
Project Home
Builds

Free document hosting provided by Read the Docs.