Django結(jié)合使用Scrapy爬取數(shù)據(jù)入庫(kù)的方法示例
在django項(xiàng)目根目錄位置創(chuàng)建scrapy項(xiàng)目,django_12是django項(xiàng)目,ABCkg是scrapy爬蟲項(xiàng)目,app1是django的子應(yīng)用
2.在Scrapy的settings.py中加入以下代碼
import osimport syssys.path.append(os.path.dirname(os.path.abspath(’.’)))os.environ[’DJANGO_SETTINGS_MODULE’] = ’django_12.settings’ # 項(xiàng)目名.settingsimport djangodjango.setup()
3.編寫爬蟲,下面代碼以ABCkg為例,abckg.py
# -*- coding: utf-8 -*-import scrapyfrom ABCkg.items import AbckgItem class AbckgSpider(scrapy.Spider): name = ’abckg’ #爬蟲名稱 allowed_domains = [’www.abckg.com’] # 允許爬取的范圍 start_urls = [’http://www.abckg.com/’] # 第一次請(qǐng)求的地址 def parse(self, response): print(’返回內(nèi)容:{}’.format(response)) ''' 解析函數(shù) :param response: 響應(yīng)內(nèi)容 :return: ''' listtile = response.xpath(’//*[@id='container']/div/div/h2/a/text()’).extract() listurl = response.xpath(’//*[@id='container']/div/div/h2/a/@href’).extract() for index in range(len(listtile)): item = AbckgItem() item[’title’] = listtile[index] item[’url’] = listurl[index] yield scrapy.Request(url=listurl[index],callback=self.parse_content,method=’GET’,dont_filter=True,meta={’item’:item}) # 獲取下一頁(yè) nextpage = response.xpath(’//*[@id='container']/div[1]/div[10]/a[last()]/@href’).extract_first() print(’即將請(qǐng)求:{}’.format(nextpage)) yield scrapy.Request(url=nextpage,callback=self.parse,method=’GET’,dont_filter=True) # 獲取詳情頁(yè) def parse_content(self,response): item = response.meta[’item’] item[’content’] = response.xpath(’//*[@id='post-1192']/dd/p’).extract() print(’內(nèi)容為:{}’.format(item)) yield item
4.scrapy中item.py 中引入django模型類
pip install scrapy-djangoitem
from app1 import modelsfrom scrapy_djangoitem import DjangoItemclass AbckgItem(DjangoItem): # define the fields for your item here like: # name = scrapy.Field() # 普通scrapy爬蟲寫法 # title = scrapy.Field() # url = scrapy.Field() # content = scrapy.Field() django_model = models.ABCkg # 注入django項(xiàng)目的固定寫法,必須起名為django_model =django中models.ABCkg表
5.pipelines.py中調(diào)用save()
import jsonfrom pymongo import MongoClient# 用于接收parse函數(shù)發(fā)過(guò)來(lái)的itemclass AbckgPipeline(object): # i = 0 def open_spider(self,spider): # print(’打開文件’) if spider.name == ’abckg’: self.f = open(’abckg.json’,mode=’w’) def process_item(self, item, spider): # # print(’ABC管道接收:{}’.format(item)) # if spider.name == ’abckg’: # self.f.write(json.dumps(dict(item),ensure_ascii=False)) # # elif spider.name == ’cctv’: # # img = requests.get(item[’img’]) # # if img != ’’: # # with open(’圖片%d.png’%self.i,mode=’wb’)as f: # # f.write(img.content) # # self.i += 1 item.save() return item # 將item傳給下一個(gè)管道執(zhí)行 def close_spider(self,spider): # print(’關(guān)閉文件’) self.f.close()
6.在django中models.py中一個(gè)模型類,字段對(duì)應(yīng)爬取到的數(shù)據(jù),選擇適當(dāng)?shù)念愋团c長(zhǎng)度
class ABCkg(models.Model): title = models.CharField(max_length=30,verbose_name=’標(biāo)題’) url = models.CharField(max_length=100,verbose_name=’網(wǎng)址’) content = models.CharField(max_length=200,verbose_name=’內(nèi)容’) class Meta: verbose_name_plural = ’爬蟲ABCkg’ def __str__(self): return self.title
7.通過(guò)命令啟動(dòng)爬蟲:scrapy crawl 爬蟲名稱
8.django進(jìn)入admin后臺(tái)即可看到爬取到的數(shù)據(jù)。
到此這篇關(guān)于Django結(jié)合使用Scrapy爬取數(shù)據(jù)入庫(kù)的方法示例的文章就介紹到這了,更多相關(guān)Django Scrapy爬取數(shù)據(jù)入庫(kù)內(nèi)容請(qǐng)搜索好吧啦網(wǎng)以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持好吧啦網(wǎng)!
相關(guān)文章:
1. Django Channel實(shí)時(shí)推送與聊天的示例代碼2. django 解決model中類寫不到數(shù)據(jù)庫(kù)中,數(shù)據(jù)庫(kù)無(wú)此字段的問(wèn)題3. Vue移動(dòng)端項(xiàng)目實(shí)現(xiàn)使用手機(jī)預(yù)覽調(diào)試操作4. Django def clean()函數(shù)對(duì)表單中的數(shù)據(jù)進(jìn)行驗(yàn)證操作5. Vue.js中動(dòng)態(tài)更改svg的相關(guān)屬性詳解6. python中pivot()函數(shù)基礎(chǔ)知識(shí)點(diǎn)7. Python抓包并解析json爬蟲的完整實(shí)例代碼8. AJAX實(shí)現(xiàn)JSON與XML數(shù)據(jù)交換方法詳解9. JS算法題解旋轉(zhuǎn)數(shù)組方法示例10. 關(guān)于python中remove的一些坑小結(jié)