wikiextractor
wikiextractor copied to clipboard
ModuleNotFoundError: No module named 'cStringIO'
Hi, running the script with python 3.7 (86x) under windows throws this error ModuleNotFoundError: No module named 'cStringIO'
The StringIO and cStringIO modules are removed from Python 3. Instead, io module should be imported and io.StringIO or io.BytesIO used for text and data respectively. There is a related StackOverflow question.
I used Python 2.7 instead of PYthon 3.8 and the error disappeared.
EDIT: You probably ran old version of the script, the issue I wrote above was fixed in 9322b7ba54a06a858a57456e1497bc1e1bfb81d9 so I think this issue can be closed.