crawlo 1.1.0__py3-none-any.whl → 1.1.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of crawlo might be problematic. Click here for more details.
- crawlo/__init__.py +33 -24
- crawlo/__version__.py +1 -1
- crawlo/cli.py +40 -40
- crawlo/commands/__init__.py +13 -13
- crawlo/commands/check.py +594 -155
- crawlo/commands/genspider.py +125 -110
- crawlo/commands/list.py +147 -119
- crawlo/commands/run.py +285 -170
- crawlo/commands/startproject.py +111 -101
- crawlo/commands/stats.py +188 -167
- crawlo/core/__init__.py +2 -2
- crawlo/core/engine.py +158 -158
- crawlo/core/processor.py +40 -40
- crawlo/core/scheduler.py +57 -57
- crawlo/crawler.py +494 -492
- crawlo/downloader/__init__.py +78 -78
- crawlo/downloader/aiohttp_downloader.py +199 -199
- crawlo/downloader/cffi_downloader.py +242 -277
- crawlo/downloader/httpx_downloader.py +246 -246
- crawlo/event.py +11 -11
- crawlo/exceptions.py +78 -78
- crawlo/extension/__init__.py +31 -31
- crawlo/extension/log_interval.py +49 -49
- crawlo/extension/log_stats.py +44 -44
- crawlo/extension/logging_extension.py +34 -34
- crawlo/filters/__init__.py +37 -37
- crawlo/filters/aioredis_filter.py +150 -150
- crawlo/filters/memory_filter.py +202 -202
- crawlo/items/__init__.py +23 -23
- crawlo/items/base.py +21 -21
- crawlo/items/fields.py +53 -53
- crawlo/items/items.py +104 -104
- crawlo/middleware/__init__.py +21 -21
- crawlo/middleware/default_header.py +32 -32
- crawlo/middleware/download_delay.py +28 -28
- crawlo/middleware/middleware_manager.py +135 -135
- crawlo/middleware/proxy.py +245 -245
- crawlo/middleware/request_ignore.py +30 -30
- crawlo/middleware/response_code.py +18 -18
- crawlo/middleware/response_filter.py +26 -26
- crawlo/middleware/retry.py +90 -90
- crawlo/network/__init__.py +7 -7
- crawlo/network/request.py +203 -203
- crawlo/network/response.py +166 -166
- crawlo/pipelines/__init__.py +13 -13
- crawlo/pipelines/console_pipeline.py +39 -39
- crawlo/pipelines/mongo_pipeline.py +116 -116
- crawlo/pipelines/mysql_batch_pipline.py +272 -272
- crawlo/pipelines/mysql_pipeline.py +195 -195
- crawlo/pipelines/pipeline_manager.py +56 -56
- crawlo/project.py +153 -0
- crawlo/settings/__init__.py +7 -7
- crawlo/settings/default_settings.py +166 -168
- crawlo/settings/setting_manager.py +99 -99
- crawlo/spider/__init__.py +129 -129
- crawlo/stats_collector.py +59 -59
- crawlo/subscriber.py +106 -106
- crawlo/task_manager.py +27 -27
- crawlo/templates/crawlo.cfg.tmpl +10 -10
- crawlo/templates/project/__init__.py.tmpl +3 -3
- crawlo/templates/project/items.py.tmpl +17 -17
- crawlo/templates/project/middlewares.py.tmpl +75 -75
- crawlo/templates/project/pipelines.py.tmpl +63 -63
- crawlo/templates/project/settings.py.tmpl +54 -54
- crawlo/templates/project/spiders/__init__.py.tmpl +5 -5
- crawlo/templates/spider/spider.py.tmpl +31 -31
- crawlo/utils/__init__.py +7 -7
- crawlo/utils/date_tools.py +233 -233
- crawlo/utils/db_helper.py +343 -343
- crawlo/utils/func_tools.py +82 -82
- crawlo/utils/log.py +128 -128
- crawlo/utils/pqueue.py +173 -173
- crawlo/utils/request.py +267 -267
- crawlo/utils/spider_loader.py +62 -62
- crawlo/utils/system.py +11 -11
- crawlo/utils/tools.py +4 -4
- crawlo/utils/url.py +39 -39
- crawlo-1.1.1.dist-info/METADATA +220 -0
- crawlo-1.1.1.dist-info/RECORD +100 -0
- examples/__init__.py +7 -0
- examples/baidu_spider/__init__.py +7 -0
- examples/baidu_spider/demo.py +94 -0
- examples/baidu_spider/items.py +46 -0
- examples/baidu_spider/middleware.py +49 -0
- examples/baidu_spider/pipeline.py +55 -0
- examples/baidu_spider/run.py +27 -0
- examples/baidu_spider/settings.py +121 -0
- examples/baidu_spider/spiders/__init__.py +7 -0
- examples/baidu_spider/spiders/bai_du.py +61 -0
- examples/baidu_spider/spiders/miit.py +159 -0
- examples/baidu_spider/spiders/sina.py +79 -0
- tests/__init__.py +7 -7
- tests/test_proxy_health_check.py +32 -32
- tests/test_proxy_middleware_integration.py +136 -136
- tests/test_proxy_providers.py +56 -56
- tests/test_proxy_stats.py +19 -19
- tests/test_proxy_strategies.py +59 -59
- crawlo/utils/concurrency_manager.py +0 -125
- crawlo/utils/project.py +0 -197
- crawlo-1.1.0.dist-info/METADATA +0 -49
- crawlo-1.1.0.dist-info/RECORD +0 -97
- examples/gxb/__init__.py +0 -0
- examples/gxb/items.py +0 -36
- examples/gxb/run.py +0 -16
- examples/gxb/settings.py +0 -72
- examples/gxb/spider/__init__.py +0 -2
- examples/gxb/spider/miit_spider.py +0 -180
- examples/gxb/spider/telecom_device.py +0 -129
- {crawlo-1.1.0.dist-info → crawlo-1.1.1.dist-info}/WHEEL +0 -0
- {crawlo-1.1.0.dist-info → crawlo-1.1.1.dist-info}/entry_points.txt +0 -0
- {crawlo-1.1.0.dist-info → crawlo-1.1.1.dist-info}/top_level.txt +0 -0
|
@@ -1,195 +1,195 @@
|
|
|
1
|
-
# -*- coding: utf-8 -*-
|
|
2
|
-
import asyncio
|
|
3
|
-
import aiomysql
|
|
4
|
-
from typing import Optional
|
|
5
|
-
from asyncmy import create_pool
|
|
6
|
-
from crawlo.utils.log import get_logger
|
|
7
|
-
from crawlo.exceptions import ItemDiscard
|
|
8
|
-
from crawlo.utils.db_helper import make_insert_sql, logger
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
class AsyncmyMySQLPipeline:
|
|
12
|
-
def __init__(self, crawler):
|
|
13
|
-
self.crawler = crawler
|
|
14
|
-
self.settings = crawler.settings
|
|
15
|
-
self.logger = get_logger(self.__class__.__name__, self.settings.get('LOG_LEVEL'))
|
|
16
|
-
|
|
17
|
-
# 使用异步锁和初始化标志确保线程安全
|
|
18
|
-
self._pool_lock = asyncio.Lock()
|
|
19
|
-
self._pool_initialized = False
|
|
20
|
-
self.pool = None
|
|
21
|
-
self.table_name = (
|
|
22
|
-
self.settings.get('MYSQL_TABLE') or
|
|
23
|
-
getattr(crawler.spider, 'mysql_table', None) or
|
|
24
|
-
f"{crawler.spider.name}_items"
|
|
25
|
-
)
|
|
26
|
-
|
|
27
|
-
# 注册关闭事件
|
|
28
|
-
crawler.subscriber.subscribe(self.spider_closed, event='spider_closed')
|
|
29
|
-
|
|
30
|
-
@classmethod
|
|
31
|
-
def from_crawler(cls, crawler):
|
|
32
|
-
return cls(crawler)
|
|
33
|
-
|
|
34
|
-
async def _ensure_pool(self):
|
|
35
|
-
"""确保连接池已初始化(线程安全)"""
|
|
36
|
-
if self._pool_initialized:
|
|
37
|
-
return
|
|
38
|
-
|
|
39
|
-
async with self._pool_lock:
|
|
40
|
-
if not self._pool_initialized: # 双重检查避免竞争条件
|
|
41
|
-
try:
|
|
42
|
-
self.pool = await create_pool(
|
|
43
|
-
host=self.settings.get('MYSQL_HOST', 'localhost'),
|
|
44
|
-
port=self.settings.get_int('MYSQL_PORT', 3306),
|
|
45
|
-
user=self.settings.get('MYSQL_USER', 'root'),
|
|
46
|
-
password=self.settings.get('MYSQL_PASSWORD', ''),
|
|
47
|
-
db=self.settings.get('MYSQL_DB', 'scrapy_db'),
|
|
48
|
-
minsize=self.settings.get_int('MYSQL_POOL_MIN', 3),
|
|
49
|
-
maxsize=self.settings.get_int('MYSQL_POOL_MAX', 10),
|
|
50
|
-
echo=self.settings.get_bool('MYSQL_ECHO', False)
|
|
51
|
-
)
|
|
52
|
-
self._pool_initialized = True
|
|
53
|
-
self.logger.debug(f"MySQL连接池初始化完成(表: {self.table_name})")
|
|
54
|
-
except Exception as e:
|
|
55
|
-
self.logger.error(f"MySQL连接池初始化失败: {e}")
|
|
56
|
-
raise
|
|
57
|
-
|
|
58
|
-
async def process_item(self, item, spider, kwargs=None) -> Optional[dict]:
|
|
59
|
-
"""处理item的核心方法"""
|
|
60
|
-
kwargs = kwargs or {}
|
|
61
|
-
spider_name = getattr(spider, 'name', 'unknown') # 获取爬虫名称
|
|
62
|
-
try:
|
|
63
|
-
await self._ensure_pool()
|
|
64
|
-
item_dict = dict(item)
|
|
65
|
-
sql = make_insert_sql(table=self.table_name, data=item_dict, **kwargs)
|
|
66
|
-
|
|
67
|
-
rowcount = await self._execute_sql(sql=sql)
|
|
68
|
-
if rowcount > 1:
|
|
69
|
-
self.logger.info(
|
|
70
|
-
f"爬虫 {spider_name} 成功插入 {rowcount} 条记录到表 {self.table_name}"
|
|
71
|
-
)
|
|
72
|
-
elif rowcount == 1:
|
|
73
|
-
self.logger.debug(
|
|
74
|
-
f"爬虫 {spider_name} 成功插入单条记录到表 {self.table_name}"
|
|
75
|
-
)
|
|
76
|
-
else:
|
|
77
|
-
self.logger.warning(
|
|
78
|
-
f"爬虫 {spider_name}: SQL执行成功但未插入新记录 - {sql[:100]}..."
|
|
79
|
-
)
|
|
80
|
-
|
|
81
|
-
return item
|
|
82
|
-
|
|
83
|
-
except Exception as e:
|
|
84
|
-
self.logger.error(f"处理item时发生错误: {e}")
|
|
85
|
-
raise ItemDiscard(f"处理失败: {e}")
|
|
86
|
-
|
|
87
|
-
async def _execute_sql(self, sql: str, values: list = None) -> int:
|
|
88
|
-
"""执行SQL语句并处理结果"""
|
|
89
|
-
async with self.pool.acquire() as conn:
|
|
90
|
-
async with conn.cursor() as cursor:
|
|
91
|
-
try:
|
|
92
|
-
# 根据是否有参数值选择不同的执行方法
|
|
93
|
-
if values is not None:
|
|
94
|
-
rowcount = await cursor.execute(sql, values)
|
|
95
|
-
else:
|
|
96
|
-
rowcount = await cursor.execute(sql)
|
|
97
|
-
|
|
98
|
-
await conn.commit()
|
|
99
|
-
self.crawler.stats.inc_value('mysql/insert_success')
|
|
100
|
-
return rowcount
|
|
101
|
-
except Exception as e:
|
|
102
|
-
await conn.rollback()
|
|
103
|
-
self.crawler.stats.inc_value('mysql/insert_failed')
|
|
104
|
-
raise ItemDiscard(f"MySQL插入失败: {e}")
|
|
105
|
-
|
|
106
|
-
async def spider_closed(self):
|
|
107
|
-
"""关闭爬虫时清理资源"""
|
|
108
|
-
if self.pool:
|
|
109
|
-
self.pool.close()
|
|
110
|
-
await self.pool.wait_closed()
|
|
111
|
-
self.logger.info("MySQL连接池已关闭")
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
class AiomysqlMySQLPipeline:
|
|
115
|
-
def __init__(self, crawler):
|
|
116
|
-
self.crawler = crawler
|
|
117
|
-
self.settings = crawler.settings
|
|
118
|
-
self.logger = get_logger(self.__class__.__name__, self.settings.get('LOG_LEVEL'))
|
|
119
|
-
|
|
120
|
-
# 使用异步锁和初始化标志
|
|
121
|
-
self._pool_lock = asyncio.Lock()
|
|
122
|
-
self._pool_initialized = False
|
|
123
|
-
self.pool = None
|
|
124
|
-
self.table_name = (
|
|
125
|
-
self.settings.get('MYSQL_TABLE') or
|
|
126
|
-
getattr(crawler.spider, 'mysql_table', None) or
|
|
127
|
-
f"{crawler.spider.name}_items"
|
|
128
|
-
)
|
|
129
|
-
|
|
130
|
-
crawler.subscriber.subscribe(self.spider_closed, event='spider_closed')
|
|
131
|
-
|
|
132
|
-
@classmethod
|
|
133
|
-
def create_instance(cls, crawler):
|
|
134
|
-
return cls(crawler)
|
|
135
|
-
|
|
136
|
-
async def _init_pool(self):
|
|
137
|
-
"""延迟初始化连接池(线程安全)"""
|
|
138
|
-
if self._pool_initialized:
|
|
139
|
-
return
|
|
140
|
-
|
|
141
|
-
async with self._pool_lock:
|
|
142
|
-
if not self._pool_initialized:
|
|
143
|
-
try:
|
|
144
|
-
self.pool = await aiomysql.create_pool(
|
|
145
|
-
host=self.settings.get('MYSQL_HOST', 'localhost'),
|
|
146
|
-
port=self.settings.getint('MYSQL_PORT', 3306),
|
|
147
|
-
user=self.settings.get('MYSQL_USER', 'root'),
|
|
148
|
-
password=self.settings.get('MYSQL_PASSWORD', ''),
|
|
149
|
-
db=self.settings.get('MYSQL_DB', 'scrapy_db'),
|
|
150
|
-
minsize=self.settings.getint('MYSQL_POOL_MIN', 2),
|
|
151
|
-
maxsize=self.settings.getint('MYSQL_POOL_MAX', 5),
|
|
152
|
-
cursorclass=aiomysql.DictCursor,
|
|
153
|
-
autocommit=False
|
|
154
|
-
)
|
|
155
|
-
self._pool_initialized = True
|
|
156
|
-
self.logger.debug(f"aiomysql连接池已初始化(表: {self.table_name})")
|
|
157
|
-
except Exception as e:
|
|
158
|
-
self.logger.error(f"aiomysql连接池初始化失败: {e}")
|
|
159
|
-
raise
|
|
160
|
-
|
|
161
|
-
async def process_item(self, item, spider) -> Optional[dict]:
|
|
162
|
-
"""处理item方法"""
|
|
163
|
-
try:
|
|
164
|
-
await self._init_pool()
|
|
165
|
-
|
|
166
|
-
item_dict = dict(item)
|
|
167
|
-
sql = f"""
|
|
168
|
-
INSERT INTO `{self.table_name}`
|
|
169
|
-
({', '.join([f'`{k}`' for k in item_dict.keys()])})
|
|
170
|
-
VALUES ({', '.join(['%s'] * len(item_dict))})
|
|
171
|
-
"""
|
|
172
|
-
|
|
173
|
-
async with self.pool.acquire() as conn:
|
|
174
|
-
async with conn.cursor() as cursor:
|
|
175
|
-
try:
|
|
176
|
-
await cursor.execute(sql, list(item_dict.values()))
|
|
177
|
-
await conn.commit()
|
|
178
|
-
self.crawler.stats.inc_value('mysql/insert_success')
|
|
179
|
-
except aiomysql.Error as e:
|
|
180
|
-
await conn.rollback()
|
|
181
|
-
self.crawler.stats.inc_value('mysql/insert_failed')
|
|
182
|
-
raise ItemDiscard(f"MySQL错误: {e.args[1]}")
|
|
183
|
-
|
|
184
|
-
return item
|
|
185
|
-
|
|
186
|
-
except Exception as e:
|
|
187
|
-
self.logger.error(f"Pipeline处理异常: {e}")
|
|
188
|
-
raise ItemDiscard(f"处理失败: {e}")
|
|
189
|
-
|
|
190
|
-
async def spider_closed(self):
|
|
191
|
-
"""资源清理"""
|
|
192
|
-
if self.pool:
|
|
193
|
-
self.pool.close()
|
|
194
|
-
await self.pool.wait_closed()
|
|
195
|
-
self.logger.info("aiomysql连接池已释放")
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
import asyncio
|
|
3
|
+
import aiomysql
|
|
4
|
+
from typing import Optional
|
|
5
|
+
from asyncmy import create_pool
|
|
6
|
+
from crawlo.utils.log import get_logger
|
|
7
|
+
from crawlo.exceptions import ItemDiscard
|
|
8
|
+
from crawlo.utils.db_helper import make_insert_sql, logger
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
class AsyncmyMySQLPipeline:
|
|
12
|
+
def __init__(self, crawler):
|
|
13
|
+
self.crawler = crawler
|
|
14
|
+
self.settings = crawler.settings
|
|
15
|
+
self.logger = get_logger(self.__class__.__name__, self.settings.get('LOG_LEVEL'))
|
|
16
|
+
|
|
17
|
+
# 使用异步锁和初始化标志确保线程安全
|
|
18
|
+
self._pool_lock = asyncio.Lock()
|
|
19
|
+
self._pool_initialized = False
|
|
20
|
+
self.pool = None
|
|
21
|
+
self.table_name = (
|
|
22
|
+
self.settings.get('MYSQL_TABLE') or
|
|
23
|
+
getattr(crawler.spider, 'mysql_table', None) or
|
|
24
|
+
f"{crawler.spider.name}_items"
|
|
25
|
+
)
|
|
26
|
+
|
|
27
|
+
# 注册关闭事件
|
|
28
|
+
crawler.subscriber.subscribe(self.spider_closed, event='spider_closed')
|
|
29
|
+
|
|
30
|
+
@classmethod
|
|
31
|
+
def from_crawler(cls, crawler):
|
|
32
|
+
return cls(crawler)
|
|
33
|
+
|
|
34
|
+
async def _ensure_pool(self):
|
|
35
|
+
"""确保连接池已初始化(线程安全)"""
|
|
36
|
+
if self._pool_initialized:
|
|
37
|
+
return
|
|
38
|
+
|
|
39
|
+
async with self._pool_lock:
|
|
40
|
+
if not self._pool_initialized: # 双重检查避免竞争条件
|
|
41
|
+
try:
|
|
42
|
+
self.pool = await create_pool(
|
|
43
|
+
host=self.settings.get('MYSQL_HOST', 'localhost'),
|
|
44
|
+
port=self.settings.get_int('MYSQL_PORT', 3306),
|
|
45
|
+
user=self.settings.get('MYSQL_USER', 'root'),
|
|
46
|
+
password=self.settings.get('MYSQL_PASSWORD', ''),
|
|
47
|
+
db=self.settings.get('MYSQL_DB', 'scrapy_db'),
|
|
48
|
+
minsize=self.settings.get_int('MYSQL_POOL_MIN', 3),
|
|
49
|
+
maxsize=self.settings.get_int('MYSQL_POOL_MAX', 10),
|
|
50
|
+
echo=self.settings.get_bool('MYSQL_ECHO', False)
|
|
51
|
+
)
|
|
52
|
+
self._pool_initialized = True
|
|
53
|
+
self.logger.debug(f"MySQL连接池初始化完成(表: {self.table_name})")
|
|
54
|
+
except Exception as e:
|
|
55
|
+
self.logger.error(f"MySQL连接池初始化失败: {e}")
|
|
56
|
+
raise
|
|
57
|
+
|
|
58
|
+
async def process_item(self, item, spider, kwargs=None) -> Optional[dict]:
|
|
59
|
+
"""处理item的核心方法"""
|
|
60
|
+
kwargs = kwargs or {}
|
|
61
|
+
spider_name = getattr(spider, 'name', 'unknown') # 获取爬虫名称
|
|
62
|
+
try:
|
|
63
|
+
await self._ensure_pool()
|
|
64
|
+
item_dict = dict(item)
|
|
65
|
+
sql = make_insert_sql(table=self.table_name, data=item_dict, **kwargs)
|
|
66
|
+
|
|
67
|
+
rowcount = await self._execute_sql(sql=sql)
|
|
68
|
+
if rowcount > 1:
|
|
69
|
+
self.logger.info(
|
|
70
|
+
f"爬虫 {spider_name} 成功插入 {rowcount} 条记录到表 {self.table_name}"
|
|
71
|
+
)
|
|
72
|
+
elif rowcount == 1:
|
|
73
|
+
self.logger.debug(
|
|
74
|
+
f"爬虫 {spider_name} 成功插入单条记录到表 {self.table_name}"
|
|
75
|
+
)
|
|
76
|
+
else:
|
|
77
|
+
self.logger.warning(
|
|
78
|
+
f"爬虫 {spider_name}: SQL执行成功但未插入新记录 - {sql[:100]}..."
|
|
79
|
+
)
|
|
80
|
+
|
|
81
|
+
return item
|
|
82
|
+
|
|
83
|
+
except Exception as e:
|
|
84
|
+
self.logger.error(f"处理item时发生错误: {e}")
|
|
85
|
+
raise ItemDiscard(f"处理失败: {e}")
|
|
86
|
+
|
|
87
|
+
async def _execute_sql(self, sql: str, values: list = None) -> int:
|
|
88
|
+
"""执行SQL语句并处理结果"""
|
|
89
|
+
async with self.pool.acquire() as conn:
|
|
90
|
+
async with conn.cursor() as cursor:
|
|
91
|
+
try:
|
|
92
|
+
# 根据是否有参数值选择不同的执行方法
|
|
93
|
+
if values is not None:
|
|
94
|
+
rowcount = await cursor.execute(sql, values)
|
|
95
|
+
else:
|
|
96
|
+
rowcount = await cursor.execute(sql)
|
|
97
|
+
|
|
98
|
+
await conn.commit()
|
|
99
|
+
self.crawler.stats.inc_value('mysql/insert_success')
|
|
100
|
+
return rowcount
|
|
101
|
+
except Exception as e:
|
|
102
|
+
await conn.rollback()
|
|
103
|
+
self.crawler.stats.inc_value('mysql/insert_failed')
|
|
104
|
+
raise ItemDiscard(f"MySQL插入失败: {e}")
|
|
105
|
+
|
|
106
|
+
async def spider_closed(self):
|
|
107
|
+
"""关闭爬虫时清理资源"""
|
|
108
|
+
if self.pool:
|
|
109
|
+
self.pool.close()
|
|
110
|
+
await self.pool.wait_closed()
|
|
111
|
+
self.logger.info("MySQL连接池已关闭")
|
|
112
|
+
|
|
113
|
+
|
|
114
|
+
class AiomysqlMySQLPipeline:
|
|
115
|
+
def __init__(self, crawler):
|
|
116
|
+
self.crawler = crawler
|
|
117
|
+
self.settings = crawler.settings
|
|
118
|
+
self.logger = get_logger(self.__class__.__name__, self.settings.get('LOG_LEVEL'))
|
|
119
|
+
|
|
120
|
+
# 使用异步锁和初始化标志
|
|
121
|
+
self._pool_lock = asyncio.Lock()
|
|
122
|
+
self._pool_initialized = False
|
|
123
|
+
self.pool = None
|
|
124
|
+
self.table_name = (
|
|
125
|
+
self.settings.get('MYSQL_TABLE') or
|
|
126
|
+
getattr(crawler.spider, 'mysql_table', None) or
|
|
127
|
+
f"{crawler.spider.name}_items"
|
|
128
|
+
)
|
|
129
|
+
|
|
130
|
+
crawler.subscriber.subscribe(self.spider_closed, event='spider_closed')
|
|
131
|
+
|
|
132
|
+
@classmethod
|
|
133
|
+
def create_instance(cls, crawler):
|
|
134
|
+
return cls(crawler)
|
|
135
|
+
|
|
136
|
+
async def _init_pool(self):
|
|
137
|
+
"""延迟初始化连接池(线程安全)"""
|
|
138
|
+
if self._pool_initialized:
|
|
139
|
+
return
|
|
140
|
+
|
|
141
|
+
async with self._pool_lock:
|
|
142
|
+
if not self._pool_initialized:
|
|
143
|
+
try:
|
|
144
|
+
self.pool = await aiomysql.create_pool(
|
|
145
|
+
host=self.settings.get('MYSQL_HOST', 'localhost'),
|
|
146
|
+
port=self.settings.getint('MYSQL_PORT', 3306),
|
|
147
|
+
user=self.settings.get('MYSQL_USER', 'root'),
|
|
148
|
+
password=self.settings.get('MYSQL_PASSWORD', ''),
|
|
149
|
+
db=self.settings.get('MYSQL_DB', 'scrapy_db'),
|
|
150
|
+
minsize=self.settings.getint('MYSQL_POOL_MIN', 2),
|
|
151
|
+
maxsize=self.settings.getint('MYSQL_POOL_MAX', 5),
|
|
152
|
+
cursorclass=aiomysql.DictCursor,
|
|
153
|
+
autocommit=False
|
|
154
|
+
)
|
|
155
|
+
self._pool_initialized = True
|
|
156
|
+
self.logger.debug(f"aiomysql连接池已初始化(表: {self.table_name})")
|
|
157
|
+
except Exception as e:
|
|
158
|
+
self.logger.error(f"aiomysql连接池初始化失败: {e}")
|
|
159
|
+
raise
|
|
160
|
+
|
|
161
|
+
async def process_item(self, item, spider) -> Optional[dict]:
|
|
162
|
+
"""处理item方法"""
|
|
163
|
+
try:
|
|
164
|
+
await self._init_pool()
|
|
165
|
+
|
|
166
|
+
item_dict = dict(item)
|
|
167
|
+
sql = f"""
|
|
168
|
+
INSERT INTO `{self.table_name}`
|
|
169
|
+
({', '.join([f'`{k}`' for k in item_dict.keys()])})
|
|
170
|
+
VALUES ({', '.join(['%s'] * len(item_dict))})
|
|
171
|
+
"""
|
|
172
|
+
|
|
173
|
+
async with self.pool.acquire() as conn:
|
|
174
|
+
async with conn.cursor() as cursor:
|
|
175
|
+
try:
|
|
176
|
+
await cursor.execute(sql, list(item_dict.values()))
|
|
177
|
+
await conn.commit()
|
|
178
|
+
self.crawler.stats.inc_value('mysql/insert_success')
|
|
179
|
+
except aiomysql.Error as e:
|
|
180
|
+
await conn.rollback()
|
|
181
|
+
self.crawler.stats.inc_value('mysql/insert_failed')
|
|
182
|
+
raise ItemDiscard(f"MySQL错误: {e.args[1]}")
|
|
183
|
+
|
|
184
|
+
return item
|
|
185
|
+
|
|
186
|
+
except Exception as e:
|
|
187
|
+
self.logger.error(f"Pipeline处理异常: {e}")
|
|
188
|
+
raise ItemDiscard(f"处理失败: {e}")
|
|
189
|
+
|
|
190
|
+
async def spider_closed(self):
|
|
191
|
+
"""资源清理"""
|
|
192
|
+
if self.pool:
|
|
193
|
+
self.pool.close()
|
|
194
|
+
await self.pool.wait_closed()
|
|
195
|
+
self.logger.info("aiomysql连接池已释放")
|
|
@@ -1,56 +1,56 @@
|
|
|
1
|
-
#!/usr/bin/python
|
|
2
|
-
# -*- coding:UTF-8 -*-
|
|
3
|
-
from typing import List
|
|
4
|
-
from pprint import pformat
|
|
5
|
-
from asyncio import create_task
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
from crawlo.utils.log import get_logger
|
|
9
|
-
from crawlo.event import item_successful, item_discard
|
|
10
|
-
from crawlo.
|
|
11
|
-
from crawlo.exceptions import PipelineInitError, ItemDiscard, InvalidOutputError
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
class PipelineManager:
|
|
15
|
-
|
|
16
|
-
def __init__(self, crawler):
|
|
17
|
-
self.crawler = crawler
|
|
18
|
-
self.pipelines: List = []
|
|
19
|
-
self.methods: List = []
|
|
20
|
-
|
|
21
|
-
self.logger = get_logger(self.__class__.__name__, self.crawler.settings.get('LOG_LEVEL'))
|
|
22
|
-
pipelines = self.crawler.settings.get_list('PIPELINES')
|
|
23
|
-
self._add_pipelines(pipelines)
|
|
24
|
-
self._add_methods()
|
|
25
|
-
|
|
26
|
-
@classmethod
|
|
27
|
-
def from_crawler(cls, *args, **kwargs):
|
|
28
|
-
o = cls(*args, **kwargs)
|
|
29
|
-
return o
|
|
30
|
-
|
|
31
|
-
def _add_pipelines(self, pipelines):
|
|
32
|
-
for pipeline in pipelines:
|
|
33
|
-
pipeline_cls = load_class(pipeline)
|
|
34
|
-
if not hasattr(pipeline_cls, 'from_crawler'):
|
|
35
|
-
raise PipelineInitError(
|
|
36
|
-
f"Pipeline init failed, must inherit from `BasePipeline` or have a `create_instance` method"
|
|
37
|
-
)
|
|
38
|
-
self.pipelines.append(pipeline_cls.from_crawler(self.crawler))
|
|
39
|
-
if pipelines:
|
|
40
|
-
self.logger.info(f"enabled pipelines: \n {pformat(pipelines)}")
|
|
41
|
-
|
|
42
|
-
def _add_methods(self):
|
|
43
|
-
for pipeline in self.pipelines:
|
|
44
|
-
if hasattr(pipeline, 'process_item'):
|
|
45
|
-
self.methods.append(pipeline.process_item)
|
|
46
|
-
|
|
47
|
-
async def process_item(self, item):
|
|
48
|
-
try:
|
|
49
|
-
for method in self.methods:
|
|
50
|
-
item = await common_call(method, item, self.crawler.spider)
|
|
51
|
-
if item is None:
|
|
52
|
-
raise InvalidOutputError(f"{method.__qualname__} return None is not supported.")
|
|
53
|
-
except ItemDiscard as exc:
|
|
54
|
-
create_task(self.crawler.subscriber.notify(item_discard, item, exc, self.crawler.spider))
|
|
55
|
-
else:
|
|
56
|
-
create_task(self.crawler.subscriber.notify(item_successful, item, self.crawler.spider))
|
|
1
|
+
#!/usr/bin/python
|
|
2
|
+
# -*- coding:UTF-8 -*-
|
|
3
|
+
from typing import List
|
|
4
|
+
from pprint import pformat
|
|
5
|
+
from asyncio import create_task
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
from crawlo.utils.log import get_logger
|
|
9
|
+
from crawlo.event import item_successful, item_discard
|
|
10
|
+
from crawlo.project import load_class, common_call
|
|
11
|
+
from crawlo.exceptions import PipelineInitError, ItemDiscard, InvalidOutputError
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
class PipelineManager:
|
|
15
|
+
|
|
16
|
+
def __init__(self, crawler):
|
|
17
|
+
self.crawler = crawler
|
|
18
|
+
self.pipelines: List = []
|
|
19
|
+
self.methods: List = []
|
|
20
|
+
|
|
21
|
+
self.logger = get_logger(self.__class__.__name__, self.crawler.settings.get('LOG_LEVEL'))
|
|
22
|
+
pipelines = self.crawler.settings.get_list('PIPELINES')
|
|
23
|
+
self._add_pipelines(pipelines)
|
|
24
|
+
self._add_methods()
|
|
25
|
+
|
|
26
|
+
@classmethod
|
|
27
|
+
def from_crawler(cls, *args, **kwargs):
|
|
28
|
+
o = cls(*args, **kwargs)
|
|
29
|
+
return o
|
|
30
|
+
|
|
31
|
+
def _add_pipelines(self, pipelines):
|
|
32
|
+
for pipeline in pipelines:
|
|
33
|
+
pipeline_cls = load_class(pipeline)
|
|
34
|
+
if not hasattr(pipeline_cls, 'from_crawler'):
|
|
35
|
+
raise PipelineInitError(
|
|
36
|
+
f"Pipeline init failed, must inherit from `BasePipeline` or have a `create_instance` method"
|
|
37
|
+
)
|
|
38
|
+
self.pipelines.append(pipeline_cls.from_crawler(self.crawler))
|
|
39
|
+
if pipelines:
|
|
40
|
+
self.logger.info(f"enabled pipelines: \n {pformat(pipelines)}")
|
|
41
|
+
|
|
42
|
+
def _add_methods(self):
|
|
43
|
+
for pipeline in self.pipelines:
|
|
44
|
+
if hasattr(pipeline, 'process_item'):
|
|
45
|
+
self.methods.append(pipeline.process_item)
|
|
46
|
+
|
|
47
|
+
async def process_item(self, item):
|
|
48
|
+
try:
|
|
49
|
+
for method in self.methods:
|
|
50
|
+
item = await common_call(method, item, self.crawler.spider)
|
|
51
|
+
if item is None:
|
|
52
|
+
raise InvalidOutputError(f"{method.__qualname__} return None is not supported.")
|
|
53
|
+
except ItemDiscard as exc:
|
|
54
|
+
create_task(self.crawler.subscriber.notify(item_discard, item, exc, self.crawler.spider))
|
|
55
|
+
else:
|
|
56
|
+
create_task(self.crawler.subscriber.notify(item_successful, item, self.crawler.spider))
|
crawlo/project.py
ADDED
|
@@ -0,0 +1,153 @@
|
|
|
1
|
+
#!/usr/bin/python
|
|
2
|
+
# -*- coding: UTF-8 -*-
|
|
3
|
+
"""
|
|
4
|
+
Crawlo 项目初始化模块
|
|
5
|
+
|
|
6
|
+
负责:
|
|
7
|
+
1. 向上搜索项目根目录(通过 crawlo.cfg 或 settings.py)
|
|
8
|
+
2. 将项目根目录加入 sys.path
|
|
9
|
+
3. 加载 settings 模块
|
|
10
|
+
4. 返回 SettingManager 实例
|
|
11
|
+
"""
|
|
12
|
+
import os
|
|
13
|
+
import sys
|
|
14
|
+
import configparser
|
|
15
|
+
from importlib import import_module
|
|
16
|
+
from inspect import iscoroutinefunction
|
|
17
|
+
from typing import Callable, Optional, Tuple
|
|
18
|
+
|
|
19
|
+
from crawlo.utils.log import get_logger
|
|
20
|
+
from crawlo.settings.setting_manager import SettingManager
|
|
21
|
+
|
|
22
|
+
logger = get_logger(__name__)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
def _find_project_root(start_path: str = ".") -> Optional[str]:
|
|
26
|
+
"""
|
|
27
|
+
从指定路径向上查找项目根目录。
|
|
28
|
+
识别依据:
|
|
29
|
+
1. 存在 'crawlo.cfg'
|
|
30
|
+
2. 存在 '__init__.py' 和 'settings.py'(即 Python 包)
|
|
31
|
+
"""
|
|
32
|
+
path = os.path.abspath(start_path)
|
|
33
|
+
while True:
|
|
34
|
+
cfg_file = os.path.join(path, "crawlo.cfg")
|
|
35
|
+
if os.path.isfile(cfg_file):
|
|
36
|
+
logger.info(f"✅ 找到项目配置文件: {cfg_file}")
|
|
37
|
+
return path
|
|
38
|
+
|
|
39
|
+
settings_file = os.path.join(path, "settings.py")
|
|
40
|
+
init_file = os.path.join(path, "__init__.py")
|
|
41
|
+
if os.path.isfile(settings_file) and os.path.isfile(init_file):
|
|
42
|
+
logger.info(f"✅ 找到项目模块: {path}")
|
|
43
|
+
return path
|
|
44
|
+
|
|
45
|
+
parent = os.path.dirname(path)
|
|
46
|
+
if parent == path:
|
|
47
|
+
break
|
|
48
|
+
path = parent
|
|
49
|
+
|
|
50
|
+
logger.warning("❌ 未找到 Crawlo 项目根目录。请确保在包含 'crawlo.cfg' 或 'settings.py' 的目录运行。")
|
|
51
|
+
return None
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
def _get_settings_module_from_cfg(cfg_path: str) -> str:
|
|
55
|
+
"""从 crawlo.cfg 读取 settings 模块路径"""
|
|
56
|
+
config = configparser.ConfigParser()
|
|
57
|
+
try:
|
|
58
|
+
config.read(cfg_path, encoding="utf-8")
|
|
59
|
+
if config.has_section("settings") and config.has_option("settings", "default"):
|
|
60
|
+
module_path = config.get("settings", "default")
|
|
61
|
+
logger.info(f"📄 从 crawlo.cfg 加载 settings 模块: {module_path}")
|
|
62
|
+
return module_path
|
|
63
|
+
else:
|
|
64
|
+
raise RuntimeError(f"配置文件缺少 [settings] 或 default 选项: {cfg_path}")
|
|
65
|
+
except Exception as e:
|
|
66
|
+
raise RuntimeError(f"解析 crawlo.cfg 失败: {e}")
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
def get_settings(custom_settings: Optional[dict] = None) -> SettingManager:
|
|
70
|
+
"""
|
|
71
|
+
获取配置管理器实例(主入口函数)
|
|
72
|
+
|
|
73
|
+
Args:
|
|
74
|
+
custom_settings: 运行时自定义配置,会覆盖 settings.py
|
|
75
|
+
|
|
76
|
+
Returns:
|
|
77
|
+
SettingManager: 已加载配置的实例
|
|
78
|
+
"""
|
|
79
|
+
logger.info("🚀 正在初始化 Crawlo 项目配置...")
|
|
80
|
+
|
|
81
|
+
# 1. 查找项目根
|
|
82
|
+
project_root = _find_project_root()
|
|
83
|
+
if not project_root:
|
|
84
|
+
raise RuntimeError("未找到 Crawlo 项目,请检查项目结构")
|
|
85
|
+
|
|
86
|
+
# 2. 确定 settings 模块
|
|
87
|
+
settings_module_path = None
|
|
88
|
+
cfg_file = os.path.join(project_root, "crawlo.cfg")
|
|
89
|
+
|
|
90
|
+
if os.path.isfile(cfg_file):
|
|
91
|
+
settings_module_path = _get_settings_module_from_cfg(cfg_file)
|
|
92
|
+
else:
|
|
93
|
+
# 推断:项目目录名.settings
|
|
94
|
+
project_name = os.path.basename(project_root)
|
|
95
|
+
settings_module_path = f"{project_name}.settings"
|
|
96
|
+
logger.warning(f"⚠️ 未找到 crawlo.cfg,推断 settings 模块为: {settings_module_path}")
|
|
97
|
+
|
|
98
|
+
# 3. 注入 sys.path
|
|
99
|
+
project_root_str = os.path.abspath(project_root)
|
|
100
|
+
if project_root_str not in sys.path:
|
|
101
|
+
sys.path.insert(0, project_root_str)
|
|
102
|
+
logger.info(f"📁 项目根目录已加入 sys.path: {project_root_str}")
|
|
103
|
+
|
|
104
|
+
# 4. 加载 SettingManager
|
|
105
|
+
logger.info(f"⚙️ 正在加载配置模块: {settings_module_path}")
|
|
106
|
+
settings = SettingManager()
|
|
107
|
+
|
|
108
|
+
try:
|
|
109
|
+
settings.set_settings(settings_module_path)
|
|
110
|
+
logger.info("✅ settings 模块加载成功")
|
|
111
|
+
except Exception as e:
|
|
112
|
+
raise ImportError(f"加载 settings 模块失败 '{settings_module_path}': {e}")
|
|
113
|
+
|
|
114
|
+
# 5. 合并运行时配置
|
|
115
|
+
if custom_settings:
|
|
116
|
+
settings.update_attributes(custom_settings)
|
|
117
|
+
logger.info(f"🔧 已应用运行时自定义配置: {list(custom_settings.keys())}")
|
|
118
|
+
|
|
119
|
+
logger.info("🎉 Crawlo 项目配置初始化完成!")
|
|
120
|
+
return settings
|
|
121
|
+
|
|
122
|
+
|
|
123
|
+
def load_class(_path):
|
|
124
|
+
if not isinstance(_path, str):
|
|
125
|
+
if callable(_path):
|
|
126
|
+
return _path
|
|
127
|
+
else:
|
|
128
|
+
raise TypeError(f"args expect str or object, got {_path}")
|
|
129
|
+
|
|
130
|
+
module_name, class_name = _path.rsplit('.', 1)
|
|
131
|
+
module = import_module(module_name)
|
|
132
|
+
|
|
133
|
+
try:
|
|
134
|
+
cls = getattr(module, class_name)
|
|
135
|
+
except AttributeError:
|
|
136
|
+
raise NameError(f"Module {module_name!r} has no class named {class_name!r}")
|
|
137
|
+
return cls
|
|
138
|
+
|
|
139
|
+
|
|
140
|
+
def merge_settings(spider, settings):
|
|
141
|
+
spider_name = getattr(spider, 'name', 'UnknownSpider')
|
|
142
|
+
if hasattr(spider, 'custom_settings'):
|
|
143
|
+
custom_settings = getattr(spider, 'custom_settings')
|
|
144
|
+
settings.update_attributes(custom_settings)
|
|
145
|
+
else:
|
|
146
|
+
logger.debug(f"爬虫 '{spider_name}' 无 custom_settings,跳过合并") # 添加日志
|
|
147
|
+
|
|
148
|
+
|
|
149
|
+
async def common_call(func: Callable, *args, **kwargs):
|
|
150
|
+
if iscoroutinefunction(func):
|
|
151
|
+
return await func(*args, **kwargs)
|
|
152
|
+
else:
|
|
153
|
+
return func(*args, **kwargs)
|