核心模块 API¶
核心模块提供数据管理、分析引擎、报告生成等基础功能。
DataManager¶
数据管理器
统一管理多个数据源,提供: - 自动数据源选择 - 数据缓存 - 统一的数据访问接口 - 多数据源注册和切换
源代码位于: src/fund_cli/core/data_manager.py
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 | |
__init__ ¶
初始化数据管理器
参数:
| 名称 | 类型 | 描述 | 默认 |
|---|---|---|---|
cache
|
DataCache | None
|
缓存管理器 |
None
|
primary_source
|
str | None
|
主数据源名称,默认使用配置中的设置 |
None
|
源代码位于: src/fund_cli/core/data_manager.py
register_adapter ¶
get_adapter ¶
获取数据源适配器
参数:
| 名称 | 类型 | 描述 | 默认 |
|---|---|---|---|
source
|
str | None
|
数据源名称,默认使用主数据源 |
None
|
返回:
| 类型 | 描述 |
|---|---|
DataSourceAdapter
|
数据源适配器实例 |
引发:
| 类型 | 描述 |
|---|---|
DataSourceError
|
数据源不可用 |
源代码位于: src/fund_cli/core/data_manager.py
get_fund_info ¶
获取基金基础信息
参数:
| 名称 | 类型 | 描述 | 默认 |
|---|---|---|---|
fund_code
|
str
|
基金代码 |
必需 |
返回:
| 类型 | 描述 |
|---|---|
dict[str, Any]
|
基金信息字典 |
get_fund_nav ¶
get_fund_nav(
fund_code: str,
start_date: date | None = None,
end_date: date | None = None,
) -> pd.DataFrame
获取基金净值数据
参数:
| 名称 | 类型 | 描述 | 默认 |
|---|---|---|---|
fund_code
|
str
|
基金代码 |
必需 |
start_date
|
date | None
|
开始日期 |
None
|
end_date
|
date | None
|
结束日期 |
None
|
返回:
| 类型 | 描述 |
|---|---|
DataFrame
|
净值数据 DataFrame |
源代码位于: src/fund_cli/core/data_manager.py
search_funds ¶
search_funds(
fund_type: str | None = None,
company: str | None = None,
min_scale: float | None = None,
max_scale: float | None = None,
keyword: str | None = None,
limit: int = 100,
) -> pd.DataFrame
搜索基金
参数:
| 名称 | 类型 | 描述 | 默认 |
|---|---|---|---|
fund_type
|
str | None
|
基金类型 |
None
|
company
|
str | None
|
基金公司 |
None
|
min_scale
|
float | None
|
最小规模 |
None
|
max_scale
|
float | None
|
最大规模 |
None
|
keyword
|
str | None
|
关键词 |
None
|
limit
|
int
|
返回数量限制 |
100
|
返回:
| 类型 | 描述 |
|---|---|
DataFrame
|
基金列表 DataFrame |
源代码位于: src/fund_cli/core/data_manager.py
get_fund_list ¶
获取基金列表
参数:
| 名称 | 类型 | 描述 | 默认 |
|---|---|---|---|
fund_type
|
str | None
|
基金类型筛选 |
None
|
返回:
| 类型 | 描述 |
|---|---|
DataFrame
|
基金列表 DataFrame |
get_benchmark_nav ¶
get_benchmark_nav(
benchmark_code: str,
start_date: date | None = None,
end_date: date | None = None,
) -> pd.DataFrame
获取基准指数数据
参数:
| 名称 | 类型 | 描述 | 默认 |
|---|---|---|---|
benchmark_code
|
str
|
基准指数代码 |
必需 |
start_date
|
date | None
|
开始日期 |
None
|
end_date
|
date | None
|
结束日期 |
None
|
返回:
| 类型 | 描述 |
|---|---|
DataFrame
|
基准数据 DataFrame |
源代码位于: src/fund_cli/core/data_manager.py
get_fund_holdings ¶
get_fund_manager ¶
get_fund_fee ¶
get_fund_rating ¶
batch_get_fund_nav ¶
batch_get_fund_nav(
fund_codes: list[str],
start_date: date | None = None,
end_date: date | None = None,
) -> dict[str, pd.DataFrame]
批量获取基金净值
源代码位于: src/fund_cli/core/data_manager.py
get_all_fund_names ¶
get_fund_info_ths ¶
get_index_fund_info ¶
get_fund_overview ¶
get_fund_purchase_status ¶
get_fund_daily_nav ¶
get_etf_spot ¶
get_fund_category_spot ¶
get_etf_spot_ths ¶
get_lof_spot ¶
get_etf_hist ¶
get_lof_hist ¶
get_etf_minute ¶
get_lof_minute ¶
get_fund_bond_holdings ¶
get_fund_industry_allocation ¶
get_fund_portfolio_change ¶
get_fund_portfolio_change(
code: str,
indicator: str = "累计买入",
year: int | None = None,
) -> pd.DataFrame
获取基金重大变动(累计买入/卖出)
get_all_fund_managers ¶
get_fund_company_aum ¶
get_fund_aum_trend ¶
get_fund_company_aum_history ¶
get_fund_scale_change ¶
get_fund_holder_structure ¶
get_fund_ratings ¶
get_fund_rating_sh ¶
get_fund_rating_zs ¶
get_fund_rating_ja ¶
get_fund_dividends ¶
get_fund_splits ¶
get_fund_dividend_rank ¶
get_fund_rank_by_type ¶
get_exchange_fund_rank ¶
get_money_fund_rank ¶
get_lcx_fund_rank ¶
get_hk_fund_rank ¶
get_fund_achievement ¶
get_fund_risk_analysis ¶
get_fund_profit_probability ¶
get_fund_asset_allocation ¶
get_index_spot_em ¶
get_index_spot_sina ¶
get_index_daily_tx ¶
get_index_daily_em ¶
get_index_hist ¶
get_index_minute ¶
get_macro_leverage_ratio ¶
get_enterprise_price_index ¶
get_fdi_data ¶
get_lpr_data ¶
get_urban_unemployment ¶
get_social_financing ¶
get_gdp_yearly ¶
get_gdp_quarterly ¶
get_cpi_yearly ¶
get_cpi_monthly ¶
get_ppi_yearly ¶
get_ppi_monthly ¶
get_exports_yearly ¶
get_imports_yearly ¶
get_trade_balance ¶
get_industrial_production ¶
get_pmi_official ¶
get_pmi_caixin ¶
get_services_pmi ¶
get_non_manufacturing_pmi ¶
get_m2_yearly ¶
get_new_loan ¶
get_retail_sales_yearly ¶
get_fixed_asset_investment ¶
get_china_interest_rate ¶
get_usa_interest_rate ¶
get_euro_interest_rate ¶
get_japan_interest_rate ¶
get_uk_interest_rate ¶
get_shibor ¶
get_shibor_lpr ¶
get_hibor ¶
get_industry_boards ¶
get_industry_board_hist ¶
get_industry_board_hist(
code: str,
period: str = "daily",
start_date: str | None = None,
end_date: str | None = None,
) -> pd.DataFrame
获取行业板块历史行情
源代码位于: src/fund_cli/core/data_manager.py
get_concept_boards ¶
get_concept_board_hist ¶
get_concept_board_hist(
code: str,
period: str = "daily",
start_date: str | None = None,
end_date: str | None = None,
) -> pd.DataFrame
获取概念板块历史行情
源代码位于: src/fund_cli/core/data_manager.py
get_sector_fund_flow ¶
get_china_us_bond_yield ¶
get_bond_yield_curve ¶
get_bond_yield_curve(
bond_type: str = "国债",
period: str = "daily",
start_date: str | None = None,
end_date: str | None = None,
) -> pd.DataFrame
获取收盘收益率曲线历史数据
源代码位于: src/fund_cli/core/data_manager.py
get_bond_spot_quote ¶
get_convertible_bonds ¶
get_convertible_bond_detail ¶
get_bond_spot ¶
get_bond_hist ¶
get_bond_hist(
code: str,
period: str = "daily",
start_date: str | None = None,
end_date: str | None = None,
) -> pd.DataFrame
获取沪深债券历史行情
源代码位于: src/fund_cli/core/data_manager.py
get_a_share_valuation ¶
get_stock_valuation_lg ¶
get_index_valuation ¶
get_market_pe_lg ¶
get_market_pb_lg ¶
get_market_fund_flow ¶
get_stock_fund_flow ¶
get_north_fund_flow ¶
clear_cache ¶
DataSourceGateway¶
数据源网关.
功能: - 管理多个数据源适配器 - 支持数据源优先级配置 - 实现降级切换逻辑 - 熔断与重试机制 - 统一的错误处理
源代码位于: src/fund_cli/core/data_gateway.py
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 | |
__init__ ¶
初始化数据源网关.
源代码位于: src/fund_cli/core/data_gateway.py
register_adapter ¶
注册数据源适配器.
参数:
| 名称 | 类型 | 描述 | 默认 |
|---|---|---|---|
name
|
str
|
适配器名称 |
必需 |
adapter
|
DataSourceAdapter
|
适配器实例 |
必需 |
源代码位于: src/fund_cli/core/data_gateway.py
get_adapter ¶
get_available_adapters ¶
获取可用的适配器列表.
返回:
| 类型 | 描述 |
|---|---|
list[str]
|
按优先级排序的可用适配器名称列表 |
源代码位于: src/fund_cli/core/data_gateway.py
call ¶
调用数据源方法.
参数:
| 名称 | 类型 | 描述 | 默认 |
|---|---|---|---|
method_name
|
str
|
方法名称 |
必需 |
args
|
Any
|
方法位置参数 |
()
|
kwargs
|
Any
|
方法关键字参数 |
{}
|
fallback
|
bool
|
是否启用降级切换 |
True
|
返回:
| 类型 | 描述 |
|---|---|
Any
|
方法返回值 |
引发:
| 类型 | 描述 |
|---|---|
DataSourceError
|
所有数据源都失败 |
源代码位于: src/fund_cli/core/data_gateway.py
get_fund_info ¶
get_fund_nav ¶
get_fund_manager ¶
get_fund_holdings ¶
get_fund_asset_allocation ¶
get_fund_benchmark ¶
get_etf_spot ¶
get_lof_spot ¶
get_fund_purchase_status ¶
get_all_fund_names ¶
get_fund_daily_nav ¶
clear_cache ¶
get_status ¶
获取网关状态.
返回:
| 类型 | 描述 |
|---|---|
dict[str, Any]
|
状态信息字典 |
源代码位于: src/fund_cli/core/data_gateway.py
AIAnalyzer¶
AI分析器.
源代码位于: src/fund_cli/core/ai_analyzer.py
129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 | |
analyze_fund ¶
analyze_fund(
fund_code: str,
fund_name: str,
metrics: dict[str, Any],
holdings: list[dict[str, Any]] | None = None,
asset_allocation: dict[str, float] | None = None,
use_cache: bool = True,
) -> AnalysisResult
分析单只基金.
参数:
| 名称 | 类型 | 描述 | 默认 |
|---|---|---|---|
fund_code
|
str
|
基金代码 |
必需 |
fund_name
|
str
|
基金名称 |
必需 |
metrics
|
dict[str, Any]
|
基金指标 |
必需 |
holdings
|
list[dict[str, Any]] | None
|
持仓数据 |
None
|
asset_allocation
|
dict[str, float] | None
|
资产配置 |
None
|
use_cache
|
bool
|
是否使用缓存 |
True
|
源代码位于: src/fund_cli/core/ai_analyzer.py
clear_cache ¶
analyze_portfolio ¶
analyze_portfolio(
funds: list[dict[str, Any]],
portfolio_metrics: dict[str, Any],
) -> AnalysisResult
分析投资组合.
源代码位于: src/fund_cli/core/ai_analyzer.py
AnalysisResult¶
分析结果.
源代码位于: src/fund_cli/core/ai_analyzer.py
TemplateEngine¶
报告模板引擎.
源代码位于: src/fund_cli/core/template_engine.py
Reporter¶
Bases: ABC
flowchart TD
fund_cli.core.reporter.Reporter[Reporter]
click fund_cli.core.reporter.Reporter href "" "fund_cli.core.reporter.Reporter"
报告生成器基类.
所有报告生成器必须继承此类。
源代码位于: src/fund_cli/core/reporter.py
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 | |
generate
abstractmethod
¶
generate(
fund_code: str,
metrics: dict[str, Any],
nav_data: DataFrame | None = None,
benchmark_data: DataFrame | None = None,
**kwargs: Any,
) -> str
生成报告.
参数:
| 名称 | 类型 | 描述 | 默认 |
|---|---|---|---|
fund_code
|
str
|
基金代码 |
必需 |
metrics
|
dict[str, Any]
|
分析指标字典 |
必需 |
nav_data
|
DataFrame | None
|
净值数据 |
None
|
benchmark_data
|
DataFrame | None
|
基准数据 |
None
|
**kwargs
|
Any
|
额外参数 |
{}
|
返回:
| 类型 | 描述 |
|---|---|
str
|
报告内容字符串 |
源代码位于: src/fund_cli/core/reporter.py
save
abstractmethod
¶
get_formats
abstractmethod
¶
render_to_template ¶
使用模板渲染报告内容(子类可覆盖以支持不同模板引擎).
源代码位于: src/fund_cli/core/reporter.py
export_pdf ¶
导出为PDF(需要weasyprint).
源代码位于: src/fund_cli/core/reporter.py
export_docx ¶
export_pptx ¶
get_supported_formats ¶
获取支持的导出格式.