I have got a custom module called subprocess32.py
, I have placed this in:
/Python/2.7/site-packages/subprocess32
along with __init.py__
I have tried importing this package / module in a python shell using
from subprocess32 import subprocess32
this works fine I can use the functions etc.
I want to use this module within my goolgle app engine application, I have tried
from subprocess 32 import subprocess32
I get the following error:
No module named subprocess32
I have also tried putting the subprocess32
folder and its contents within the apps folder, and point the sys.path
at it before input but no joy.
Any help would be appreciated many thanks.