【Python】每隔固定时间抓取百度 python代码

作者: IT派森 | 来源:发表于2019-08-13 15:07 被阅读1次

    <每隔固定时间抓取百度 python代码>

    每隔固定时间抓取百度 python代码代码片段

    *1. *[代码][Python]代码

    在学习过程中有什么不懂得可以加我的
    python学习交流扣扣qun,784758214
    群里有不错的学习视频教程、开发工具与电子书籍。
    与你分享python企业当下人才需求及怎么从零基础学习好python,和学习什么内容
    #coding: utf-8
    # www.iplaypy.com python
    import sys
    import urllib
    import urllib2
    from BeautifulSoup import BeautifulSoup
    from time import sleep
    while(True):
        try:
            res = urllib2.urlopen("http://www.baidu.com/")
            #baidu is encoded by gbk
            print res.read()
            sleep(3600) #per hour
        except(KeyboardInterrupt):
            print("\nbyebyebye.~")
            break
    """
    
    

    相关文章

      网友评论

        本文标题:【Python】每隔固定时间抓取百度 python代码

        本文链接:https://www.haomeiwen.com/subject/tpztcctx.html