crawlo 1.1.2__py3-none-any.whl → 1.1.3__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.

Files changed (113) hide show
  1. crawlo/__init__.py +34 -34
  2. crawlo/__version__.py +1 -1
  3. crawlo/cli.py +40 -40
  4. crawlo/commands/__init__.py +13 -13
  5. crawlo/commands/check.py +594 -594
  6. crawlo/commands/genspider.py +151 -151
  7. crawlo/commands/list.py +155 -155
  8. crawlo/commands/run.py +285 -285
  9. crawlo/commands/startproject.py +196 -196
  10. crawlo/commands/stats.py +188 -188
  11. crawlo/commands/utils.py +186 -186
  12. crawlo/config.py +279 -279
  13. crawlo/core/__init__.py +2 -2
  14. crawlo/core/engine.py +171 -171
  15. crawlo/core/enhanced_engine.py +189 -189
  16. crawlo/core/processor.py +40 -40
  17. crawlo/core/scheduler.py +166 -162
  18. crawlo/crawler.py +1027 -1027
  19. crawlo/downloader/__init__.py +242 -242
  20. crawlo/downloader/aiohttp_downloader.py +212 -212
  21. crawlo/downloader/cffi_downloader.py +251 -251
  22. crawlo/downloader/httpx_downloader.py +259 -257
  23. crawlo/event.py +11 -11
  24. crawlo/exceptions.py +82 -78
  25. crawlo/extension/__init__.py +31 -31
  26. crawlo/extension/log_interval.py +49 -49
  27. crawlo/extension/log_stats.py +44 -44
  28. crawlo/extension/logging_extension.py +34 -34
  29. crawlo/filters/__init__.py +154 -154
  30. crawlo/filters/aioredis_filter.py +242 -242
  31. crawlo/filters/memory_filter.py +269 -269
  32. crawlo/items/__init__.py +23 -23
  33. crawlo/items/base.py +21 -21
  34. crawlo/items/fields.py +53 -53
  35. crawlo/items/items.py +104 -104
  36. crawlo/middleware/__init__.py +21 -21
  37. crawlo/middleware/default_header.py +32 -32
  38. crawlo/middleware/download_delay.py +28 -28
  39. crawlo/middleware/middleware_manager.py +135 -135
  40. crawlo/middleware/proxy.py +248 -248
  41. crawlo/middleware/request_ignore.py +30 -30
  42. crawlo/middleware/response_code.py +18 -18
  43. crawlo/middleware/response_filter.py +26 -26
  44. crawlo/middleware/retry.py +125 -125
  45. crawlo/mode_manager.py +200 -200
  46. crawlo/network/__init__.py +21 -21
  47. crawlo/network/request.py +311 -311
  48. crawlo/network/response.py +271 -269
  49. crawlo/pipelines/__init__.py +22 -13
  50. crawlo/pipelines/bloom_dedup_pipeline.py +157 -0
  51. crawlo/pipelines/console_pipeline.py +39 -39
  52. crawlo/pipelines/csv_pipeline.py +316 -316
  53. crawlo/pipelines/database_dedup_pipeline.py +225 -0
  54. crawlo/pipelines/json_pipeline.py +218 -218
  55. crawlo/pipelines/memory_dedup_pipeline.py +116 -0
  56. crawlo/pipelines/mongo_pipeline.py +116 -116
  57. crawlo/pipelines/mysql_pipeline.py +195 -195
  58. crawlo/pipelines/pipeline_manager.py +56 -56
  59. crawlo/pipelines/redis_dedup_pipeline.py +163 -0
  60. crawlo/project.py +153 -153
  61. crawlo/queue/pqueue.py +37 -37
  62. crawlo/queue/queue_manager.py +307 -303
  63. crawlo/queue/redis_priority_queue.py +208 -191
  64. crawlo/settings/__init__.py +7 -7
  65. crawlo/settings/default_settings.py +245 -226
  66. crawlo/settings/setting_manager.py +99 -99
  67. crawlo/spider/__init__.py +639 -639
  68. crawlo/stats_collector.py +59 -59
  69. crawlo/subscriber.py +106 -106
  70. crawlo/task_manager.py +30 -30
  71. crawlo/templates/crawlo.cfg.tmpl +10 -10
  72. crawlo/templates/project/__init__.py.tmpl +3 -3
  73. crawlo/templates/project/items.py.tmpl +17 -17
  74. crawlo/templates/project/middlewares.py.tmpl +86 -86
  75. crawlo/templates/project/pipelines.py.tmpl +341 -335
  76. crawlo/templates/project/run.py.tmpl +251 -238
  77. crawlo/templates/project/settings.py.tmpl +250 -247
  78. crawlo/templates/project/spiders/__init__.py.tmpl +5 -5
  79. crawlo/templates/spider/spider.py.tmpl +177 -177
  80. crawlo/utils/__init__.py +7 -7
  81. crawlo/utils/controlled_spider_mixin.py +439 -335
  82. crawlo/utils/date_tools.py +233 -233
  83. crawlo/utils/db_helper.py +343 -343
  84. crawlo/utils/func_tools.py +82 -82
  85. crawlo/utils/large_scale_config.py +286 -286
  86. crawlo/utils/large_scale_helper.py +343 -343
  87. crawlo/utils/log.py +128 -128
  88. crawlo/utils/queue_helper.py +175 -175
  89. crawlo/utils/request.py +267 -267
  90. crawlo/utils/request_serializer.py +219 -219
  91. crawlo/utils/spider_loader.py +62 -62
  92. crawlo/utils/system.py +11 -11
  93. crawlo/utils/tools.py +4 -4
  94. crawlo/utils/url.py +39 -39
  95. {crawlo-1.1.2.dist-info → crawlo-1.1.3.dist-info}/METADATA +635 -567
  96. crawlo-1.1.3.dist-info/RECORD +113 -0
  97. examples/__init__.py +7 -7
  98. examples/controlled_spider_example.py +205 -0
  99. tests/__init__.py +7 -7
  100. tests/test_final_validation.py +153 -153
  101. tests/test_proxy_health_check.py +32 -32
  102. tests/test_proxy_middleware_integration.py +136 -136
  103. tests/test_proxy_providers.py +56 -56
  104. tests/test_proxy_stats.py +19 -19
  105. tests/test_proxy_strategies.py +59 -59
  106. tests/test_redis_config.py +28 -28
  107. tests/test_redis_queue.py +224 -224
  108. tests/test_request_serialization.py +70 -70
  109. tests/test_scheduler.py +241 -241
  110. crawlo-1.1.2.dist-info/RECORD +0 -108
  111. {crawlo-1.1.2.dist-info → crawlo-1.1.3.dist-info}/WHEEL +0 -0
  112. {crawlo-1.1.2.dist-info → crawlo-1.1.3.dist-info}/entry_points.txt +0 -0
  113. {crawlo-1.1.2.dist-info → crawlo-1.1.3.dist-info}/top_level.txt +0 -0
