crawlo 1.2.7__py3-none-any.whl → 1.2.9__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 (221) hide show
  1. crawlo/__init__.py +63 -61
  2. crawlo/__version__.py +1 -1
  3. crawlo/cli.py +75 -75
  4. crawlo/commands/__init__.py +14 -14
  5. crawlo/commands/check.py +594 -594
  6. crawlo/commands/genspider.py +151 -151
  7. crawlo/commands/help.py +138 -138
  8. crawlo/commands/list.py +155 -155
  9. crawlo/commands/run.py +323 -323
  10. crawlo/commands/startproject.py +436 -436
  11. crawlo/commands/stats.py +187 -187
  12. crawlo/commands/utils.py +186 -186
  13. crawlo/config.py +312 -312
  14. crawlo/config_validator.py +277 -251
  15. crawlo/core/__init__.py +2 -2
  16. crawlo/core/engine.py +366 -365
  17. crawlo/core/processor.py +40 -40
  18. crawlo/core/scheduler.py +256 -251
  19. crawlo/crawler.py +1103 -1100
  20. crawlo/data/__init__.py +5 -5
  21. crawlo/data/user_agents.py +194 -107
  22. crawlo/downloader/__init__.py +273 -266
  23. crawlo/downloader/aiohttp_downloader.py +226 -228
  24. crawlo/downloader/cffi_downloader.py +245 -256
  25. crawlo/downloader/httpx_downloader.py +259 -259
  26. crawlo/downloader/hybrid_downloader.py +212 -212
  27. crawlo/downloader/playwright_downloader.py +402 -402
  28. crawlo/downloader/selenium_downloader.py +472 -472
  29. crawlo/event.py +11 -11
  30. crawlo/exceptions.py +81 -81
  31. crawlo/extension/__init__.py +39 -39
  32. crawlo/extension/health_check.py +141 -141
  33. crawlo/extension/log_interval.py +57 -57
  34. crawlo/extension/log_stats.py +81 -81
  35. crawlo/extension/logging_extension.py +43 -43
  36. crawlo/extension/memory_monitor.py +104 -104
  37. crawlo/extension/performance_profiler.py +133 -133
  38. crawlo/extension/request_recorder.py +107 -107
  39. crawlo/filters/__init__.py +154 -154
  40. crawlo/filters/aioredis_filter.py +234 -234
  41. crawlo/filters/memory_filter.py +269 -269
  42. crawlo/items/__init__.py +23 -23
  43. crawlo/items/base.py +21 -21
  44. crawlo/items/fields.py +52 -52
  45. crawlo/items/items.py +104 -104
  46. crawlo/middleware/__init__.py +21 -21
  47. crawlo/middleware/default_header.py +132 -132
  48. crawlo/middleware/download_delay.py +104 -104
  49. crawlo/middleware/middleware_manager.py +136 -136
  50. crawlo/middleware/offsite.py +114 -114
  51. crawlo/middleware/proxy.py +386 -368
  52. crawlo/middleware/request_ignore.py +86 -86
  53. crawlo/middleware/response_code.py +163 -163
  54. crawlo/middleware/response_filter.py +136 -136
  55. crawlo/middleware/retry.py +124 -124
  56. crawlo/middleware/simple_proxy.py +65 -0
  57. crawlo/mode_manager.py +211 -211
  58. crawlo/network/__init__.py +21 -21
  59. crawlo/network/request.py +379 -338
  60. crawlo/network/response.py +359 -359
  61. crawlo/pipelines/__init__.py +21 -21
  62. crawlo/pipelines/bloom_dedup_pipeline.py +157 -157
  63. crawlo/pipelines/console_pipeline.py +39 -39
  64. crawlo/pipelines/csv_pipeline.py +316 -316
  65. crawlo/pipelines/database_dedup_pipeline.py +223 -223
  66. crawlo/pipelines/json_pipeline.py +218 -218
  67. crawlo/pipelines/memory_dedup_pipeline.py +115 -115
  68. crawlo/pipelines/mongo_pipeline.py +131 -131
  69. crawlo/pipelines/mysql_pipeline.py +317 -317
  70. crawlo/pipelines/pipeline_manager.py +62 -62
  71. crawlo/pipelines/redis_dedup_pipeline.py +167 -167
  72. crawlo/project.py +290 -315
  73. crawlo/queue/pqueue.py +37 -37
  74. crawlo/queue/queue_manager.py +379 -378
  75. crawlo/queue/redis_priority_queue.py +306 -306
  76. crawlo/settings/__init__.py +7 -7
  77. crawlo/settings/default_settings.py +216 -220
  78. crawlo/settings/setting_manager.py +163 -122
  79. crawlo/spider/__init__.py +639 -639
  80. crawlo/stats_collector.py +59 -59
  81. crawlo/subscriber.py +129 -129
  82. crawlo/task_manager.py +30 -30
  83. crawlo/templates/crawlo.cfg.tmpl +10 -10
  84. crawlo/templates/project/__init__.py.tmpl +3 -3
  85. crawlo/templates/project/items.py.tmpl +17 -17
  86. crawlo/templates/project/middlewares.py.tmpl +118 -118
  87. crawlo/templates/project/pipelines.py.tmpl +96 -96
  88. crawlo/templates/project/settings.py.tmpl +261 -288
  89. crawlo/templates/project/settings_distributed.py.tmpl +174 -157
  90. crawlo/templates/project/settings_gentle.py.tmpl +95 -100
  91. crawlo/templates/project/settings_high_performance.py.tmpl +125 -134
  92. crawlo/templates/project/settings_minimal.py.tmpl +30 -0
  93. crawlo/templates/project/settings_simple.py.tmpl +96 -98
  94. crawlo/templates/project/spiders/__init__.py.tmpl +5 -5
  95. crawlo/templates/run.py.tmpl +47 -45
  96. crawlo/templates/spider/spider.py.tmpl +143 -143
  97. crawlo/tools/__init__.py +200 -182
  98. crawlo/tools/anti_crawler.py +268 -268
  99. crawlo/tools/authenticated_proxy.py +240 -240
  100. crawlo/{cleaners → tools}/data_formatter.py +225 -225
  101. crawlo/tools/data_validator.py +180 -180
  102. crawlo/tools/date_tools.py +290 -36
  103. crawlo/tools/distributed_coordinator.py +388 -387
  104. crawlo/{cleaners → tools}/encoding_converter.py +127 -126
  105. crawlo/tools/request_tools.py +83 -0
  106. crawlo/tools/retry_mechanism.py +224 -221
  107. crawlo/tools/scenario_adapter.py +262 -262
  108. crawlo/{cleaners → tools}/text_cleaner.py +232 -232
  109. crawlo/utils/__init__.py +35 -35
  110. crawlo/utils/batch_processor.py +259 -259
  111. crawlo/utils/controlled_spider_mixin.py +439 -439
  112. crawlo/utils/db_helper.py +343 -343
  113. crawlo/utils/enhanced_error_handler.py +356 -356
  114. crawlo/utils/env_config.py +142 -142
  115. crawlo/utils/error_handler.py +123 -123
  116. crawlo/utils/func_tools.py +82 -82
  117. crawlo/utils/large_scale_config.py +286 -286
  118. crawlo/utils/large_scale_helper.py +344 -344
  119. crawlo/utils/log.py +187 -128
  120. crawlo/utils/performance_monitor.py +285 -285
  121. crawlo/utils/queue_helper.py +175 -175
  122. crawlo/utils/redis_connection_pool.py +351 -351
  123. crawlo/utils/redis_key_validator.py +198 -198
  124. crawlo/utils/request.py +267 -267
  125. crawlo/utils/request_serializer.py +218 -218
  126. crawlo/utils/spider_loader.py +61 -61
  127. crawlo/utils/system.py +11 -11
  128. crawlo/utils/tools.py +4 -4
  129. crawlo/utils/url.py +39 -39
  130. {crawlo-1.2.7.dist-info → crawlo-1.2.9.dist-info}/METADATA +1011 -764
  131. crawlo-1.2.9.dist-info/RECORD +219 -0
  132. examples/__init__.py +7 -7
  133. tests/DOUBLE_CRAWLO_PREFIX_FIX_REPORT.md +81 -81
  134. tests/__init__.py +7 -7
  135. tests/advanced_tools_example.py +275 -275
  136. tests/authenticated_proxy_example.py +107 -237
  137. tests/cleaners_example.py +160 -160
  138. tests/config_validation_demo.py +143 -103
  139. tests/controlled_spider_example.py +205 -205
  140. tests/date_tools_example.py +180 -180
  141. tests/debug_pipelines.py +67 -0
  142. tests/dynamic_loading_example.py +523 -523
  143. tests/dynamic_loading_test.py +104 -104
  144. tests/env_config_example.py +133 -133
  145. tests/error_handling_example.py +171 -171
  146. tests/redis_key_validation_demo.py +130 -130
  147. tests/request_params_example.py +151 -0
  148. tests/response_improvements_example.py +144 -144
  149. tests/test_advanced_tools.py +148 -148
  150. tests/test_all_redis_key_configs.py +145 -145
  151. tests/test_authenticated_proxy.py +141 -141
  152. tests/test_cleaners.py +54 -54
  153. tests/test_comprehensive.py +146 -146
  154. tests/test_config_consistency.py +80 -80
  155. tests/test_config_merge.py +153 -0
  156. tests/test_config_validator.py +182 -193
  157. tests/test_crawlo_proxy_integration.py +109 -173
  158. tests/test_date_tools.py +123 -123
  159. tests/test_default_header_middleware.py +158 -158
  160. tests/test_distributed.py +65 -0
  161. tests/test_double_crawlo_fix.py +207 -207
  162. tests/test_double_crawlo_fix_simple.py +124 -124
  163. tests/test_download_delay_middleware.py +221 -221
  164. tests/test_downloader_proxy_compatibility.py +268 -268
  165. tests/test_dynamic_downloaders_proxy.py +124 -124
  166. tests/test_dynamic_proxy.py +92 -92
  167. tests/test_dynamic_proxy_config.py +146 -146
  168. tests/test_dynamic_proxy_real.py +109 -109
  169. tests/test_edge_cases.py +303 -303
  170. tests/test_enhanced_error_handler.py +270 -270
  171. tests/test_env_config.py +121 -121
  172. tests/test_error_handler_compatibility.py +112 -112
  173. tests/test_final_validation.py +153 -153
  174. tests/test_framework_env_usage.py +103 -103
  175. tests/test_integration.py +169 -357
  176. tests/test_item_dedup_redis_key.py +122 -122
  177. tests/test_mode_consistency.py +51 -51
  178. tests/test_offsite_middleware.py +221 -221
  179. tests/test_parsel.py +29 -29
  180. tests/test_performance.py +327 -327
  181. tests/test_proxy_api.py +264 -264
  182. tests/test_proxy_health_check.py +32 -32
  183. tests/test_proxy_middleware.py +121 -121
  184. tests/test_proxy_middleware_enhanced.py +216 -216
  185. tests/test_proxy_middleware_integration.py +136 -136
  186. tests/test_proxy_middleware_refactored.py +185 -0
  187. tests/test_proxy_providers.py +56 -56
  188. tests/test_proxy_stats.py +19 -19
  189. tests/test_proxy_strategies.py +59 -59
  190. tests/test_queue_manager_double_crawlo.py +173 -173
  191. tests/test_queue_manager_redis_key.py +176 -176
  192. tests/test_random_user_agent.py +73 -0
  193. tests/test_real_scenario_proxy.py +195 -195
  194. tests/test_redis_config.py +28 -28
  195. tests/test_redis_connection_pool.py +294 -294
  196. tests/test_redis_key_naming.py +181 -181
  197. tests/test_redis_key_validator.py +123 -123
  198. tests/test_redis_queue.py +224 -224
  199. tests/test_request_ignore_middleware.py +182 -182
  200. tests/test_request_params.py +112 -0
  201. tests/test_request_serialization.py +70 -70
  202. tests/test_response_code_middleware.py +349 -349
  203. tests/test_response_filter_middleware.py +427 -427
  204. tests/test_response_improvements.py +152 -152
  205. tests/test_retry_middleware.py +241 -241
  206. tests/test_scheduler.py +252 -252
  207. tests/test_scheduler_config_update.py +133 -133
  208. tests/test_simple_response.py +61 -61
  209. tests/test_telecom_spider_redis_key.py +205 -205
  210. tests/test_template_content.py +87 -87
  211. tests/test_template_redis_key.py +134 -134
  212. tests/test_tools.py +159 -153
  213. tests/test_user_agents.py +97 -0
  214. tests/tools_example.py +260 -257
  215. tests/verify_distributed.py +117 -0
  216. crawlo/cleaners/__init__.py +0 -61
  217. crawlo/utils/date_tools.py +0 -290
  218. crawlo-1.2.7.dist-info/RECORD +0 -209
  219. {crawlo-1.2.7.dist-info → crawlo-1.2.9.dist-info}/WHEEL +0 -0
  220. {crawlo-1.2.7.dist-info → crawlo-1.2.9.dist-info}/entry_points.txt +0 -0
  221. {crawlo-1.2.7.dist-info → crawlo-1.2.9.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,117 @@
1
+ #!/usr/bin/env python
2
+ # -*- coding: UTF-8 -*-
3
+ """
4
+ 分布式采集功能验证脚本
5
+ 验证Crawlo框架的分布式采集功能是否正常工作
6
+ """
7
+
8
+ import redis
9
+ import json
10
+ import os
11
+ import sys
12
+
13
+ # 添加项目根目录到 Python 路径
14
+ project_root = os.path.dirname(os.path.abspath(__file__))
15
+ sys.path.insert(0, project_root)
16
+
17
+
18
+ def verify_distributed_functionality():
19
+ """验证分布式采集功能"""
20
+ print("=== Crawlo分布式采集功能验证 ===\n")
21
+
22
+ # 1. 连接Redis
23
+ try:
24
+ r = redis.Redis(host='localhost', port=6379, db=2, decode_responses=False)
25
+ r.ping()
26
+ print("✓ Redis连接成功")
27
+ except Exception as e:
28
+ print(f"✗ Redis连接失败: {e}")
29
+ return False
30
+
31
+ # 2. 检查项目配置
32
+ try:
33
+ with open('../examples/ofweek_distributed/crawlo.cfg', 'r') as f:
34
+ config_content = f.read()
35
+ if 'ofweek_distributed.settings' in config_content:
36
+ print("✓ 项目配置文件正确")
37
+ else:
38
+ print("✗ 项目配置文件不正确")
39
+ return False
40
+ except Exception as e:
41
+ print(f"✗ 无法读取配置文件: {e}")
42
+ return False
43
+
44
+ # 3. 检查设置文件
45
+ try:
46
+ with open('../examples/ofweek_distributed/ofweek_distributed/settings.py', 'r') as f:
47
+ settings_content = f.read()
48
+ checks = [
49
+ ('RUN_MODE = \'distributed\'', '运行模式设置为分布式'),
50
+ ('QUEUE_TYPE = \'redis\'', '队列类型设置为Redis'),
51
+ ('FILTER_CLASS = \'crawlo.filters.aioredis_filter.AioRedisFilter\'', '过滤器设置为Redis过滤器'),
52
+ ('REDIS_HOST = \'127.0.0.1\'', 'Redis主机配置正确'),
53
+ ]
54
+
55
+ all_passed = True
56
+ for check, description in checks:
57
+ if check in settings_content:
58
+ print(f"✓ {description}")
59
+ else:
60
+ print(f"✗ {description}")
61
+ all_passed = False
62
+
63
+ if not all_passed:
64
+ return False
65
+ except Exception as e:
66
+ print(f"✗ 无法读取设置文件: {e}")
67
+ return False
68
+
69
+ # 4. 检查Redis中的数据
70
+ try:
71
+ # 检查请求去重指纹
72
+ request_fingerprints = r.scard("crawlo:ofweek_distributed:filter:fingerprint")
73
+ print(f"✓ 请求去重指纹数量: {request_fingerprints}")
74
+
75
+ # 检查数据项去重指纹
76
+ item_fingerprints = r.scard("crawlo:ofweek_distributed:item:fingerprint")
77
+ print(f"✓ 数据项去重指纹数量: {item_fingerprints}")
78
+
79
+ # 检查请求队列
80
+ queue_size = r.zcard("crawlo:ofweek_distributed:queue:requests")
81
+ print(f"✓ 请求队列大小: {queue_size}")
82
+
83
+ # 验证数据是否存在
84
+ if request_fingerprints > 0 and item_fingerprints > 0:
85
+ print("✓ Redis中存在分布式采集数据")
86
+ else:
87
+ print("⚠ Redis中分布式采集数据为空")
88
+
89
+ except Exception as e:
90
+ print(f"✗ Redis数据检查失败: {e}")
91
+ return False
92
+
93
+ # 5. 检查输出文件
94
+ try:
95
+ import glob
96
+ json_files = glob.glob("output/*.json")
97
+ if json_files:
98
+ latest_file = max(json_files, key=os.path.getctime)
99
+ file_size = os.path.getsize(latest_file)
100
+ print(f"✓ 输出文件存在: {latest_file} ({file_size} bytes)")
101
+ else:
102
+ print("⚠ 未找到输出文件")
103
+ except Exception as e:
104
+ print(f"✗ 输出文件检查失败: {e}")
105
+
106
+ print("\n=== 验证结果 ===")
107
+ print("✓ Crawlo分布式采集功能正常工作!")
108
+ print(" - Redis连接正常")
109
+ print(" - 分布式配置正确")
110
+ print(" - Redis数据存储正常")
111
+ print(" - 采集任务执行正常")
112
+
113
+ return True
114
+
115
+
116
+ if __name__ == '__main__':
117
+ verify_distributed_functionality()
@@ -1,61 +0,0 @@
1
- #!/usr/bin/python
2
- # -*- coding: UTF-8 -*-
3
- """
4
- # @Time : 2025-09-10 22:00
5
- # @Author : crawl-coder
6
- # @Desc : 数据清洗工具包
7
- """
8
-
9
- from .text_cleaner import (
10
- TextCleaner,
11
- remove_html_tags,
12
- decode_html_entities,
13
- remove_extra_whitespace,
14
- remove_special_chars,
15
- normalize_unicode,
16
- clean_text,
17
- extract_numbers,
18
- extract_emails,
19
- extract_urls
20
- )
21
-
22
- from .data_formatter import (
23
- DataFormatter,
24
- format_number,
25
- format_currency,
26
- format_percentage,
27
- format_phone_number,
28
- format_chinese_id_card,
29
- capitalize_words
30
- )
31
-
32
- from .encoding_converter import (
33
- EncodingConverter,
34
- detect_encoding,
35
- to_utf8,
36
- convert_encoding
37
- )
38
-
39
- __all__ = [
40
- "TextCleaner",
41
- "DataFormatter",
42
- "EncodingConverter",
43
- "remove_html_tags",
44
- "decode_html_entities",
45
- "remove_extra_whitespace",
46
- "remove_special_chars",
47
- "normalize_unicode",
48
- "clean_text",
49
- "extract_numbers",
50
- "extract_emails",
51
- "extract_urls",
52
- "format_number",
53
- "format_currency",
54
- "format_percentage",
55
- "format_phone_number",
56
- "format_chinese_id_card",
57
- "capitalize_words",
58
- "detect_encoding",
59
- "to_utf8",
60
- "convert_encoding"
61
- ]
@@ -1,290 +0,0 @@
1
- #!/usr/bin/python
2
- # -*- coding: UTF-8 -*-
3
- """
4
- # @Time : 2025-05-17 10:20
5
- # @Author : crawl-coder
6
- # @Desc : 智能时间工具库(专为爬虫场景设计)
7
- """
8
- import dateparser
9
- from typing import Optional, Union, Literal
10
- from datetime import datetime, timedelta, timezone
11
- from dateutil.relativedelta import relativedelta
12
- import pytz
13
- from pytz import timezone as pytz_timezone
14
-
15
- # 支持的单位类型
16
- TimeUnit = Literal["seconds", "minutes", "hours", "days"]
17
- # 时间输入类型
18
- TimeType = Union[str, datetime]
19
- # 时区类型
20
- TimezoneType = Union[str, timezone, pytz_timezone]
21
-
22
- # 常见时间格式列表(作为 dateparser 的后备方案)
23
- COMMON_FORMATS = [
24
- "%Y-%m-%d %H:%M:%S",
25
- "%Y/%m/%d %H:%M:%S",
26
- "%d-%m-%Y %H:%M:%S",
27
- "%d/%m/%Y %H:%M:%S",
28
- "%Y-%m-%d",
29
- "%Y/%m/%d",
30
- "%d-%m-%Y",
31
- "%d/%m/%Y",
32
- "%b %d, %Y",
33
- "%B %d, %Y",
34
- "%Y年%m月%d日",
35
- "%Y年%m月%d日 %H时%M分%S秒",
36
- "%a %b %d %H:%M:%S %Y",
37
- "%a, %d %b %Y %H:%M:%S",
38
- "%Y-%m-%dT%H:%M:%S.%f",
39
- "%Y-%m-%dT%H:%M:%S",
40
- ]
41
-
42
-
43
- class TimeUtils:
44
- """
45
- 时间处理工具类,提供日期解析、格式化、计算等一站式服务。
46
- 特别适用于爬虫中处理多语言、多格式、相对时间的场景。
47
- """
48
-
49
- @staticmethod
50
- def _try_strptime(time_str: str) -> Optional[datetime]:
51
- """尝试使用预定义格式解析,作为 dateparser 的后备"""
52
- for fmt in COMMON_FORMATS:
53
- try:
54
- return datetime.strptime(time_str.strip(), fmt)
55
- except ValueError:
56
- continue
57
- return None
58
-
59
- @classmethod
60
- def parse(cls, time_input: TimeType, *, default: Optional[datetime] = None) -> Optional[datetime]:
61
- """
62
- 智能解析时间输入(字符串或 datetime)。
63
-
64
- :param time_input: 时间字符串(支持各种语言、格式、相对时间)或 datetime 对象
65
- :param default: 解析失败时返回的默认值
66
- :return: 解析成功返回 datetime,失败返回 default
67
- """
68
- if isinstance(time_input, datetime):
69
- return time_input
70
-
71
- if not isinstance(time_input, str) or not time_input.strip():
72
- return default
73
-
74
- # 1. 优先使用 dateparser(支持多语言和相对时间)
75
- try:
76
- parsed = dateparser.parse(time_input.strip())
77
- if parsed:
78
- return parsed
79
- except Exception:
80
- pass # 忽略异常,尝试后备方案
81
-
82
- # 2. 尝试使用常见格式解析
83
- try:
84
- parsed = cls._try_strptime(time_input)
85
- if parsed:
86
- return parsed
87
- except Exception:
88
- pass
89
-
90
- return default
91
-
92
- @classmethod
93
- def format(cls, dt: TimeType, fmt: str = "%Y-%m-%d %H:%M:%S") -> Optional[str]:
94
- """
95
- 格式化时间。
96
-
97
- :param dt: datetime 对象或可解析的字符串
98
- :param fmt: 输出格式
99
- :return: 格式化后的字符串,失败返回 None
100
- """
101
- if isinstance(dt, str):
102
- dt = cls.parse(dt)
103
- if dt is None:
104
- return None
105
- try:
106
- return dt.strftime(fmt)
107
- except Exception:
108
- return None
109
-
110
- @classmethod
111
- def to_timestamp(cls, dt: TimeType) -> Optional[float]:
112
- """转换为时间戳(秒级)"""
113
- if isinstance(dt, str):
114
- dt = cls.parse(dt)
115
- if dt is None:
116
- return None
117
- try:
118
- return dt.timestamp()
119
- except Exception:
120
- return None
121
-
122
- @classmethod
123
- def from_timestamp(cls, ts: float) -> Optional[datetime]:
124
- """从时间戳创建 datetime"""
125
- try:
126
- return datetime.fromtimestamp(ts)
127
- except Exception:
128
- return None
129
-
130
- @classmethod
131
- def diff(cls, start: TimeType, end: TimeType, unit: TimeUnit = "seconds") -> Optional[int]:
132
- """
133
- 计算两个时间的差值(自动解析字符串)。
134
-
135
- :param start: 起始时间
136
- :param end: 结束时间
137
- :param unit: 单位 ('seconds', 'minutes', 'hours', 'days')
138
- :return: 差值(绝对值),失败返回 None
139
- """
140
- start_dt = cls.parse(start)
141
- end_dt = cls.parse(end)
142
- if not start_dt or not end_dt:
143
- return None
144
-
145
- delta = abs((end_dt - start_dt).total_seconds())
146
-
147
- unit_map = {
148
- "seconds": 1,
149
- "minutes": 60,
150
- "hours": 3600,
151
- "days": 86400,
152
- }
153
- return int(delta // unit_map.get(unit, 1))
154
-
155
- @classmethod
156
- def add_days(cls, dt: TimeType, days: int) -> Optional[datetime]:
157
- """日期加减(天)"""
158
- dt = cls.parse(dt)
159
- if dt is None:
160
- return None
161
- return dt + timedelta(days=days)
162
-
163
- @classmethod
164
- def add_months(cls, dt: TimeType, months: int) -> Optional[datetime]:
165
- """日期加减(月)"""
166
- dt = cls.parse(dt)
167
- if dt is None:
168
- return None
169
- return dt + relativedelta(months=months)
170
-
171
- @classmethod
172
- def days_between(cls, dt1: TimeType, dt2: TimeType) -> Optional[int]:
173
- """计算两个日期之间的天数差"""
174
- return cls.diff(dt1, dt2, "days")
175
-
176
- @classmethod
177
- def is_leap_year(cls, year: int) -> bool:
178
- """判断是否是闰年"""
179
- return (year % 4 == 0 and year % 100 != 0) or (year % 400 == 0)
180
-
181
- @classmethod
182
- def now(cls, fmt: Optional[str] = None) -> Union[datetime, str]:
183
- """
184
- 获取当前时间。
185
-
186
- :param fmt: 如果提供,则返回格式化字符串;否则返回 datetime 对象。
187
- :return: datetime 或 str
188
- """
189
- dt = datetime.now()
190
- if fmt is not None:
191
- return dt.strftime(fmt)
192
- return dt
193
-
194
- @classmethod
195
- def iso_format(cls, dt: TimeType) -> Optional[str]:
196
- """返回 ISO 8601 格式字符串"""
197
- dt = cls.parse(dt)
198
- if dt is None:
199
- return None
200
- return dt.isoformat()
201
-
202
- @classmethod
203
- def to_timezone(cls, dt: TimeType, tz: TimezoneType) -> Optional[datetime]:
204
- """将时间转换为指定时区"""
205
- dt = cls.parse(dt)
206
- if dt is None:
207
- return None
208
-
209
- try:
210
- if isinstance(tz, str):
211
- tz = pytz_timezone(tz)
212
- return dt.astimezone(tz)
213
- except Exception:
214
- return None
215
-
216
- @classmethod
217
- def to_utc(cls, dt: TimeType) -> Optional[datetime]:
218
- """将时间转换为 UTC 时区"""
219
- return cls.to_timezone(dt, pytz.UTC)
220
-
221
- @classmethod
222
- def to_local(cls, dt: TimeType) -> Optional[datetime]:
223
- """将时间转换为本地时区"""
224
- return cls.to_timezone(dt, pytz.timezone("Asia/Shanghai"))
225
-
226
- @classmethod
227
- def from_timestamp_with_tz(cls, ts: float, tz: TimezoneType = None) -> Optional[datetime]:
228
- """从时间戳创建 datetime,并可选择指定时区"""
229
- try:
230
- dt = datetime.fromtimestamp(ts)
231
- if tz:
232
- if isinstance(tz, str):
233
- tz = pytz_timezone(tz)
234
- dt = dt.replace(tzinfo=tz)
235
- return dt
236
- except Exception:
237
- return None
238
-
239
-
240
- # =======================对外接口=======================
241
-
242
- def parse_time(time_input: TimeType, default: Optional[datetime] = None) -> Optional[datetime]:
243
- """解析时间字符串或对象"""
244
- return TimeUtils.parse(time_input, default=default)
245
-
246
-
247
- def format_time(dt: TimeType, fmt: str = "%Y-%m-%d %H:%M:%S") -> Optional[str]:
248
- """格式化时间"""
249
- return TimeUtils.format(dt, fmt)
250
-
251
-
252
- def time_diff(start: TimeType, end: TimeType, unit: TimeUnit = "seconds") -> Optional[int]:
253
- """计算时间差"""
254
- return TimeUtils.diff(start, end, unit)
255
-
256
-
257
- def to_timestamp(dt: TimeType) -> Optional[float]:
258
- """转时间戳"""
259
- return TimeUtils.to_timestamp(dt)
260
-
261
-
262
- def to_datetime(ts: float) -> Optional[datetime]:
263
- """从时间戳转 datetime"""
264
- return TimeUtils.from_timestamp(ts)
265
-
266
-
267
- def now(fmt: Optional[str] = None) -> Union[datetime, str]:
268
- """获取当前时间"""
269
- return TimeUtils.now(fmt)
270
-
271
- def to_timezone(dt: TimeType, tz: TimezoneType) -> Optional[datetime]:
272
- """将时间转换为指定时区"""
273
- return TimeUtils.to_timezone(dt, tz)
274
-
275
- def to_utc(dt: TimeType) -> Optional[datetime]:
276
- """将时间转换为 UTC 时区"""
277
- return TimeUtils.to_utc(dt)
278
-
279
- def to_local(dt: TimeType) -> Optional[datetime]:
280
- """将时间转换为本地时区"""
281
- return TimeUtils.to_local(dt)
282
-
283
- def from_timestamp_with_tz(ts: float, tz: TimezoneType = None) -> Optional[datetime]:
284
- """从时间戳创建 datetime,并可选择指定时区"""
285
- return TimeUtils.from_timestamp_with_tz(ts, tz)
286
-
287
-
288
- if __name__ == '__main__':
289
- get_current_time = now(fmt="%Y-%m-%d %H:%M:%S")
290
- print(get_current_time)
@@ -1,209 +0,0 @@
1
- crawlo/__init__.py,sha256=jSOsZbDJ_Q5wZV8onSXx5LgNM7Z1q3zCROGdImBDr2I,1373
2
- crawlo/__version__.py,sha256=8fXL0hX3SI-tAETRl-m4ljrkccNA-ZNsta0Mg8Fv7aI,21
3
- crawlo/cli.py,sha256=AQnAB5NMI-Ic1VPw_Jjng8L4AI4-wMozOwzE6CfXkZU,2402
4
- crawlo/config.py,sha256=pQm5q4hFFW8DMpQzvlhrHKvZIzhbrDVa0PMQPbk6ybg,9818
5
- crawlo/config_validator.py,sha256=GsIgHM8LagVN_l5zWv8twXt7yiDyE6anH81Zjeaa7rQ,10134
6
- crawlo/crawler.py,sha256=avuaHyTbbUqpQfdodKvZ514h4o5MkE3P3n4dLBJ0WUI,41129
7
- crawlo/event.py,sha256=ZhoPW5CglCEuZNFEwviSCBIw0pT5O6jT98bqYrDFd3E,324
8
- crawlo/exceptions.py,sha256=YVIDnC1bKSMv3fXH_6tinWMuD9HmKHIaUfO4_fkX5sY,1247
9
- crawlo/mode_manager.py,sha256=T34jxDwNSM3Zmpa-IB-nOxb8HzRROTTYpkmnzxEYrrk,7728
10
- crawlo/project.py,sha256=bYuAxsxNb-wxELuLDb1RoKd1yWQuTtJFab-mp95_t94,12356
11
- crawlo/stats_collector.py,sha256=v4jC9BAe-23w93hWzbeMCCgQ9VuFPyxw5JV9ItbGH8w,1636
12
- crawlo/subscriber.py,sha256=h8fx69NJZeWem0ZkCmfHAi2kgfDGFObHpwN0aGNUM6Y,5115
13
- crawlo/task_manager.py,sha256=PScfEB03306Txa0l38AeQ_0WVhKzeWOFyT3bnrkbHW0,849
14
- crawlo/cleaners/__init__.py,sha256=lxL-ZWDKW-DdobdgKUQ27wNmBiUhGnD0CVG6HWkX3_o,1261
15
- crawlo/cleaners/data_formatter.py,sha256=iBDHpZBZvn9O7pLkTQilE1TzYJQEc3z3f6HXoVus0f0,7808
16
- crawlo/cleaners/encoding_converter.py,sha256=G3khLlk0uBeTwIutsWxVUeSuyc1GMC1BDNJDwsU9ryg,4238
17
- crawlo/cleaners/text_cleaner.py,sha256=16e6WqIIb9qANMiK-vCEl4TvgkId19Aa2W1NMLU-jFQ,6707
18
- crawlo/commands/__init__.py,sha256=orvY6wLOBwGUEJKeF3h_T1fxj8AaQLjngBDd-3xKOE4,392
19
- crawlo/commands/check.py,sha256=c2_paopV6S8PXSQoyZWyecYpKjuNe_-QXRs6jSouIo0,23443
20
- crawlo/commands/genspider.py,sha256=MccEP-JGeY4oafpN9yfKa87hZQIK0cee75QgK3a-kxM,5142
21
- crawlo/commands/help.py,sha256=ZtmpcLQOjRMYfsEAPgJjjF03d9dgY4VG4gS9gEszjYU,5133
22
- crawlo/commands/list.py,sha256=8gzQGbSzZ3HVciQZNUHEcJSRZ0ldoPTtXD4YPLMZluQ,5927
23
- crawlo/commands/run.py,sha256=iFpoBkaAxF4xAhaSAizntpVjf4vheB-d0m6Yc1Csz9E,12559
24
- crawlo/commands/startproject.py,sha256=1Y9bKR9G98hht2RtIZvSdSYIjIMkKAPIadfNXDZ_PjA,16696
25
- crawlo/commands/stats.py,sha256=_V5dtoYnTY76Zrt3-zolcfwgJv3v7yjfJuQ0B7t4Aj4,6315
26
- crawlo/commands/utils.py,sha256=6OVdbP8u7e3DF8daNs7KDA9zBEz6vX0MgGWOiBIZoW8,5273
27
- crawlo/core/__init__.py,sha256=JYSAn15r8yWgRK_Nc69t_8tZCyb70MiPZKssA8wrYz0,43
28
- crawlo/core/engine.py,sha256=V5n2GQQfUnRJss_u3GIZtAfW5TySRWiGXgcqO3wsG-A,14682
29
- crawlo/core/processor.py,sha256=oHLs-cno0bJGTNc9NGD2S7_2-grI3ruvggO0SY2mf3Q,1180
30
- crawlo/core/scheduler.py,sha256=HBY48NSochkzzT5z9RmmNx0swOsILm33lHqRtGGqsYU,12549
31
- crawlo/data/__init__.py,sha256=UPqgioMdu3imSUmpLWzVlpvoBnEfaPSAT-crCcWd7iw,121
32
- crawlo/data/user_agents.py,sha256=uTASHTJJ-EZJ_A0W3WKo0KRZcRklOH9codkGTr8Qiiw,4805
33
- crawlo/downloader/__init__.py,sha256=8-r4_Wc_X64FJtKzNQamwsZsc428creKeFo19VxF33o,8565
34
- crawlo/downloader/aiohttp_downloader.py,sha256=ibyBCnjPdRJD73xOTgaDfenUTWNU-he9J0KzzHq4qrw,9064
35
- crawlo/downloader/cffi_downloader.py,sha256=U2CMYQ8ZyKMQNNPvyI2USqI-Dclq2d7ZRgp3LxLjTFs,10966
36
- crawlo/downloader/httpx_downloader.py,sha256=MpgDeIdGqNsiSKLOEDBnr5Z0eUbhHnqVEmAuoIfJmFU,12296
37
- crawlo/downloader/hybrid_downloader.py,sha256=dNnFeegRnyLaOxTWI6XrWKqqVPx80AZBZNgmrcKRVBM,8240
38
- crawlo/downloader/playwright_downloader.py,sha256=L-TVzG7cYfuBlqW0XSZuz5C_r9fpJrmYNcoQ-cDEna4,16663
39
- crawlo/downloader/selenium_downloader.py,sha256=P8GuhEw6OYVeN3oeksuBLpUJCELXiu0mAR23X6IIOAA,21508
40
- crawlo/extension/__init__.py,sha256=jOdyLjtf-JqEKN67x2haIhtMhy_5bGSMbdFIdsERU7o,1633
41
- crawlo/extension/health_check.py,sha256=stDpyP4gOzAdbBlPbSf0rge0QounAhF8CtrGq5fa_7c,5657
42
- crawlo/extension/log_interval.py,sha256=2R3XVdM1grDN8wh9TTHRB_WmQypCr5YSGvESNDnS16s,2474
43
- crawlo/extension/log_stats.py,sha256=5CpcTHj0lCtFvhBTI3pG41gkiL_hPtv5FWY87L6EVjM,2989
44
- crawlo/extension/logging_extension.py,sha256=euecjvj71aK6dElMzYCuNXiNb9jO8qQmL5QspQ1xoz8,1669
45
- crawlo/extension/memory_monitor.py,sha256=fClPchpCkVjcIiU0AJHCKDd7HEiz5B4KqNqKTRZ2hcU,4394
46
- crawlo/extension/performance_profiler.py,sha256=BjWD3LOb4VwjQJQvQtWNg7GluEwFquI1CztNfgMzy3c,5032
47
- crawlo/extension/request_recorder.py,sha256=KA_RmcfscDxP5wPdolO76yKfRj-1jmHhG3jkVGO1pbc,4181
48
- crawlo/filters/__init__.py,sha256=lX-QOCDTiTRFoiK1qrZ5HABo7LgZfcxScx_lELYEvJk,4395
49
- crawlo/filters/aioredis_filter.py,sha256=aB1GPCALikvPUWdoACaGsvmnkzseKXxpR7l3gh1glsY,8479
50
- crawlo/filters/memory_filter.py,sha256=FzGJPhVKfZ8P23kP6de-VSfE8oVMjjpfWzKJIdiMtZU,9529
51
- crawlo/items/__init__.py,sha256=rFpx1qFBo0Ik7bSdnXC8EVTJUOQdoJYGVdhYjaH00nk,409
52
- crawlo/items/base.py,sha256=hwGJEdFWOdaZfalFX8umRkh_HUWLEbCjvq4j70fplMQ,598
53
- crawlo/items/fields.py,sha256=l-DIwK6CCpdzNvf6ELz7Ckc7YCghZD9UCXA8vhNn2UE,1852
54
- crawlo/items/items.py,sha256=OmVEvMmgofMU95GkaiWkfNQ2fjsH2fY9sw3SKcmUhLs,3478
55
- crawlo/middleware/__init__.py,sha256=PSwpRLdBUopaQzBp1S0zK_TZbrRagQ4yzvgyLy4tBk8,570
56
- crawlo/middleware/default_header.py,sha256=PHz_VWRZga1gqkpTGY_lDoG2c_ktt03dDacVKUzNu_I,5348
57
- crawlo/middleware/download_delay.py,sha256=2iWnJFtWDlqDy5MsAob8TPiJQoiz9v21yatkBI0eptg,3542
58
- crawlo/middleware/middleware_manager.py,sha256=kHqMk5Pm3tmUfXehw1LExGYKZfMH4C5bPK_yEQSVP6Q,6416
59
- crawlo/middleware/offsite.py,sha256=FZJwsWuAHfgojLfbuXmnyedGwEbo2BAcGQbmL2jOHxU,4140
60
- crawlo/middleware/proxy.py,sha256=FUwcXhUm-rH_zDVsIeTwC-qnoHZDogLkc9V7uSYwMvo,15606
61
- crawlo/middleware/request_ignore.py,sha256=7qdX4zAimjSGwdod_aWUbOTfzLBWZ5KzLVFchGMCxCI,2663
62
- crawlo/middleware/response_code.py,sha256=0_NbiCzLgJmSuSSF2_jqpypWYy0ES4GV-0iWQPLfYLc,5097
63
- crawlo/middleware/response_filter.py,sha256=tVGr06bfJBR3xAHI2G5c3WimFsGHu8qoJtDcsVuCATU,4384
64
- crawlo/middleware/retry.py,sha256=Acfo95B9wF8fQTCQIqluZOS2hHdnknQu_FOHvpGKJp0,4248
65
- crawlo/network/__init__.py,sha256=bvEnpEUBZJ79URfNZbsHhsBKna54hM2-x_BV8eotTA4,418
66
- crawlo/network/request.py,sha256=amZdRvDJvFpx82thtWwv6uo5uv9vtCwbvw3jAc3sCrY,12633
67
- crawlo/network/response.py,sha256=QwJhL3xJfPVy_gwtGrg61oAgaqCoCmjyj1Ug7Zju7Pg,13060
68
- crawlo/pipelines/__init__.py,sha256=FDe2Pr5tiHtV8hFlheElRO_O1aVKvSWlkTcAl9BXAKA,637
69
- crawlo/pipelines/bloom_dedup_pipeline.py,sha256=n0Ay7MtIEJ8L4Otiha4zRvI9toFUSNFugTNubi-Q3aw,5798
70
- crawlo/pipelines/console_pipeline.py,sha256=bwe5hZgaVSWmh3R8XpOaaeAjJme-Ttrpo6G6f1cnLIg,1287
71
- crawlo/pipelines/csv_pipeline.py,sha256=qbXZoqq4FIR9QkUGpC0ryWzmqGJSrM2bxmWLM4I1nXM,12490
72
- crawlo/pipelines/database_dedup_pipeline.py,sha256=GTfnSk-l_Uuultsaf8QH-vkTLgWgXTLYgafpLG7baKY,8182
73
- crawlo/pipelines/json_pipeline.py,sha256=wrCsh8YInmcPLAkhPrHObMx89VZfhf-c7qRrYsTixPE,8585
74
- crawlo/pipelines/memory_dedup_pipeline.py,sha256=Buh_j5cup_DSI8Lh9RM4nS3YRTIXE9-_Xsnnlah7dbk,3943
75
- crawlo/pipelines/mongo_pipeline.py,sha256=PohTKTGw3QRvuP-T6SrquwW3FAHSno8jQ2D2cH_d75U,5837
76
- crawlo/pipelines/mysql_pipeline.py,sha256=Zb8PuJf8PK42dz1aeLjOlLZg26SLr-a_NtQY0hBaBfw,13790
77
- crawlo/pipelines/pipeline_manager.py,sha256=WzqJVq0F-5HTIzB49uam8wgZfXvytUaUYZWhDNbH5kA,2487
78
- crawlo/pipelines/redis_dedup_pipeline.py,sha256=ib8TFfnIdhXOvQ8bjhKrumfzGnS9KIte-bdSutg2wO8,6403
79
- crawlo/queue/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
80
- crawlo/queue/pqueue.py,sha256=qTFOuvEXsYEZbm0ULjsOeZo0XtSsZ-SHpx7nFEtmluE,1095
81
- crawlo/queue/queue_manager.py,sha256=S29mbE5-0wl56NHYmXErqOfIXeBIfbMnn1ljp38dhrg,15459
82
- crawlo/queue/redis_priority_queue.py,sha256=pX5H8-FIMsSCSFkTCI4JR0EPZ9tgkCBzCuwbMWGKFrU,13423
83
- crawlo/settings/__init__.py,sha256=NgYFLfk_Bw7h6KSoepJn_lMBSqVbCHebjKxaE3_eMgw,130
84
- crawlo/settings/default_settings.py,sha256=AI2mKQwBM1lcOiAW-5FpKvtZ0txqvLVdBWSiJ6I9eXs,9327
85
- crawlo/settings/setting_manager.py,sha256=uqgm2uZQp7Wx1hMSf2FnA0dh6f4jzZ13NQbRvIfYwsQ,3829
86
- crawlo/spider/__init__.py,sha256=xAH6NfE_6K2aY_VSL9DoGjcmMHJDd5Nxr7TG1Y8vQAE,21091
87
- crawlo/templates/crawlo.cfg.tmpl,sha256=lwiUVe5sFixJgHFEjn1OtbAeyWsECOrz37uheuVtulk,240
88
- crawlo/templates/run.py.tmpl,sha256=tRlFe-7QhVvKmbbeyVm53_Jse0NzZCDjMOfAgAs13BY,1144
89
- crawlo/templates/project/__init__.py.tmpl,sha256=aQnHaOjMSkTviOC8COUX0fKymuyf8lx2tGduxkMkXEE,61
90
- crawlo/templates/project/items.py.tmpl,sha256=8_3DBA8HrS2XbfHzsMZNJiZbFY6fDJUUMFoFti_obJk,314
91
- crawlo/templates/project/middlewares.py.tmpl,sha256=fxHqi-Sjec5GiHJciprOU-6SAUTzM728NlZckIqf9hM,4278
92
- crawlo/templates/project/pipelines.py.tmpl,sha256=j9oqEhCezmmHlBhMWgYtlgup4jhWnMlv6AEiAOHODkg,2704
93
- crawlo/templates/project/settings.py.tmpl,sha256=LRqgrAXDOt_nrCbDVFBAaFYquNeAMGb-aQi9aA5Uppg,11006
94
- crawlo/templates/project/settings_distributed.py.tmpl,sha256=zUNM5Hw8pTNIwud4tGCdoVTi1h2V4C4VDMlxJuAmzz0,6044
95
- crawlo/templates/project/settings_gentle.py.tmpl,sha256=jOO_jtmc_O1adfRAKnep5uqnRBjvBirBb_SQ9r_OupU,3939
96
- crawlo/templates/project/settings_high_performance.py.tmpl,sha256=ovQW-pyMgC4TSTdObXbvOc8beCnjgCVUT7_TxYLpVQo,5036
97
- crawlo/templates/project/settings_simple.py.tmpl,sha256=lWnB9KEGpgZLcq3JMjklKYXFp2TJpAWgmEuz2vEIZIo,3850
98
- crawlo/templates/project/spiders/__init__.py.tmpl,sha256=zMbePipgLsctQUEnda4WkHz8rDLUX--rc8ruI6zkpWc,111
99
- crawlo/templates/spider/spider.py.tmpl,sha256=KvU-9YpN6MifDE7XzejjyyQS7RUjLDLZ8zqJcLwSsu0,5198
100
- crawlo/tools/__init__.py,sha256=6BcoEE7t119VzdwqnULrWnYDNpXu86FHkWgx_WL1-Sk,3853
101
- crawlo/tools/anti_crawler.py,sha256=LwLC6BkxDSkxc5H1hQ6kY9j7O0PZGAMPZECr7gbqw2M,9431
102
- crawlo/tools/authenticated_proxy.py,sha256=ULCK0Cc9F2rGhRqu6kzKBdxzK9v2n1CsatSQ_PMxpAg,7272
103
- crawlo/tools/data_validator.py,sha256=bLWnkpFdclJuqjtSAgMI5nznN4vAuPwE1YaiFWKWenM,5490
104
- crawlo/tools/date_tools.py,sha256=dNm06OwJYQ7KeVkZoFcfFhMwJPsHlB3JJfSplOA0XfY,635
105
- crawlo/tools/distributed_coordinator.py,sha256=QM4ECyhTba9jtV7-AkOuT_lDJObeKVeBsRLZZFS_A7Y,12863
106
- crawlo/tools/retry_mechanism.py,sha256=VbHo9-pT8ADbwyPuKcRfeUo4BtVZQy6yvrSvugoiZRA,8021
107
- crawlo/tools/scenario_adapter.py,sha256=pzysL1B2uQ1ZSEncVHd9Hv2viHNgaxP44YAUcDcppfw,9660
108
- crawlo/utils/__init__.py,sha256=5unISyKR7pZdj7EwP5tadGYKvyb_W1uoC52YzqSbxis,592
109
- crawlo/utils/batch_processor.py,sha256=8LNy-K2SrQVUxmGEWxQyYw_j9M-erN4Ie7O4d3zpBvM,9142
110
- crawlo/utils/controlled_spider_mixin.py,sha256=tv-fyy5OLQr4FKlYSUWisVKmdQq5IR1GflTSwoDRq7g,16909
111
- crawlo/utils/date_tools.py,sha256=gsgHweZFOzeW-K91wRlBEg_XLKBCXl7UZJfnjI_W-J0,9197
112
- crawlo/utils/db_helper.py,sha256=ZqOt1d3mErVv4TOvoWlov0niUxORB9aHByTmMoNFIDw,10902
113
- crawlo/utils/enhanced_error_handler.py,sha256=fJC__rnYNKTNUHNbgjZtT846HoE31qyGbPft9bwyYLU,14214
114
- crawlo/utils/env_config.py,sha256=W-VD_WF63DHxsyJysvp1eJwRh3L_pBRl_PitQAY3nQY,4079
115
- crawlo/utils/error_handler.py,sha256=N6suB8Utcn7tp6WRJ8gKECr0RIAG86dcOXdwOr998OE,4367
116
- crawlo/utils/func_tools.py,sha256=y-TYP9H3X67MS_foWy9Z2LIS6GP7Y4Cy3T168ulq3Jc,2451
117
- crawlo/utils/large_scale_config.py,sha256=lsraHTAQx3sMPjTnCBY_SVIpkuIBUb3zD9eFvmccOOM,8440
118
- crawlo/utils/large_scale_helper.py,sha256=_0VgLvO10G2GeTQeNlL0K5vYjIMlTiX3geigM5Egtls,12477
119
- crawlo/utils/log.py,sha256=YD2FfXuuE2MC9ZdQQZ0H7KysE7l_LHZqQepaTPlcApo,4133
120
- crawlo/utils/performance_monitor.py,sha256=2a3hFLQJnxgfbv_iMhsqPYOuX9BC4xQcicu_e3IVcrI,9861
121
- crawlo/utils/queue_helper.py,sha256=gFmkh1jKlIcN1rmo2Jl6vYcLP5ByUWlfHO9eNlZPBLs,4918
122
- crawlo/utils/redis_connection_pool.py,sha256=SN-H_EZSn1jHfoeLNEhyZ3Fyw7j-SPBgx-oMnZ1zvEw,11417
123
- crawlo/utils/redis_key_validator.py,sha256=dOL_LVZJhzMZUZ3CmU57Yy0skWABeepI1GCecSzXstw,5825
124
- crawlo/utils/request.py,sha256=ejdKpTwc-HE04HQybafhOVywzz57IV3pY0YMkSLyGUo,9065
125
- crawlo/utils/request_serializer.py,sha256=2Wd55pQDtBWnkhtxHxjzROQ_-IjqaqbT4qaTMtqO6R8,8754
126
- crawlo/utils/spider_loader.py,sha256=xNzQb7qhQ7TqZsfFtCLpuVcsGi-USriZosU0YSBr9II,2233
127
- crawlo/utils/system.py,sha256=24zGmtHNhDFMGVo7ftMV-Pqg6_5d63zsyNey9udvJJk,248
128
- crawlo/utils/tools.py,sha256=uy7qw5Z1BIhyEgiHENvtM7WoGCJxlS8EX3PmOA7ouCo,275
129
- crawlo/utils/url.py,sha256=RKe_iqdjafsNcp-P2GVLYpsL1qbxiuZLiFc-SqOQkcs,1521
130
- examples/__init__.py,sha256=NkRbV8_S1tb8S2AW6BE2U6P2-eGOPwMR1k0YQAwQpSE,130
131
- tests/DOUBLE_CRAWLO_PREFIX_FIX_REPORT.md,sha256=4W6HlT9Uc3cyu77T9pfbkrMxpAZ-xq_L9MU-GbukLV0,3427
132
- tests/__init__.py,sha256=409aRX8hsPffiZCVjOogtxwhACzBp8G2UTJyUQSxhK0,136
133
- tests/advanced_tools_example.py,sha256=1_iitECKCuWUYMNNGo61l3lmwMRrWdA8F_Xw56UaGZY,9340
134
- tests/authenticated_proxy_example.py,sha256=b307_RybOtxXVQK0ITboLvHmOTwIN4yTF9aup4dYF7Q,8477
135
- tests/cleaners_example.py,sha256=tEGf-x8CNlXpKurgmNxTmmPjQa45dRUSBjnOJVGGSeU,5330
136
- tests/config_validation_demo.py,sha256=ah4cLZnozMdwKzACOoa5R52dWfya282WyulCGjadioM,3218
137
- tests/controlled_spider_example.py,sha256=2SAQKoREGHe-OzVaSkGpopCcrou6QXmeW7rLdmsyopw,7981
138
- tests/date_tools_example.py,sha256=XI3iFEzeo7Nb5YepK8WHytIaBegtxWVSISpqQgpV6M8,5042
139
- tests/dynamic_loading_example.py,sha256=7LdeQZFevrb-U1_dgr4oX3aYo2Da4HvE_0KIf1fw4Ew,18786
140
- tests/dynamic_loading_test.py,sha256=dzDW7b66HeDsIYsYgvNRihE3V6b6gEbUGQpp-eJbcIM,3413
141
- tests/env_config_example.py,sha256=_ZRDh_LR23ZKpy9E--y_KM0QIOiZF5vRT98QTn52TY8,4951
142
- tests/error_handling_example.py,sha256=sqvSoogDefyDoEBz3AVPG4pe49gRqBxT5BDFkijmYaA,5332
143
- tests/redis_key_validation_demo.py,sha256=R0ZTJJSeMB-ptVfzwegw7bw83FDDcR2XUNnUZqstSPE,4475
144
- tests/response_improvements_example.py,sha256=t1cbG3nesp82bqog4_ku1GvQzNbhRyWa5EaKTmOPrSk,5402
145
- tests/test_advanced_tools.py,sha256=HT_TcwfFzli-CavIJSqQqnCxnBn5FDMX09zL7AJ5tNY,5398
146
- tests/test_all_redis_key_configs.py,sha256=Uk91dnGwGaGsdukpvbTiXd4NnrsOa-THWD2cwSZkqag,5805
147
- tests/test_authenticated_proxy.py,sha256=lnvmQwuf0zaZP_E05EzcNFR2VJbwTkLjOmZGNoJKaC4,4339
148
- tests/test_cleaners.py,sha256=qyd20RNuBHIVHz7X5JjLwlIZedn7yHZ4uB3X78BpaF4,1819
149
- tests/test_comprehensive.py,sha256=dvRJeeVYc1cgXK9Y171hH9Y847zZpWSAFFH-EI3UepQ,5182
150
- tests/test_config_consistency.py,sha256=Y7R5SYSiPPFN088GyyBFfLTmKv38uQyElFwjsbLEY1w,2033
151
- tests/test_config_validator.py,sha256=Ec1h8Mw-fVz1d9JoATIWZb0nTc8pYjhTCSjPm3tvkTQ,6825
152
- tests/test_crawlo_proxy_integration.py,sha256=O0wK1u73qOuahRHWBXeDuMk5y1qMBMHLVVBYVP3U5SM,5576
153
- tests/test_date_tools.py,sha256=pcLDyhLrZ_jh-PhPm4CvLZEgNeH9kLMPKN5zacHwuWM,4053
154
- tests/test_default_header_middleware.py,sha256=v-ei_1EY7cvFSsySrQPXF5-DmyGsq2yzjYhhrwFMOXs,6003
155
- tests/test_double_crawlo_fix.py,sha256=qkJugMiEM2KQFHZ_Iza7Y0cER8p-Mecr57zjwHdsaSE,8033
156
- tests/test_double_crawlo_fix_simple.py,sha256=aPQQRex7ShxC_QJyjRkgelbn0Lnl3fFTwsPH5OglpwM,4807
157
- tests/test_download_delay_middleware.py,sha256=Idc6KzhL3hY3aDKgn1j_v5-mLIHz7dTnV5c4tJVZh5Q,9107
158
- tests/test_downloader_proxy_compatibility.py,sha256=DU19UnjhS3jdP1lfoF098bptKF4jpaowc4G274SgV8c,8915
159
- tests/test_dynamic_downloaders_proxy.py,sha256=t_aWpxOHi4h3_fg2ImtIq7IIJ0r3PTHtnXiopPe2ZlM,4450
160
- tests/test_dynamic_proxy.py,sha256=zi7Ocbhc9GL1zCs0XhmG2NvBBeIZ2d2hPJVh18lH4Y0,3172
161
- tests/test_dynamic_proxy_config.py,sha256=C_9CEjCJtrr0SxIXCyLDhSIi88ujF7UAT1F-FAphd0w,5853
162
- tests/test_dynamic_proxy_real.py,sha256=krWnbFIH26mWNPhOfPMmx3ZxJfOreZxMZFGwVb_8-K8,3511
163
- tests/test_edge_cases.py,sha256=kd5irijfGB0MkL-eukmc-WFm_xfbzQ30tPq-FMJaxsg,10856
164
- tests/test_enhanced_error_handler.py,sha256=cROcikmLvL11NgjCj-fGfVlKV3sLq7VN4DY_9U54IBU,8705
165
- tests/test_env_config.py,sha256=Qu1sDeADs69dSr1x0QmEe8nJrMHneE_4JClt-N901e8,4867
166
- tests/test_error_handler_compatibility.py,sha256=xJ43cmCwfBGh-qBwCGiMDPPlfNDLw4ZrmlrHN9IojkU,4241
167
- tests/test_final_validation.py,sha256=UNHMOkcOBx9jPdnYuYCF4Cx5GlXakBeHybOP27lpbAg,5078
168
- tests/test_framework_env_usage.py,sha256=bFb_ptdLeX2obdJWEqEHPWweiWR-wR2BpvEaJMQK7h4,4201
169
- tests/test_integration.py,sha256=l-G_z_btCtK0W4VvP1yNJFaZIZtKXDTeD1Ns2C-v6Nw,11677
170
- tests/test_item_dedup_redis_key.py,sha256=GIdyFBm56EbFzTvgnYcimgQFoMgvEZW8z1KFVUu3HJ4,3877
171
- tests/test_mode_consistency.py,sha256=3iFJAm0aUW_lUbJ2MkEHnAaF7OF6VNVLTiMyWZyO4Bs,1239
172
- tests/test_offsite_middleware.py,sha256=1DYktO_D-hiLEB6dBnc0iOvnWimqOdE6kimnS8aof_s,7764
173
- tests/test_parsel.py,sha256=wuZqRFIm9xx1tt6o3Xi_OjvwhT_MPmHiUEj2ax06zlo,701
174
- tests/test_performance.py,sha256=cjmWwIXBsHibgVyjyIt30iiXSDVse2HD6lFb0YlZsAQ,11613
175
- tests/test_proxy_api.py,sha256=SOBedDX8JTl3iPhluaCyybvA6B6k1poYkN7hY9gNpho,11029
176
- tests/test_proxy_health_check.py,sha256=_tDlxa_6TdL3M5RLkHF82roXJ8WIuG5hELBp2GADyKQ,1123
177
- tests/test_proxy_middleware.py,sha256=EdQAfwwAJIBxw9JmUFTDEu_pdxapaTlcJr7KcrY6-AY,4021
178
- tests/test_proxy_middleware_enhanced.py,sha256=QR-p26F63N7MxNjZ2QJUeerh_xdnCDejkrGPIh7Fh4U,7035
179
- tests/test_proxy_middleware_integration.py,sha256=mTPK_XvbmLCV_QoVZzA3ybWOOX61493Ew78WfTp-bYQ,4441
180
- tests/test_proxy_providers.py,sha256=u_R2fhab90vqvQEaOAztpAOe9tJXvUMIdoDxmStmXJ4,1749
181
- tests/test_proxy_stats.py,sha256=ES00CEoDITYPFBGPk8pecFzD3ItYIv6NSpcqNd8-kvo,526
182
- tests/test_proxy_strategies.py,sha256=9Z1pXmTNyw-eIhGXlf2abZbJx6igLohYq-_3hldQ5uE,1868
183
- tests/test_queue_manager_double_crawlo.py,sha256=5oPn3xnAXcZ2ZJweLTYEKDM-sQXQ0MZJdtjqD_Zmlrc,6995
184
- tests/test_queue_manager_redis_key.py,sha256=tvy3qkmB6XNpnJ4SOgjKvxE83hltCdL5Z32CupQ2VZ0,6454
185
- tests/test_real_scenario_proxy.py,sha256=dhlQcbiGd-zp2L9EJ12q7HfDxuEAyi_SxBSoXH6YyZM,8490
186
- tests/test_redis_config.py,sha256=Kbl3PURGNM1BUIspakEOA-ZOl2xxTHb_8KbftwjYOsg,921
187
- tests/test_redis_connection_pool.py,sha256=wLPmJ94jUajpShNrnnl4pTbX9ZIGqCEZgzzecasAC4s,9471
188
- tests/test_redis_key_naming.py,sha256=44A174UkKdj2ipjJa4N0RWIN8CYun6w08yylg8Yu9ac,6957
189
- tests/test_redis_key_validator.py,sha256=Yw0EsDQuI3Gzt_s86BubBP2VU_s7fyI-TthEX5J5C-o,4427
190
- tests/test_redis_queue.py,sha256=5LTc86A5qqF5VbmkvkF2OnLAxlJ7ClfJPw0dODxekFk,6846
191
- tests/test_request_ignore_middleware.py,sha256=QN81wgG_W_XfXCF9LvJNxCNwbOH6_tZnLIwLDTK2K5Q,6229
192
- tests/test_request_serialization.py,sha256=Jf7Kr7edL0ENwxh8ABa1W_O3dWyqNlvoSfQM1Mykpys,2359
193
- tests/test_response_code_middleware.py,sha256=wSe525bm-bk_iWMjPDzUu1LfOQrwJY8_MLKAspq2dzk,12193
194
- tests/test_response_filter_middleware.py,sha256=YWrGzJ7wmftTjJXcNTtJl3b3EdJsO4oR22ZLWwgErhg,16327
195
- tests/test_response_improvements.py,sha256=vNqHKyoEoYeEGAUiRzdsff2V6yvJ9QnDwGg7gmN38Ow,6028
196
- tests/test_retry_middleware.py,sha256=RmSYSf0GagGPGAVi5TXJWc0bZlmAI_hwFr2FYhvuKrk,8097
197
- tests/test_scheduler.py,sha256=UOzxyHK-ZuxlJ2Yj-j_zb8ntzmtoDUSZ4g2qot_2-Q8,8254
198
- tests/test_scheduler_config_update.py,sha256=JfzInmv1xkPJ8RpefbHMg9nLs0yqt4l1Md3Uz7JNDgE,4279
199
- tests/test_simple_response.py,sha256=_ui2PuVZvJcAuLY7HZ8xcsy_tDBimgBqX0ukj3kE5J0,1549
200
- tests/test_telecom_spider_redis_key.py,sha256=SUCUK_CgHgl1wj59o2a1g4qJpLUyW4reXv-5Bjuk6Ko,7675
201
- tests/test_template_content.py,sha256=URwjlAzMCdUN0sW_OupUcuSNMxp1OKgW79JOpkLPXnw,2965
202
- tests/test_template_redis_key.py,sha256=dOFutic8CL3tOzGbYhWbMrYiXZ8R3fhNoF5VKax5Iy0,4946
203
- tests/test_tools.py,sha256=fgzXL2L7eBV_nGjeMxH8IMhfc0dviQ80XgzZkJp_4dA,5266
204
- tests/tools_example.py,sha256=uXNS4xXJ-OD_xInAn2zjKLG_nlbgVGXZLoJtfhaG9lI,7926
205
- crawlo-1.2.7.dist-info/METADATA,sha256=z8I3gU3ejPRJLJ4AFKk7r_5uR7nS_6nv-Qr1JmOgNpA,19949
206
- crawlo-1.2.7.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
207
- crawlo-1.2.7.dist-info/entry_points.txt,sha256=5HoVoTSPxI8SCa5B7pQYxLSrkOdiunyO9tqNsLMv52g,43
208
- crawlo-1.2.7.dist-info/top_level.txt,sha256=keG_67pbZ_wZL2dmDRA9RMaNHTaV_x_oxZ9DKNgwvR0,22
209
- crawlo-1.2.7.dist-info/RECORD,,