turicas / rows

A common, beautiful interface to tabular data, no matter the format
GNU Lesser General Public License v3.0
865 stars 136 forks source link

Python 3.10: cannot import name 'Iterator' from 'collections' #363

Open fagci opened 2 years ago

fagci commented 2 years ago
File "/data/data/com.termux/files/usr/lib/python3.10/site-packages/rows/plugins/utils.py", line 20, in <module> 
from collections import Iterator, OrderedDict            
ImportError: cannot import name 'Iterator' from 'collections'

Maybe this will be fix:

try:
    from collections.abc import Iterator
except ImportError:
    from collections import Iterator