Python 3.7 use from collections import Iterable error
Error Message:
DeprecationWarning: Using or importing the ABCs from ‘collections’ instead of from ‘collections.abc’ is deprecated, and in 3.8 it will stop working
from collections import Iterable
Solution:
Change to from collections.abc import Iterable