Python Google 声音

Python Google Voice

我正在使用 here 的 google 语音 API,并尝试从 Python 发送短信。但是,每当我尝试使用此代码登录时,我都会得到一些我不期望的东西:

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

启动此代码的父程序(字面意思是 运行 此草图的文件)后,我收到此提示:

Email Address: 

如果我输入电子邮件地址,它就会冻结。任何帮助将不胜感激。

我在一些地方读到 Google 语音 API 支持即将 end/has 结束,我想知道这是否就是我收到错误的原因。 .. 如果是这样,是否有 python 兼容的免费替代品?我不想为了从我的电脑上发短信而付费!

不知何故,这让它现在起作用了:

from googlevoice import Voice
from googlevoice.util import input
import sys
import BeautifulSoup
import fileinput

import Listen #A voice recognition script I wrote

def login():
    username, password = "xyz@gmail.com", "******"

    voice = Voice()
    client = voice.login(username, password)
    return client

我所做的唯一不同的事情是更改了我导入的一些库,但我终于可以克服 "Email Address: " 错误,运行 我的其余代码.我还没有尝试测试它,我发送了一条短信!

@Merlin2011 和@jknupp17,非常感谢您的建议!