From a4b53a2c8bdf58922c10169db2dbc95adb17eed9 Mon Sep 17 00:00:00 2001 From: ifui Date: Sun, 8 Jun 2025 16:53:20 +0800 Subject: [PATCH] =?UTF-8?q?=E5=90=AF=E7=94=A8=E6=95=B0=E6=8D=AE=E7=AE=A1?= =?UTF-8?q?=E9=81=93=EF=BC=9A=E6=BF=80=E6=B4=BB=E9=98=BF=E9=87=8C=E4=BA=91?= =?UTF-8?q?=E8=A7=86=E9=A2=91=E7=82=B9=E6=92=AD=E3=80=81SQLite=E5=92=8CMar?= =?UTF-8?q?iaDB=E5=AD=98=E5=82=A8=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scrapy_proj/settings.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scrapy_proj/settings.py b/scrapy_proj/settings.py index 60712d8..65f115c 100644 --- a/scrapy_proj/settings.py +++ b/scrapy_proj/settings.py @@ -63,9 +63,9 @@ DOWNLOADER_MIDDLEWARES = { # Configure item pipelines # See https://docs.scrapy.org/en/latest/topics/item-pipeline.html ITEM_PIPELINES = { - # "scrapy_proj.pipelines.AliyunVodPipeline": 300, # 上传到阿里云视频点播 - # "scrapy_proj.pipelines.SQLitePipeline": 400, # 保存到SQLite - # "scrapy_proj.pipelines.MariaDBPipeline": 500, # 最后保存到MariaDB + "scrapy_proj.pipelines.AliyunVodPipeline": 300, # 上传到阿里云视频点播 + "scrapy_proj.pipelines.SQLitePipeline": 400, # 保存到SQLite + "scrapy_proj.pipelines.MariaDBPipeline": 500, # 最后保存到MariaDB } # Enable and configure the AutoThrottle extension (disabled by default)