鱼C论坛

 找回密码
 立即注册
查看: 2082|回复: 4

爬虫问题求解

[复制链接]
发表于 2020-11-24 22:56:30 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
为什么下面代码运行了之后也没有报错也没有爬到IP地址
同问小甲鱼《零基础入门学python》里面爬虫那部分正则表达式相关的所有代码都有这个问题,不知道怎么改。。。

import urllib.request
import re

def open_url(url):
    req = urllib.request.Request(url)
    req.add_header('User-Agent','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36')
    page = urllib.request.urlopen(req)
    html = page.read().decode('utf-8')
   
    return html

def get_img(html):
    p = r'(?:(?:[0,1]?\d?\d|2[0-4]\d|25[0-5])\.){3}(?:[0,1]?\d?\d|2[0-4]\d|25[0-5])'
    iplist = re.findall(p,html)

    for each in iplist:
        print(each)


if __name__ == '__main__':
    url = "https://cn.proxy.com/"
    get_img(open_url(url))


code-reptile.zip (6.22 KB, 下载次数: 0)
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-11-24 23:10:32 | 显示全部楼层
先 打印有没有 获取到网页内容,然后打印调试正则有没有问题
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-11-30 21:51:56 | 显示全部楼层
假面的假面 发表于 2020-11-24 23:37
网站都打不开你还打算爬虫?

换网址url也没用啊,什么反应都没有
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-11-30 22:05:03 | 显示全部楼层
均昊山 发表于 2020-11-24 23:10
先 打印有没有 获取到网页内容,然后打印调试正则有没有问题

下面代码运行了还是啥都没出来。。。。


import urllib.request
import re


def open_url(url):
    req = urllib.request.Request(url)
    print(f"req ={req}")
    req.add_header('User-Agent','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36')
    print(f"req ={req}")
    page = urllib.request.urlopen(req)
    print(f"page ={page}")
    html = page.read().decode('utf-8')
    print(f"html ={html}")
   
   
    return html

def get_img(html):
    p = r'(?:(?:[0,1]?\d?\d|2[0-4]\d|25[0-5])\.){3}(?:[0,1]?\d?\d|2[0-4]\d|25[0-5])'
    iplist = re.findall(p,html)

    for each in iplist:
        print(each)


if __name__ == '__main__':
    url = "https://www.bilibili.com/"
    html = open_url(url)
    print(f"html = {html}")
    pic = get_img(html)
    print(f"pic = {pic}")
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-11-30 22:30:00 | 显示全部楼层
假面的假面 发表于 2020-11-24 23:37
网站都打不开你还打算爬虫?

抱歉,换个网址可以用了,应该是网址打不开,然后前面可能我换的网址里面爬不到IP地址,所以程序没有任何输出。
还有安装的python有点问题,没有一个dell文件,导致运行过程中出错了,用powershell运行没反应,用cmd运行才提示安装的python里面少了一个dell问文件。。。
重新安装python+更改url之后可以成功爬到IP地址了!!!

import urllib.request
import re


def open_url(url):
    req = urllib.request.Request(url)
    req.add_header('User-Agent','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36')
    page = urllib.request.urlopen(req)
    html = page.read().decode('utf-8')
   
    return html

def get_img(html):
    p = r'(?:(?:[0,1]?\d?\d|2[0-4]\d|25[0-5])\.){3}(?:[0,1]?\d?\d|2[0-4]\d|25[0-5])'
    iplist = re.findall(p,html)

    for each in iplist:
        print(each)


if __name__ == '__main__':
    url = "https://www.kuaidaili.com/free/"
    html = open_url(url)
    # print(html)
    pic = get_img(html)
    # print(pic)
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-17 06:19

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表