zoukankan      html  css  js  c++  java
  • 爬虫

    import requests
    import time
    from read_ip_pool import read_ip_pool
    
    PROXIES_URL = ''
    
    
    def get_ip_pool(url=PROXIES_URL):
        """ 根据URL构造代理池
    
        :param PROXIES_URL:
        :return: []
        """
        response = requests.get(url)
        with open('IP_POOL', 'w') as f:
            f.write(response.text)
        print('get_ip_pool is done')
    
    # Unix, 后台运行脚本: <script_name> &
    while True:
        get_ip_pool()
        read_ip_pool()
        # time+死循环, 实现定时功能。
        time.sleep(10)
        print("")
    
  • 相关阅读:
    树的同构
    最大子列和
    多项式的表示和运算
    图1
    集合及运算
    树4
    树3
    树2
    期末作业验收
    个人总结
  • 原文地址:https://www.cnblogs.com/allen2333/p/9743525.html
Copyright © 2011-2022 走看看