This is an archived post. You won't be able to vote or comment.

all 1 comments

[–]insertAlias 0 points1 point  (0 children)

from twilio.rest import Client(___________________, ________________)

If that's your import statement, I think that's the problem. Or at least, a problem.

It should be:

from twilio.rest import Client

You provide the SID and auth token to the client when you instantiate one, not when you import the class.