Hi everyone,
I just ran across this program:
Is the developer around here?
This program looks very promising.
Anyway, I was not able to run it, using Python 3.7.0 under Windows.
I got the message
ImportError: cannot import name 'izip_longest' from 'itertools' (unknown location)
As expected, someone had this problem before and there is a discussion
stackoverflow.com
The problem is that izip_longest was renamed to zip_longest.
Obviously I would need to update or edit some of the libraries.
Is somebody interested?
I just ran across this program:
Is the developer around here?
This program looks very promising.
Anyway, I was not able to run it, using Python 3.7.0 under Windows.
I got the message
ImportError: cannot import name 'izip_longest' from 'itertools' (unknown location)
As expected, someone had this problem before and there is a discussion

Failing to import itertools in Python 3.5.2
I am new to Python. I am trying to import izip_longest from itertools. But I am not able to find the import "itertools" in the preferences in Python interpreter. I am using Python 3.5.2. It gives m...
The problem is that izip_longest was renamed to zip_longest.
Obviously I would need to update or edit some of the libraries.
Is somebody interested?