鱼C论坛

 找回密码
 立即注册
查看: 2996|回复: 2

爬虫

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

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

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

x
请问为什么运行以后没有反应啊
import requests
from bs4 import BeautifulSoup

class Douban:
    def __init__(self):
        self.url='https://movie.douban.com/top250'
        self.starnum=[]
        for start_num in range(0,251,25):
            self.starnum.append(start_num)
        self.header={'User-Agent':'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:82.0) Gecko/20100101 Firefox/82.0'}
    def get_top250(self):
        for strat in self.staarnum:
            html=requests.get(self.url,params={'start':start},headers=self.header)
            soup=BeautifulSoup(html,'html.parser')
            num=soup.select('.grid_view > li:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > a:nth-child(1) > span:nth-child(1)')
            for num in num:
                print(num.get_text())
cls=Douban()
谢谢大佬们了!!!
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-11-13 08:43:20 | 显示全部楼层
你实例化了一个类对象,实例化完会自动调用类对象的初始化函数def __init__(self)
初始化函数就做了些赋值操作,没有后续的。你想要什么反应???
建议先把基本知识了解,再去学爬虫
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-11-13 16:43:26 | 显示全部楼层


错误地方有三个:

1、定义类,没有调用类中方法

2、for 循环的 start 和 self.starnum 你打错了

3、requests 读取数据后需要 .text 才会获得源码
import requests
from bs4 import BeautifulSoup

class Douban:
    def __init__(self):
        self.url='https://movie.douban.com/top250'
        self.starnum=[]
        for start_num in range(0,251,25):
            self.starnum.append(start_num)
        self.header={'User-Agent':'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:82.0) Gecko/20100101 Firefox/82.0'}
    def get_top250(self):
        for start in self.starnum:
            html=requests.get(self.url,params={'start':start},headers=self.header)
            soup=BeautifulSoup(html.text,'html.parser')
            num=soup.select('.grid_view > li:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > a:nth-child(1) > span:nth-child(1)')
            for num in num:
                print(num.get_text())
cls=Douban()
cls.get_top250()
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

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

本版积分规则

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

GMT+8, 2025-1-17 21:38

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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