Python + macbook sms (sudden motion sensor) April 12, 2011 Install PyAppleSMS. Use it as import applesms (x,y,z) = applesms.coords() Share Get link Facebook X Pinterest Email Other Apps Labels mac python Share Get link Facebook X Pinterest Email Other Apps Comments AnonymousDecember 14, 2011 at 7:58 AMhi, i try to do do this, but *#$@*how to install the software PyAppleSMS?i`ve this problem Traceback (most recent call last): File "example.py", line 3, in import applesmsImportError: dlopen(/Library/Python/2.7/site-packages/applesms.so, 2): Symbol not found: _IOConnectMethodStructureIStructureO Referenced from: /Library/Python/2.7/site-packages/applesms.so Expected in: flat namespace in /Library/Python/2.7/site-packages/applesms.soReplyDeleteRepliesReplyKaushik GhoseDecember 14, 2011 at 9:55 AMWhich platform are you on? Tryhttp://code.activestate.com/pypm/pyapplesms/to see if they have a version for your OS.In general, you should state the OS, the python version and the library version as a minimum to help people with your question.BestReplyDeleteRepliesReplyAnonymousApril 23, 2013 at 3:57 PMNote, with newer versions of OS X, you'll need to edit the file applesms.c, as follows:// result = IOConnectMethodStructureIStructureO(dataPort, kernFunc, structureInputSize,// &structureOutputSize, &inputStructure, outputStructure); result = IOConnectCallStructMethod(dataPort, kernFunc, &inputStructure, structureInputSize, outputStructure, &structureOutputSize);ReplyDeleteRepliesReplyAdd commentLoad more... Post a Comment
hi,
ReplyDeletei try to do do this, but *#$@*
how to install the software PyAppleSMS?
i`ve this problem
Traceback (most recent call last):
File "example.py", line 3, in
import applesms
ImportError: dlopen(/Library/Python/2.7/site-packages/applesms.so, 2): Symbol not found: _IOConnectMethodStructureIStructureO
Referenced from: /Library/Python/2.7/site-packages/applesms.so
Expected in: flat namespace
in /Library/Python/2.7/site-packages/applesms.so
Which platform are you on? Try
ReplyDeletehttp://code.activestate.com/pypm/pyapplesms/
to see if they have a version for your OS.
In general, you should state the OS, the python version and the library version as a minimum to help people with your question.
Best
Note, with newer versions of OS X, you'll need to edit the file applesms.c, as follows:
ReplyDelete// result = IOConnectMethodStructureIStructureO(dataPort, kernFunc, structureInputSize,
// &structureOutputSize, &inputStructure, outputStructure);
result = IOConnectCallStructMethod(dataPort, kernFunc,
&inputStructure, structureInputSize,
outputStructure, &structureOutputSize);