用于ios解释器的Python

可能重复:
iOS上的Python或Ruby解释器

我刚刚发现这个应用程序的pypad和python的ios

他们有一个翻译编辑

那么你会推荐哪个应用程序

但是最重​​要的是,这个解释器是如何工作的,我在哪里可以看到obj c和python如何工作的例子?

谢谢!

我是iOS的唯一创build者,所以这当然是我的build议,但是对于你的个人决定来说,一个好的指标就是对每个应用的评论和评价。 我花了几周的时间才弄清楚如何正确地将python集成到Objective-c中,但是这里是最好的资源来开始(请记住,ObjC只是C的一个超集):

http://docs.python.org/c-api/


另外,这里是一个调用myModule定义的函数的myModule 。 等价的python将是:

 import myModule pValue = myModule.doSomething() print pValue 

在Objective-c中:

 #include <Python.h> - (void)example { PyObject *pName, *pModule, *pDict, *pFunc, *pArgs, *pValue; NSString *nsString; // Initialize the Python Interpreter Py_Initialize(); // Build the name object pName = PyString_FromString("myModule"); // Load the module object pModule = PyImport_Import(pName); // pDict is a borrowed reference pDict = PyModule_GetDict(pModule); // pFunc is also a borrowed reference pFunc = PyDict_GetItemString(pDict, "doSomething"); if (PyCallable_Check(pFunc)) { pValue = PyObject_CallObject(pFunc, NULL); if (pValue != NULL) { if (PyObject_IsInstance(pValue, (PyObject *)&PyUnicode_Type)) { nsString = [NSString stringWithCharacters:((PyUnicodeObject *)pValue)->str length:((PyUnicodeObject *) pValue)->length]; } else if (PyObject_IsInstance(pValue, (PyObject *)&PyBytes_Type)) { nsString = [NSString stringWithUTF8String:((PyBytesObject *)pValue)->ob_sval]; } else { /* Handle a return value that is neither a PyUnicode_Type nor a PyBytes_Type */ } Py_XDECREF(pValue); } else { PyErr_Print(); } } else { PyErr_Print(); } // Clean up Py_XDECREF(pModule); Py_XDECREF(pName); // Finish the Python Interpreter Py_Finalize(); NSLog(@"%@", nsString); } 

对于更多的文档检查: 扩展和embeddedPython解释器

我最近编写了一个小型库ObjP来帮助将Pythonembedded到Objective-C应用程序中。 我写了一篇关于这方面的文章:

http://www.hardcoded.net/articles/embedding-python-in-objc.htm