crawlo/project.py CHANGED
@@ -1,153 +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)
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)
crawlo/queue/pqueue.py CHANGED
@@ -1,37 +1,37 @@
1
- # -*- coding:UTF-8 -*-
2
- import json
3
- import sys
4
- import asyncio
5
- from asyncio import PriorityQueue
6
- from typing import Optional
7
-
8
-
9
- from crawlo import Request
10
-
11
-
12
- class SpiderPriorityQueue(PriorityQueue):
13
- """带超时功能的异步优先级队列"""
14
-
15
- def __init__(self, maxsize: int = 0) -> None:
16
- """初始化队列,maxsize为0表示无大小限制"""
17
- super().__init__(maxsize)
18
-
19
- async def get(self, timeout: float = 0.1) -> Optional[Request]:
20
- """
21
- 异步获取队列元素,带超时功能
22
-
23
- Args:
24
- timeout: 超时时间(秒),默认0.1秒
25
-
26
- Returns:
27
- 队列元素(优先级, 值)或None(超时)
28
- """
29
- try:
30
- # 根据Python版本选择超时实现方式
31
- if sys.version_info >= (3, 11):
32
- async with asyncio.timeout(timeout):
33
- return await super().get()
34
- else:
35
- return await asyncio.wait_for(super().get(), timeout=timeout)
36
- except asyncio.TimeoutError:
37
- return None
1
+ # -*- coding:UTF-8 -*-
2
+ import json
3
+ import sys
4
+ import asyncio
5
+ from asyncio import PriorityQueue
6
+ from typing import Optional
7
+
8
+
9
+ from crawlo import Request
10
+
11
+
12
+ class SpiderPriorityQueue(PriorityQueue):
13
+ """带超时功能的异步优先级队列"""
14
+
15
+ def __init__(self, maxsize: int = 0) -> None:
16
+ """初始化队列,maxsize为0表示无大小限制"""
17
+ super().__init__(maxsize)
18
+
19
+ async def get(self, timeout: float = 0.1) -> Optional[Request]:
20
+ """
21
+ 异步获取队列元素,带超时功能
22
+
23
+ Args:
24
+ timeout: 超时时间(秒),默认0.1秒
25
+
26
+ Returns:
27
+ 队列元素(优先级, 值)或None(超时)
28
+ """
29
+ try:
30
+ # 根据Python版本选择超时实现方式
31
+ if sys.version_info >= (3, 11):
32
+ async with asyncio.timeout(timeout):
33
+ return await super().get()
34
+ else:
35
+ return await asyncio.wait_for(super().get(), timeout=timeout)
36
+ except asyncio.TimeoutError:
37
+ return None