I am using the google voice API from here, and trying to send text messages from Python. However, whenever I try to log in using this code, I get something I do not expect:
from googlevoice import tests
from googlevoice import Voice
from googlevoice.util import input
def login():
username, password = "xyz@gmail.com", "******"
client = Voice.login(username, password)
return client
Upon starting this code's parent program (a file that literally just says run this sketch), I get this prompt:
Email Address:
If I enter an email address, it just freezes. Any help would be greatly appreciated.
I've read a few places that the Google Voice API support is coming to an end/has ended and am wondering if this is why I'm getting an error... If so, are there any free alternatives that are python compatible? I don't want to pay to have to text from my computer!