jegesh / python-random-access-file-reader

Low memory usage random access reader for csv and general files
14 stars 6 forks source link

Import StringIO from io module when running on Python3 #5

Closed amirma closed 6 years ago

amirma commented 6 years ago

from randomAccessReader import RandomAccessReader

ModuleNotFoundError Traceback (most recent call last)

in () ----> 1 from randomAccessReader import RandomAccessReader ~/.local/share/virtualenvs/pipenv-UfFdSzCR/lib/python3.6/site-packages/randomAccessReader/__init__.py in () 11 12 import csv ---> 13 import StringIO 14 15 # ========== ModuleNotFoundError: No module named 'StringIO'
jegesh commented 6 years ago

Did you close this intentionally? Is it not actually relevant?

amirma commented 6 years ago

After I submitted the pull request, I noticed my change set was based on a stale version of master and the fix was already in master. So I closed it. Sorry for the noise :-)

jegesh commented 6 years ago

No problems

jegesh commented 6 years ago

After a second glance, I think you were looking at your own fork of the repo. Those changes don't exist in the main repository.