Kivy A to Z -- 给Kivy加上远程Python命令行调试功能

1. 首先从下面的连接下面代码:

 

http://philpep.org/pub/ripshell.py

 

2. 重新生成public.mp3 

建立一个public目录

将下载下来的ripshell.py拷贝到该目录下,添加一个函数:

def RunServer():

        print 'Starting server...'

        RIPServer(PORT) # blocks until done


 

 

修改ripshell.py里的SERVER_IP为手机无线IP,如

 

SERVER_IP = '192.168.1.20'

 

修改ripshell.py里的CLIENT_IPS,将工作电脑的IP加入到CLIENT_IPS,如:

 

CLIENT_IPS = ['192.168.1.21', '127.0.0.1']

 

新建main.py

import ripshell

if __name__ == '__main__':

    ripshell.RunServer()


 

 

创建新的public.mp3

 

default/assets/public# tar -czf ../public.mp3 *

 

3. 最后一步很重要:修改string.xml中public_version的值,改成另外一个值即可,要不然不会重新解压

 

4. 好了,eclipse重新运行PythonActivity

 

5. 在logcat可以看到Starting Server...

 

6. 电脑端运行:

python ripshell.py -

 

即可进行下面的命令行:

Python 2.7.2 (default, Apr  5 2014, 23:36:42)

[GCC 4.4.3]

Remote Interactive Python Shell v0.1

Type "help", "copyright", "credits" or "license" for more information.

>>> import jnius

>>> Properties = jnius.autoclass('android.os.SystemProperties')

>>> Properties.get('persist.sys.usb.config')

'mtp,adb'


 

 

7. 呵呵,是不是很好玩?have fun!

 

(完)

  

你可能感兴趣的:(android,python,kivy)