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 ?
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 ?
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