0

我需要一个代码,可以每天使用pagestest.org API自动测试我的 URL

我想用一个 Python 脚本来做这些测试,每天运行一次,然后保存结果以供以后查看。

4

1 回答 1

-1

不太明白你在问什么,但你可以编写一个始终运行的脚本,或者在启动时运行并测试 URL。

例如,有一个脚本在后台持续运行并将其休眠 23 小时 59 分钟。示例代码:

import requests, time
from urllib.request import urlopen

def main():
    while(True):
        print("Good Morning")
        try:
            html_doc = urlopen("https://www.google.co.uk")
            print("Connection Established.")
        except:         
            raise ConnectionError("No connection can be made to the url")
        time.sleep(86400)

if __name__ == '__main__':
    main()

这将每天一次检查给定的 URL 以查看它是否可以连接并显示结果。

但是我不确定这是你想要的,因为这个问题非常不清楚,我建议你去想想你到底想要什么。

于 2017-04-18T11:18:15.903 回答