Forum Archive

What modules of standard library are NOT available in Pythonista?

ltddev

Can anyone point me to any documentation that shows which modules of the standard 2.7x library is not supported by Pythonista?
I am trying to do a:

from multiprocessing import Process

and get an import error that "no module named multiprocessing" is found. It was introduced, so the doc page says, in Python 2.6 (https://docs.python.org/2/library/multiprocessing.html)

smath

I don't believe you're allowed to run subprocesses on ios, so that would explain that library not being included. I don't know of a list of what's not available though.

ltddev

I just realized after posting that it is a module part of "Optional Operating System Services" so right off the bat that explains it.