如何在Android上运行Python程序?

时间:2014-03-02 04:09:53

标签: android python sl4a

我是Android的新手,我想使用python在我的Android设备上运行简单的网页加载测试。我编写了一个python来计算每个给定网页的加载时间。我想在我的Android设备上执行此操作以获取默认浏览器而不是Chrome,并在文件中收集时间戳10次迭代。
这是程序在我的Windows机器上运行。

import urllib
from urllib.request import urlopen
import time

url = ["http://www.msn.com","http://www.cnn.com","http://www.google.com"]
for i in range(0,1):
    for x in url:
        nf = urlopen(x)
        start = time.time()
        page = nf.read()
        end = time.time()
        lt = (end - start)
        print (x,round(lt,2))
        nf.close()

谢谢

1 个答案:

答案 0 :(得分:0)

您可以使用SL4A在Android上运行脚本。

也就是说,您的问题是询问是否使用默认浏览器,但您的代码并未使用任何浏览器,因此您不清楚自己想要什么。