The linux command to invoke will be xdg-email , part of the xdg-utils package found on most Linux desktops (at least by default on arch, debian, ubuntu).
xdg-email is a "command line tool for sending mail using the user's preferred email composer."
if they correctly configured their default applications, it will open the default email client. You can pass it to the arguments to fill in various mail fields (in, cc, subject, body, etc.), as well as the file names of the attached files.
From your python script, you can call it using os.system () or a subprocess module.
source share