Running the library from the latest version of Python gives the following deprecation warning:
DeprecationWarning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated since Python 3.3, and in 3.10 it will stop working
class DWFile(collections.Mapping):
Running the library from the latest version of Python gives the following deprecation warning:
So use
Mapping
from theabc
module instead.