The goal is to read continuously from stdin and enforce utf8 compliance in both Python2 and Python3.
I tried the solutions:
- Writing bytes to standard output in a format compatible with both python2 and python3
- Python 3: How to specify stdin encoding
I tried:
#!/usr/bin/env python from __future__ import print_function, unicode_literals import io import sys # Supports Python2 read from stdin and Python3 read from stdin.buffer # https:
The code works in Python3, but in Python2, TextIOWrapper does not have a read function, and it throws:
Traceback (most recent call last): File "testfin.py", line 12, in <module> with io.TextIOWrapper(user_input, encoding='utf-8') as fin: AttributeError: 'file' object has no attribute 'readable'
This is because in Python user_input , i.e. sys.stdin.buffer is a _io.BufferedReader object and its attribute is readable :
<class '_io.BufferedReader'> ['__class__', '__del__', '__delattr__', '__dict__', '__dir__', '__doc__', '__enter__', '__eq__', '__exit__', '__format__', '__ge__', '__getattribute__', '__getstate__', '__gt__', '__hash__', '__init__', '__init_subclass__', '__iter__', '__le__', '__lt__', '__ne__', '__new__', '__next__', '__reduce__', '__reduce_ex__', '__repr__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__', '_checkClosed', '_checkReadable', '_checkSeekable', '_checkWritable', '_dealloc_warn', '_finalizing', 'close', 'closed', 'detach', 'fileno', 'flush', 'isatty', 'mode', 'name', 'peek', 'raw', 'read', 'read1', 'readable', 'readinto', 'readinto1', 'readline', 'readlines', 'seek', 'seekable', 'tell', 'truncate', 'writable', 'write', 'writelines']
While in Python2 user_input is a file object, and its attributes are not readable :
<type 'file'> ['__class__', '__delattr__', '__doc__', '__enter__', '__exit__', '__format__', '__getattribute__', '__hash__', '__init__', '__iter__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__', 'close', 'closed', 'encoding', 'errors', 'fileno', 'flush', 'isatty', 'mode', 'name', 'newlines', 'next', 'read', 'readinto', 'readline', 'readlines', 'seek', 'softspace', 'tell', 'truncate', 'write', 'writelines', 'xreadlines']