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
Maybe this will be fix: