IronPythonを使用して、かなりC#のWinformアプリでpygooglevoiceをラップしようとしています。私はPythonを初めて使用し、いくつかのハードルを克服しましたが、これを支援するには専門家の目(または初心者!)(または「外国人」の目)が必要なようです。
File "..\googlevoice\util.py", line 3,
in <module>
ImportError: cannot import expat from xml.parsers
The actual code here is:
from xml.parsers.expat import ParserCreate
次のように IronPython ipy64.exe を実行すると、上記のエラーが発生します。
ip64.exe "c:\Users\nick\Downloads\pygooglevoice-0.5\googlevoice\markasread.py
markasread.py の内容は次のとおりです。
from googlevoice import Voice,util
voice = Voice()
voice.login('emailAddr...@gmail.com', 'password here')
while True :
folder = voice.search('is:unread')
if folder.totalSize <= 0 :
break
util.print_(folder.totalSize)
for message in folder.messages:
util.print_(message)
message.mark(1)