鱼C论坛

 找回密码
 立即注册
查看: 2357|回复: 7

没有news这个模块

[复制链接]
发表于 2021-4-5 18:42:35 | 显示全部楼层 |阅读模式

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

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

x
不知道诸位能不能看得到附件,我在学习爬虫爬网易新闻时,怎么运行文件都出现这句:No module named 'news'

import scrapy
from news.items import NewsItem
from scrapy.linkextractors import LinkExtractor
from scrapy.spiders import CrawlSpider, Rule
import time

#https://www.163.com/dy/article/G6LL83J3051481US.html
#https://www.163.com/dy/article/G6JQ3TLB055040N3.html
#https://news.163.com/21/0403/16/G6M23BAK000189FH.html
#https://news.163.com/21/0403/16/G6M25RJH000189FH.html
#https://news.163.com/21/0402/11/G6ITTCLV0001899O.html
#https://news.163.com/21/0402/11/G6IT93GF0001899O.html

class News163Spider(CrawlSpider,get_time):
    name = 'news163'
    allowed_domains = ['news.163.com']
    start_urls = ['http://news.163.com/']

    rules = (
        Rule(LinkExtractor(allow=r'https://news.163.com/21/0402/\d+/.*?.html'),callback='parse_item',follow=True),
    )

    def parse_item(self, response):
        
        item = NewsItem()
        item['news_thread']=response.url.strip().split('/')[-1][:-5]
        self.get_title(response,item)
        self.get_time(response,item)
        self.get_source(response,item)
        self.get_source_url(response,item)
        self.get_text(response,item)
        self.get_url(response,item)

        return item

    def get_url(self,response,item):
        url=response.url
        if url:
            print('news_url:{}'.format(url))
            item['news_url']=url

    def get_text(self,response,item):
        text=response.css('.post_body p::text').extract()
        if text:
            print('text:{}'.format(text))
            item['news_body']=text

    def get_source_url(self,response,item):
        source_url=response.css('content::attr(href)').extract()
        if source_url:
            print('source_url:{}'.format(source_url[0]))
            item['source_url']=source_url[0]

    def get_source(self,response,item):
        source=response.css('content::text').extract()
        if source:
            print('source:{}'.format(source[0]))
            item['news_source']=source[0]

    def get_time(self,response,item):
        time=response.css('div.post_info::text').extract()
        if time:
            print('time:{}'.format(time[0].strip().replace('来源:','')))
            item['news_time']=time[0].strip().replace('来源:','')


    def get_title(self,response,item):
        
        title=response.css('titel::text').extract()
        print('*'*10)
        if title:
            print('title:{}'.format(title[0]))
            item['news_title']=title[0]

然后运行出现:Traceback (most recent call last):
  File "C:\news\news\spiders\news163.py", line 2, in <module>
    from news.items import NewsItem
ModuleNotFoundError: No module named 'news'
微信图片_20210405183711.png
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2021-4-5 19:00:12 | 显示全部楼层
你都没下载这个news模块吧

评分

参与人数 1鱼币 +2 收起 理由
Amy-倒转自己 + 2

查看全部评分

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2021-4-5 19:01:48 | 显示全部楼层
在cmd里输入
pip install news
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2021-4-5 19:34:10 | 显示全部楼层
本帖最后由 Stubborn 于 2021-4-5 19:52 编辑

项目下面开始导包,有可能是启动位置不对
例如我的爬虫项目路径>>I:\Project\Template\ScrapyMode\items.py
爬虫文件路径>>I:\Project\Template\ScrapyMode\spiders\**.py
则在爬虫文件导入item字典是,应该是这样的
from ScrapyMode.items import **Item

从你的路径看来
File "C:\news\news\spiders\news163.py", line 2, in <module>,尝试从news导入item
from news.items import **items


看下是否是启动路径问题
在项目文件下面,新建一个py文件。(和scrapy.cfg这个文件同级),键入如下代码: 爬虫名字不一样,记得修改
# -*- coding: utf-8 -*-
# !/usr/bin/python3
"""
Created on 10月/16/2019-->Bless no BUG<--</00:16:45

@author: 1263270345@qq.com / Alex
"""
from scrapy.cmdline import execute
execute(['scrapy', 'crawl', 'Douban'])
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2021-4-21 14:21:44 | 显示全部楼层
yayc_zcyd 发表于 2021-4-5 19:00
你都没下载这个news模块吧

我有啦!
Requirement already satisfied: news in c:\users\win10\appdata\local\programs\python\python38\lib\site-packages (1.0)
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2021-4-21 14:22:31 | 显示全部楼层

我有装的。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2021-4-21 14:37:06 | 显示全部楼层
Stubborn 发表于 2021-4-5 19:34
从项目下面开始导包,有可能是启动位置不对
例如我的爬虫项目路径>>I:\Project\Template\ScrapyMode\items ...

不行呢~凄凄惨惨戚戚......
QQ图片20210421143550.png
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2021-4-21 17:00:39 | 显示全部楼层
你的Spider继承get_time,是什么梗,哪里来的,每天听过要继承这个类啊,这次和上次报错不一样勒

评分

参与人数 1鱼币 +3 收起 理由
Amy-倒转自己 + 3

查看全部评分

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

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

本版积分规则

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

GMT+8, 2025-1-16 01:43

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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