crawlo 1.0.8__tar.gz → 1.0.9__tar.gz

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 (107) hide show
  1. {crawlo-1.0.8/crawlo.egg-info → crawlo-1.0.9}/PKG-INFO +1 -1
  2. crawlo-1.0.9/crawlo/__version__.py +1 -0
  3. crawlo-1.0.9/crawlo/commands/__init__.py +14 -0
  4. {crawlo-1.0.8 → crawlo-1.0.9/crawlo.egg-info}/PKG-INFO +1 -1
  5. crawlo-1.0.8/crawlo/__version__.py +0 -1
  6. crawlo-1.0.8/crawlo/commands/__init__.py +0 -10
  7. {crawlo-1.0.8 → crawlo-1.0.9}/LICENSE +0 -0
  8. {crawlo-1.0.8 → crawlo-1.0.9}/MANIFEST.in +0 -0
  9. {crawlo-1.0.8 → crawlo-1.0.9}/README.md +0 -0
  10. {crawlo-1.0.8 → crawlo-1.0.9}/crawlo/__init__.py +0 -0
  11. {crawlo-1.0.8 → crawlo-1.0.9}/crawlo/cli.py +0 -0
  12. {crawlo-1.0.8 → crawlo-1.0.9}/crawlo/commands/check.py +0 -0
  13. {crawlo-1.0.8 → crawlo-1.0.9}/crawlo/commands/genspider.py +0 -0
  14. {crawlo-1.0.8 → crawlo-1.0.9}/crawlo/commands/list.py +0 -0
  15. {crawlo-1.0.8 → crawlo-1.0.9}/crawlo/commands/run.py +0 -0
  16. {crawlo-1.0.8 → crawlo-1.0.9}/crawlo/commands/startproject.py +0 -0
  17. {crawlo-1.0.8 → crawlo-1.0.9}/crawlo/commands/stats.py +0 -0
  18. {crawlo-1.0.8 → crawlo-1.0.9}/crawlo/core/__init__.py +0 -0
  19. {crawlo-1.0.8 → crawlo-1.0.9}/crawlo/core/engine.py +0 -0
  20. {crawlo-1.0.8 → crawlo-1.0.9}/crawlo/core/processor.py +0 -0
  21. {crawlo-1.0.8 → crawlo-1.0.9}/crawlo/core/scheduler.py +0 -0
  22. {crawlo-1.0.8 → crawlo-1.0.9}/crawlo/crawler.py +0 -0
  23. {crawlo-1.0.8 → crawlo-1.0.9}/crawlo/downloader/__init__.py +0 -0
  24. {crawlo-1.0.8 → crawlo-1.0.9}/crawlo/downloader/aiohttp_downloader.py +0 -0
  25. {crawlo-1.0.8 → crawlo-1.0.9}/crawlo/downloader/cffi_downloader.py +0 -0
  26. {crawlo-1.0.8 → crawlo-1.0.9}/crawlo/downloader/httpx_downloader.py +0 -0
  27. {crawlo-1.0.8 → crawlo-1.0.9}/crawlo/event.py +0 -0
  28. {crawlo-1.0.8 → crawlo-1.0.9}/crawlo/exceptions.py +0 -0
  29. {crawlo-1.0.8 → crawlo-1.0.9}/crawlo/extension/__init__.py +0 -0
  30. {crawlo-1.0.8 → crawlo-1.0.9}/crawlo/extension/log_interval.py +0 -0
  31. {crawlo-1.0.8 → crawlo-1.0.9}/crawlo/extension/log_stats.py +0 -0
  32. {crawlo-1.0.8 → crawlo-1.0.9}/crawlo/extension/logging_extension.py +0 -0
  33. {crawlo-1.0.8 → crawlo-1.0.9}/crawlo/filters/__init__.py +0 -0
  34. {crawlo-1.0.8 → crawlo-1.0.9}/crawlo/filters/aioredis_filter.py +0 -0
  35. {crawlo-1.0.8 → crawlo-1.0.9}/crawlo/filters/memory_filter.py +0 -0
  36. {crawlo-1.0.8 → crawlo-1.0.9}/crawlo/items/__init__.py +0 -0
  37. {crawlo-1.0.8 → crawlo-1.0.9}/crawlo/items/base.py +0 -0
  38. {crawlo-1.0.8 → crawlo-1.0.9}/crawlo/items/fields.py +0 -0
  39. {crawlo-1.0.8 → crawlo-1.0.9}/crawlo/items/items.py +0 -0
  40. {crawlo-1.0.8 → crawlo-1.0.9}/crawlo/middleware/__init__.py +0 -0
  41. {crawlo-1.0.8 → crawlo-1.0.9}/crawlo/middleware/default_header.py +0 -0
  42. {crawlo-1.0.8 → crawlo-1.0.9}/crawlo/middleware/download_delay.py +0 -0
  43. {crawlo-1.0.8 → crawlo-1.0.9}/crawlo/middleware/middleware_manager.py +0 -0
  44. {crawlo-1.0.8 → crawlo-1.0.9}/crawlo/middleware/proxy.py +0 -0
  45. {crawlo-1.0.8 → crawlo-1.0.9}/crawlo/middleware/request_ignore.py +0 -0
  46. {crawlo-1.0.8 → crawlo-1.0.9}/crawlo/middleware/response_code.py +0 -0
  47. {crawlo-1.0.8 → crawlo-1.0.9}/crawlo/middleware/response_filter.py +0 -0
  48. {crawlo-1.0.8 → crawlo-1.0.9}/crawlo/middleware/retry.py +0 -0
  49. {crawlo-1.0.8 → crawlo-1.0.9}/crawlo/network/__init__.py +0 -0
  50. {crawlo-1.0.8 → crawlo-1.0.9}/crawlo/network/request.py +0 -0
  51. {crawlo-1.0.8 → crawlo-1.0.9}/crawlo/network/response.py +0 -0
  52. {crawlo-1.0.8 → crawlo-1.0.9}/crawlo/pipelines/__init__.py +0 -0
  53. {crawlo-1.0.8 → crawlo-1.0.9}/crawlo/pipelines/console_pipeline.py +0 -0
  54. {crawlo-1.0.8 → crawlo-1.0.9}/crawlo/pipelines/mongo_pipeline.py +0 -0
  55. {crawlo-1.0.8 → crawlo-1.0.9}/crawlo/pipelines/mysql_batch_pipline.py +0 -0
  56. {crawlo-1.0.8 → crawlo-1.0.9}/crawlo/pipelines/mysql_pipeline.py +0 -0
  57. {crawlo-1.0.8 → crawlo-1.0.9}/crawlo/pipelines/pipeline_manager.py +0 -0
  58. {crawlo-1.0.8 → crawlo-1.0.9}/crawlo/settings/__init__.py +0 -0
  59. {crawlo-1.0.8 → crawlo-1.0.9}/crawlo/settings/default_settings.py +0 -0
  60. {crawlo-1.0.8 → crawlo-1.0.9}/crawlo/settings/setting_manager.py +0 -0
  61. {crawlo-1.0.8 → crawlo-1.0.9}/crawlo/spider/__init__.py +0 -0
  62. {crawlo-1.0.8 → crawlo-1.0.9}/crawlo/stats_collector.py +0 -0
  63. {crawlo-1.0.8 → crawlo-1.0.9}/crawlo/subscriber.py +0 -0
  64. {crawlo-1.0.8 → crawlo-1.0.9}/crawlo/task_manager.py +0 -0
  65. {crawlo-1.0.8 → crawlo-1.0.9}/crawlo/templates/crawlo.cfg.tmpl +0 -0
  66. {crawlo-1.0.8 → crawlo-1.0.9}/crawlo/templates/project/__init__.py.tmpl +0 -0
  67. {crawlo-1.0.8 → crawlo-1.0.9}/crawlo/templates/project/items.py.tmpl +0 -0
  68. {crawlo-1.0.8 → crawlo-1.0.9}/crawlo/templates/project/middlewares.py.tmpl +0 -0
  69. {crawlo-1.0.8 → crawlo-1.0.9}/crawlo/templates/project/pipelines.py.tmpl +0 -0
  70. {crawlo-1.0.8 → crawlo-1.0.9}/crawlo/templates/project/settings.py.tmpl +0 -0
  71. {crawlo-1.0.8 → crawlo-1.0.9}/crawlo/templates/project/spiders/__init__.py.tmpl +0 -0
  72. {crawlo-1.0.8 → crawlo-1.0.9}/crawlo/templates/spider/spider.py.tmpl +0 -0
  73. {crawlo-1.0.8 → crawlo-1.0.9}/crawlo/utils/__init__.py +0 -0
  74. {crawlo-1.0.8 → crawlo-1.0.9}/crawlo/utils/concurrency_manager.py +0 -0
  75. {crawlo-1.0.8 → crawlo-1.0.9}/crawlo/utils/date_tools.py +0 -0
  76. {crawlo-1.0.8 → crawlo-1.0.9}/crawlo/utils/db_helper.py +0 -0
  77. {crawlo-1.0.8 → crawlo-1.0.9}/crawlo/utils/func_tools.py +0 -0
  78. {crawlo-1.0.8 → crawlo-1.0.9}/crawlo/utils/log.py +0 -0
  79. {crawlo-1.0.8 → crawlo-1.0.9}/crawlo/utils/pqueue.py +0 -0
  80. {crawlo-1.0.8 → crawlo-1.0.9}/crawlo/utils/project.py +0 -0
  81. {crawlo-1.0.8 → crawlo-1.0.9}/crawlo/utils/request.py +0 -0
  82. {crawlo-1.0.8 → crawlo-1.0.9}/crawlo/utils/spider_loader.py +0 -0
  83. {crawlo-1.0.8 → crawlo-1.0.9}/crawlo/utils/system.py +0 -0
  84. {crawlo-1.0.8 → crawlo-1.0.9}/crawlo/utils/tools.py +0 -0
  85. {crawlo-1.0.8 → crawlo-1.0.9}/crawlo/utils/url.py +0 -0
  86. {crawlo-1.0.8 → crawlo-1.0.9}/crawlo.egg-info/SOURCES.txt +0 -0
  87. {crawlo-1.0.8 → crawlo-1.0.9}/crawlo.egg-info/dependency_links.txt +0 -0
  88. {crawlo-1.0.8 → crawlo-1.0.9}/crawlo.egg-info/entry_points.txt +0 -0
  89. {crawlo-1.0.8 → crawlo-1.0.9}/crawlo.egg-info/requires.txt +0 -0
  90. {crawlo-1.0.8 → crawlo-1.0.9}/crawlo.egg-info/top_level.txt +0 -0
  91. {crawlo-1.0.8 → crawlo-1.0.9}/examples/__init__.py +0 -0
  92. {crawlo-1.0.8 → crawlo-1.0.9}/examples/gxb/__init__.py +0 -0
  93. {crawlo-1.0.8 → crawlo-1.0.9}/examples/gxb/items.py +0 -0
  94. {crawlo-1.0.8 → crawlo-1.0.9}/examples/gxb/run.py +0 -0
  95. {crawlo-1.0.8 → crawlo-1.0.9}/examples/gxb/settings.py +0 -0
  96. {crawlo-1.0.8 → crawlo-1.0.9}/examples/gxb/spider/__init__.py +0 -0
  97. {crawlo-1.0.8 → crawlo-1.0.9}/examples/gxb/spider/miit_spider.py +0 -0
  98. {crawlo-1.0.8 → crawlo-1.0.9}/examples/gxb/spider/telecom_device.py +0 -0
  99. {crawlo-1.0.8 → crawlo-1.0.9}/pyproject.toml +0 -0
  100. {crawlo-1.0.8 → crawlo-1.0.9}/requirements.txt +0 -0
  101. {crawlo-1.0.8 → crawlo-1.0.9}/setup.cfg +0 -0
  102. {crawlo-1.0.8 → crawlo-1.0.9}/tests/__init__.py +0 -0
  103. {crawlo-1.0.8 → crawlo-1.0.9}/tests/test_proxy_health_check.py +0 -0
  104. {crawlo-1.0.8 → crawlo-1.0.9}/tests/test_proxy_middleware_integration.py +0 -0
  105. {crawlo-1.0.8 → crawlo-1.0.9}/tests/test_proxy_providers.py +0 -0
  106. {crawlo-1.0.8 → crawlo-1.0.9}/tests/test_proxy_stats.py +0 -0
  107. {crawlo-1.0.8 → crawlo-1.0.9}/tests/test_proxy_strategies.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: crawlo
