|
|
@@ -22,6 +22,7 @@ docker compose up -d
|
|
|
│ ├── __init__.py
|
|
|
│ ├── ab_test
|
|
|
│ │ ├── __init__.py
|
|
|
+│ │ ├── ab_accounts.py
|
|
|
│ │ └── get_cover.py
|
|
|
│ ├── api
|
|
|
│ │ ├── __init__.py
|
|
|
@@ -35,11 +36,15 @@ docker compose up -d
|
|
|
│ ├── config
|
|
|
│ │ ├── __init__.py
|
|
|
│ │ ├── aliyun_log_config.py
|
|
|
+│ │ ├── category_config.py
|
|
|
+│ │ ├── cold_start_config.py
|
|
|
│ │ ├── deepseek_config.py
|
|
|
│ │ ├── elastic_search_mappings.py
|
|
|
│ │ ├── es_certs.crt
|
|
|
-│ │ └── mysql_config.py
|
|
|
+│ │ ├── mysql_config.py
|
|
|
+│ │ └── task_chinese_name.py
|
|
|
│ ├── crawler
|
|
|
+│ │ ├── tophub
|
|
|
│ │ ├── toutiao
|
|
|
│ │ │ ├── __init__.py
|
|
|
│ │ │ ├── blogger.py
|
|
|
@@ -50,6 +55,8 @@ docker compose up -d
|
|
|
│ │ │ └── use_js.py
|
|
|
│ │ └── wechat
|
|
|
│ │ ├── __init__.py
|
|
|
+│ │ ├── gzh_article_stat.py
|
|
|
+│ │ ├── gzh_fans.py
|
|
|
│ │ └── gzh_spider.py
|
|
|
│ ├── database
|
|
|
│ │ ├── __init__.py
|
|
|
@@ -60,51 +67,76 @@ docker compose up -d
|
|
|
│ │ └── data_recycle_pipeline.py
|
|
|
│ ├── service
|
|
|
│ │ ├── __init__.py
|
|
|
-│ │ └── log_service.py
|
|
|
+│ │ ├── gzh_cookie_manager.py
|
|
|
+│ │ ├── log_service.py
|
|
|
+│ │ └── task_manager_service.py
|
|
|
│ ├── tasks
|
|
|
│ │ ├── __init__.py
|
|
|
+│ │ ├── algorithm_tasks
|
|
|
+│ │ │ ├── __init__.py
|
|
|
+│ │ │ ├── account_category_analysis.py
|
|
|
+│ │ │ └── models.py
|
|
|
+│ │ ├── analysis_task
|
|
|
+│ │ │ ├── __init__.py
|
|
|
+│ │ │ ├── account_position_info.py
|
|
|
+│ │ │ └── crawler_detail.py
|
|
|
│ │ ├── cold_start_tasks
|
|
|
│ │ │ ├── __init__.py
|
|
|
-│ │ │ └── article_pool_cold_start.py
|
|
|
+│ │ │ ├── article_pool
|
|
|
+│ │ │ │ ├── __init__.py
|
|
|
+│ │ │ │ ├── article_pool_cold_start_const.py
|
|
|
+│ │ │ │ ├── article_pool_cold_start_strategy.py
|
|
|
+│ │ │ │ └── article_pool_filter_strategy.py
|
|
|
+│ │ │ ├── article_pool_cold_start.py
|
|
|
+│ │ │ ├── video_pool
|
|
|
+│ │ │ │ ├── __init__.py
|
|
|
+│ │ │ │ ├── video_pool_audit_strategy.py
|
|
|
+│ │ │ │ └── video_pool_const.py
|
|
|
+│ │ │ └── video_pool_cold_start.py
|
|
|
│ │ ├── crawler_tasks
|
|
|
│ │ │ ├── __init__.py
|
|
|
+│ │ │ ├── crawler_account_manager.py
|
|
|
+│ │ │ ├── crawler_gzh.py
|
|
|
+│ │ │ ├── crawler_gzh_fans.py
|
|
|
│ │ │ └── crawler_toutiao.py
|
|
|
│ │ ├── data_recycle_tasks
|
|
|
│ │ │ ├── __init__.py
|
|
|
-│ │ │ └── recycle_daily_publish_articles.py
|
|
|
+│ │ │ ├── article_detail_stat.py
|
|
|
+│ │ │ ├── recycle_daily_publish_articles.py
|
|
|
+│ │ │ ├── recycle_mini_program_detail.py
|
|
|
+│ │ │ └── recycle_outside_account_articles.py
|
|
|
│ │ ├── llm_tasks
|
|
|
│ │ │ ├── __init__.py
|
|
|
│ │ │ ├── candidate_account_process.py
|
|
|
-│ │ │ └── process_title.py
|
|
|
+│ │ │ ├── process_title.py
|
|
|
+│ │ │ └── prompts.py
|
|
|
│ │ ├── monitor_tasks
|
|
|
│ │ │ ├── __init__.py
|
|
|
+│ │ │ ├── auto_reply_cards_monitor.py
|
|
|
+│ │ │ ├── cooperate_accounts_monitor.py
|
|
|
│ │ │ ├── get_off_videos.py
|
|
|
│ │ │ ├── gzh_article_monitor.py
|
|
|
│ │ │ ├── kimi_balance.py
|
|
|
+│ │ │ ├── limited_account_analysis.py
|
|
|
│ │ │ └── task_processing_monitor.py
|
|
|
+│ │ ├── task_config.py
|
|
|
+│ │ ├── task_handler.py
|
|
|
│ │ ├── task_mapper.py
|
|
|
│ │ ├── task_scheduler.py
|
|
|
-│ │ └── task_scheduler_v2.py
|
|
|
+│ │ └── task_utils.py
|
|
|
│ └── utils
|
|
|
│ ├── __init__.py
|
|
|
│ ├── aigc_system_database.py
|
|
|
│ ├── async_apollo_client.py
|
|
|
│ ├── async_http_client.py
|
|
|
│ ├── async_mysql_utils.py
|
|
|
+│ ├── async_tasks.py
|
|
|
│ ├── common.py
|
|
|
│ ├── get_cover.py
|
|
|
│ ├── item.py
|
|
|
│ └── response.py
|
|
|
-├── dev
|
|
|
-│ ├── code.py
|
|
|
-│ ├── dev.py
|
|
|
-│ ├── run_task_dev.py
|
|
|
-│ ├── sample.txt
|
|
|
-│ ├── title.json
|
|
|
-│ └── totp.py
|
|
|
-├── dev.py
|
|
|
├── docker-compose.yaml
|
|
|
-├── myapp.log
|
|
|
+├── jenkins_bash.sh
|
|
|
├── requirements.txt
|
|
|
├── routes
|
|
|
│ ├── __init__.py
|