document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. if [ -d /mnt/storage ]
  2. then
  3.   export EXTERNAL_STORAGE=/mnt/storage
  4. else
  5.   export EXTERNAL_STORAGE=/mnt/sdcard
  6. fi
  7.  
  8. PYTHONPATH=${EXTERNAL_STORAGE}/com.googlecode.pythonforandroid/extras/python
  9. PYTHONPATH=${PYTHONPATH}:/data/data/com.googlecode.pythonforandroid/files/python/lib/python2.6/lib-dynload
  10. export PYTHONPATH
  11. export TEMP=${EXTERNAL_STORAGE}/com.googlecode.pythonforandroid/extras/python/tmp
  12. export PYTHON_EGG_CACHE=$TEMP
  13. export PYTHONHOME=/data/data/com.googlecode.pythonforandroid/files/python
  14. export LD_LIBRARY_PATH=/data/data/com.googlecode.pythonforandroid/files/python/lib
  15. /data/data/com.googlecode.pythonforandroid/files/python/bin/python "$@"
');