Open
Description
This line gives
ModuleNotFoundError: No module named 'StringIO'
in python3
From https://docs.python.org/3.0/whatsnew/3.0.html
The StringIO and cStringIO modules are gone. Instead, import the io module and use io.StringIO or io.BytesIO for text and data respectively.
possible solution:
try:
import StringIO
except ImportError:
from io import StringIO
Metadata
Metadata
Assignees
Labels
No labels