3
- Version: 1.0.8
3
+ Version: 1.0.9
4
4
  Summary: Crawlo 是一款基于异步IO的高性能Python爬虫框架,支持分布式抓取。
5
5
  Home-page: https://github.com/crawl-coder/Crawlo.git
6
6
  Author: crawl-coder
@@ -0,0 +1 @@
1
+ __version__ = "1.0.9"
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/python
2
+ # -*- coding:UTF-8 -*-
3
+
4
+ _commands = {
5
+ 'startproject': 'crawlo.commands.startproject',
6
+ 'genspider': 'crawlo.commands.genspider',
7
+ 'run': 'crawlo.commands.run',
8
+ 'check': 'crawlo.commands.check',
9
+ 'list': 'crawlo.commands.list',
10
+ 'stats': 'crawlo.commands.stats'
11
+ }
12
+
13
+ def get_commands():
14
+ return _commands
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: crawlo
3
- Version: 1.0.8
3
+ Version: 1.0.9
4
4
  Summary: Crawlo 是一款基于异步IO的高性能Python爬虫框架,支持分布式抓取。
5
5
  Home-page: https://github.com/crawl-coder/Crawlo.git
6
6
  Author: crawl-coder
@@ -1 +0,0 @@
1
- __version__ = "1.0.8"
@@ -1,10 +0,0 @@
1
- # crawlo/commands/__init__.py
2
- # 定义可用的命令
3
- _commands = {
4
- 'startproject': 'crawlo.commands.startproject',
5
- 'genspider': 'crawlo.commands.genspider',
6
- 'run': 'crawlo.commands.run',
7
- }
8
-
9
- def get_commands():
10
- return _commands
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes