Good morning,
For testing purposes, I have made a one-line Python program:
from email.mime.multipart import MIMEMultipart
When I run it
Well, from the docs for Python 2.4, it seems you need:
from email.MIMEMultipart import MIMEMultipart
(Although you might want to use a newer version of Python, if possible).