0
from twilio.twiml.messaging_response import MessagingResponse 
from flask_mail import Mail, Message


flask_mail.Message("hi") 
Message.Message("hi")

How do I explicitly tell the interpreter which package the method/function belongs to ?

Rishabh Agarwal
  • 1,988
  • 1
  • 16
  • 33

1 Answers1

1

I'm thinking:

from twilio.twiml.messaging_response import MessagingResponse as twili_message
from flask_mail import Mail as flask_mail, Message as flask_message