diff --git a/paddlehub/commands/hub.py b/paddlehub/commands/hub.py index c5f901cc83421fb8bb3e6bb0f32138516a77146a..877b3faffa554cc025081406cadb3c8fd45f27f1 100644 --- a/paddlehub/commands/hub.py +++ b/paddlehub/commands/hub.py @@ -58,7 +58,13 @@ command = HubCommand.instance() def main(): - command.execute(sys.argv[1:]) + argv = [] + for item in sys.argv: + if six.PY2: + argv.append(item.decode(sys.stdin.encoding).decode("utf8")) + else: + argv.append(item) + command.execute(argv[1:]) if __name__ == "__main__": diff --git a/paddlehub/io/parser.py b/paddlehub/io/parser.py index 4a60105aefd90b4c709bef3b25720543c3997984..a3c7b4aaf50c32360d159339f62a40c2304adc5b 100644 --- a/paddlehub/io/parser.py +++ b/paddlehub/io/parser.py @@ -17,6 +17,8 @@ from __future__ import absolute_import from __future__ import division from __future__ import print_function +import codecs +import sys import yaml @@ -28,7 +30,7 @@ class CSVFileParser(object): pass def parse(self, csv_file): - with open(csv_file, "r") as file: + with codecs.open(txt_file, "r", sys.stdin.encoding) as file: content = file.read() content = content.split('\n') self.title = content[0].split(',') @@ -55,7 +57,7 @@ class YAMLFileParser(object): pass def parse(self, yaml_file): - with open(yaml_file, "r") as file: + with codecs.open(txt_file, "r", sys.stdin.encoding) as file: content = file.read() return yaml.load(content, Loader=yaml.BaseLoader) @@ -67,10 +69,14 @@ class TextFileParser(object): def _check(self): pass - def parse(self, yaml_file): - with open(yaml_file, "r") as file: - contents = file.read().split("\n") - return [content for content in contents if content] + def parse(self, txt_file): + with codecs.open(txt_file, "r", sys.stdin.encoding) as file: + contents = [] + for line in file: + line = line.strip() + if line: + contents.append(line) + return contents csv_parser = CSVFileParser()