首页 > TAG信息列表 > pythonm - 列表页
pythonm
  • python 重定向获取真实url

    2019-06-13
    点评 :有时采集到网址是重定向的我们需要重新获取真实地址此时以下代码能帮上你
    def get_real_url(url,try_count = 1):
    if try_count > 3:
    return url
    try...