lixinger-python 0.3.11__tar.gz → 0.3.12__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.
- lixinger_python-0.3.12/.claude/settings.local.json +18 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/ARCHITECTURE.md +6 -5
- lixinger_python-0.3.12/CHANGELOG.md +204 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/PKG-INFO +1 -1
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/__init__.py +11 -0
- lixinger_python-0.3.12/lixinger/api/macro/__init__.py +30 -0
- lixinger_python-0.3.12/lixinger/api/macro/namespace.py +62 -0
- lixinger_python-0.3.12/lixinger/api/macro/national_debt.py +122 -0
- lixinger_python-0.3.12/lixinger/api/macro/rmb_deposits.py +126 -0
- lixinger_python-0.3.12/lixinger/api/macro/rmb_loans.py +126 -0
- lixinger_python-0.3.12/lixinger/api/macro/social_financing.py +125 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/client.py +27 -0
- lixinger_python-0.3.12/lixinger/models/macro/__init__.py +13 -0
- lixinger_python-0.3.12/lixinger/models/macro/national_debt.py +20 -0
- lixinger_python-0.3.12/lixinger/models/macro/rmb_deposits.py +20 -0
- lixinger_python-0.3.12/lixinger/models/macro/rmb_loans.py +20 -0
- lixinger_python-0.3.12/lixinger/models/macro/social_financing.py +20 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/pyproject.toml +1 -1
- lixinger_python-0.3.12/tests/test_macro.py +341 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/uv.lock +1 -1
- lixinger_python-0.3.11/.claude/settings.local.json +0 -16
- lixinger_python-0.3.11/CHANGELOG.md +0 -95
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/.env.example +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/.github/copilot-instructions.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/.github/workflows/README.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/.github/workflows/pr-checks.yml +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/.gitignore +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/.pre-commit-config.yaml +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/.python-version +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/.ruff.toml +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/ADD_NEW_API_QUICK.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/CLAUDE.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/DOCUMENTATION.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/LICENSE +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/MANIFEST.in +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/PUBLISHING.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/README.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/codecov.yml +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/docs/api/client.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/docs/api/company/announcement.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/docs/api/company/candlestick.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/docs/api/company/company.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/docs/api/company/dividend.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/docs/api/company/equity_change.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/docs/api/company/fs/non_financial.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/docs/api/company/fundamental/bank.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/docs/api/company/fundamental/insurance.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/docs/api/company/fundamental/non_financial.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/docs/api/company/fundamental/other_financial.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/docs/api/company/fundamental/security.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/docs/api/company/indices.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/docs/api/company/profile.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/docs/api/fund/announcement.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/docs/api/fund/asset_combination.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/docs/api/fund/asset_industry_combination.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/docs/api/fund/candlestick.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/docs/api/fund/fund.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/docs/api/fund/profile.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/docs/api/fund/shareholdings.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/docs/api/index/candlestick.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/docs/api/index/constituent_weightings.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/docs/api/index/constituents.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/docs/api/index/drawdown.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/docs/api/index/fundamental.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/docs/api/index/index.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/docs/api/index/tracking_fund.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/docs/api/overview.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/docs/development/code-style.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/docs/development/contributing.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/docs/development/testing.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/docs/examples/company.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/docs/examples/fund.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/docs/examples/index.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/docs/getting-started/configuration.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/docs/getting-started/installation.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/docs/getting-started/quickstart.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/docs/index.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/examples/company_example.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/examples/company_profile_example.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/examples/dividend_example.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/examples/fs_example.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/examples/index_constituent_weightings_example.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/examples/index_constituents_example.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/examples/index_info_example.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/examples/index_margin_trading_example.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/api/__init__.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/api/base.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/api/cn/__init__.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/api/cn/company/__init__.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/api/cn/company/announcement.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/api/cn/company/candlestick.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/api/cn/company/company.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/api/cn/company/dividend.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/api/cn/company/equity_change.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/api/cn/company/fs/__init__.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/api/cn/company/fs/bank.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/api/cn/company/fs/insurance.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/api/cn/company/fs/non_financial.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/api/cn/company/fs/other_financial.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/api/cn/company/fs/security.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/api/cn/company/fundamental/__init__.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/api/cn/company/fundamental/bank.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/api/cn/company/fundamental/insurance.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/api/cn/company/fundamental/non_financial.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/api/cn/company/fundamental/other_financial.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/api/cn/company/fundamental/security.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/api/cn/company/indices.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/api/cn/company/namespace.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/api/cn/company/profile.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/api/cn/fund/__init__.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/api/cn/fund/announcement.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/api/cn/fund/asset_combination.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/api/cn/fund/asset_industry_combination.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/api/cn/fund/candlestick.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/api/cn/fund/fund.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/api/cn/fund/profile.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/api/cn/fund/shareholdings.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/api/cn/index/__init__.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/api/cn/index/candlestick.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/api/cn/index/constituent_weightings.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/api/cn/index/constituents.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/api/cn/index/drawdown.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/api/cn/index/fs/__init__.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/api/cn/index/fs/bank.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/api/cn/index/fs/hybrid.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/api/cn/index/fs/non_financial.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/api/cn/index/fs/security.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/api/cn/index/fundamental.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/api/cn/index/index.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/api/cn/index/margin_trading.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/api/cn/index/namespace.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/api/cn/index/tracking_fund.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/api/cn/industry/__init__.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/api/cn/industry/margin_trading/__init__.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/api/cn/industry/margin_trading/cni.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/api/cn/industry/margin_trading/sw.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/api/cn/industry/margin_trading/sw_2021.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/api/cn/industry/namespace.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/config.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/exceptions.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/models/__init__.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/models/cn/__init__.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/models/cn/company/__init__.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/models/cn/company/announcement.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/models/cn/company/candlestick.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/models/cn/company/company.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/models/cn/company/dividend.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/models/cn/company/equity_change.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/models/cn/company/fs/__init__.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/models/cn/company/fs/bank.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/models/cn/company/fs/insurance.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/models/cn/company/fs/non_financial.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/models/cn/company/fs/other_financial.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/models/cn/company/fs/security.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/models/cn/company/fundamental/__init__.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/models/cn/company/fundamental/bank.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/models/cn/company/fundamental/insurance.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/models/cn/company/fundamental/non_financial.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/models/cn/company/fundamental/other_financial.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/models/cn/company/fundamental/security.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/models/cn/company/indices.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/models/cn/fund/__init__.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/models/cn/fund/announcement.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/models/cn/fund/asset_combination.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/models/cn/fund/asset_industry_combination.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/models/cn/fund/candlestick.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/models/cn/fund/fund.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/models/cn/fund/profile.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/models/cn/fund/shareholdings.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/models/cn/index/__init__.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/models/cn/index/candlestick.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/models/cn/index/constituent_weightings.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/models/cn/index/constituents.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/models/cn/index/drawdown.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/models/cn/index/fs/__init__.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/models/cn/index/fs/bank.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/models/cn/index/fs/hybrid.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/models/cn/index/fs/non_financial.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/models/cn/index/fs/security.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/models/cn/index/fundamental.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/models/cn/index/index.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/models/cn/index/margin_trading.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/models/cn/index/tracking_fund.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/models/cn/industry/__init__.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/models/cn/industry/margin_trading/__init__.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/models/cn/industry/margin_trading/cni.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/models/cn/industry/margin_trading/sw.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/models/cn/industry/margin_trading/sw_2021.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/py.typed +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/utils/__init__.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/utils/api.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/utils/dataframe.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/utils/dict.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/utils/rate_limiter.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger/utils/retry.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/REMINDER.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/company/allotment.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/company/announcement.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/company/block-deal.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/company/candlestick.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/company/customers.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/company/dividend.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/company/equity-change.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/company/fs/bank.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/company/fs/insurance.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/company/fs/non_financial.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/company/fs/other_financial.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/company/fs/security.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/company/fund-collection-shareholders.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/company/fund-shareholders.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/company/fundamental/bank.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/company/fundamental/insurance.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/company/fundamental/non_financial.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/company/fundamental/other_financial.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/company/fundamental/security.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/company/hot/capita.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/company/hot/df.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/company/hot/elr.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/company/hot/esc.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/company/hot/mm_ha.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/company/hot/mssc.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/company/hot/mtasl.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/company/hot/npd.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/company/hot/ple.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/company/hot/shnc.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/company/hot/t_a.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/company/hot/tr.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/company/hot/tr_dri.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/company/indices.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/company/industries.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/company/inquiry.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/company/major-shareholders-shares-change.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/company/majority-shareholders.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/company/margin-trading-and-securities-lending.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/company/measures.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/company/mutual-market.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/company/nolimit-shareholders.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/company/operating-data.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/company/operation-revenue-constitution.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/company/pledge.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/company/profile.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/company/senior-executive-shares-change.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/company/shareholders-num.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/company/suppliers.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/company/trading-abnormal.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/company/volatility.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/company.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/fund/announcement.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/fund/asset-combination.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/fund/asset-industry-combination.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/fund/candlestick.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/fund/dividend.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/fund/drawdown.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/fund/fees.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/fund/hot/f_as.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/fund/hot/f_nlacan.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/fund/hot/fet_s.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/fund/hot/ff.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/fund/hot/fp.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/fund/hot/fpr.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/fund/hot/fss.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/fund/manager.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/fund/net-value-of-dividend-reinvestment.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/fund/net-value.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/fund/profile.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/fund/shareholders-structure.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/fund/shareholdings.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/fund/shares.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/fund/split.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/fund/total-net-value.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/fund/turnover-rate.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/fund/volatility.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/fund-company/asset-scale.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/fund-company/fund-list.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/fund-company/fund-manager-list.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/fund-company/hot/fc_as.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/fund-company/hot/fc_asr.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/fund-company/shareholdings.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/fund-company.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/fund-manager/hot/fmi.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/fund-manager/hot/fmp.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/fund-manager/management-funds.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/fund-manager/profit-ratio.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/fund-manager/shareholdings.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/fund-manager.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/fund.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/index/candlestick.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/index/constituent-weightings.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/index/constituents.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/index/drawdown.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/index/fs/bank.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/index/fs/hybrid.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/index/fs/non_financial.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/index/fs/security.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/index/fundamental.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/index/hot/cp.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/index/hot/ic.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/index/hot/ifet_sni.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/index/hot/mm_ha.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/index/hot/mtasl.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/index/hot/tr.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/index/hot/tr_cp.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/index/margin-trading-and-securities-lending.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/index/mutual-market.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/index/tracking-fund.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/index/volatility.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/index.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/industry/constituents/cni.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/industry/constituents/sw.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/industry/constituents/sw_2021.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/industry/fs/cni/bank.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/industry/fs/cni/hybrid.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/industry/fs/cni/insurance.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/industry/fs/cni/non_financial.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/industry/fs/cni/security.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/industry/fs/sw/bank.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/industry/fs/sw/hybrid.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/industry/fs/sw/insurance.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/industry/fs/sw/non_financial.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/industry/fs/sw/security.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/industry/fs/sw_2021/bank.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/industry/fs/sw_2021/hybrid.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/industry/fs/sw_2021/insurance.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/industry/fs/sw_2021/non_financial.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/industry/fs/sw_2021/security.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/industry/fundamental/cni.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/industry/fundamental/sw.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/industry/fundamental/sw_2021.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/industry/hot/mm_ha/cni.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/industry/hot/mm_ha/sw.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/industry/hot/mm_ha/sw_2021.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/industry/hot/mtasl/cni.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/industry/hot/mtasl/sw.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/industry/hot/mtasl/sw_2021.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/industry/margin-trading-and-securities-lending/cni.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/industry/margin-trading-and-securities-lending/sw.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/industry/margin-trading-and-securities-lending/sw_2021.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/industry/mutual-market/cni.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/industry/mutual-market/sw.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/industry/mutual-market/sw_2021.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/cn/industry.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/hk/company/allotment.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/hk/company/announcement.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/hk/company/candlestick.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/hk/company/dividend.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/hk/company/employee.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/hk/company/equity-change.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/hk/company/fs/bank.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/hk/company/fs/insurance.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/hk/company/fs/non_financial.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/hk/company/fs/other_financial.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/hk/company/fs/reit.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/hk/company/fs/security.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/hk/company/fund-collection-shareholders.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/hk/company/fund-shareholders.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/hk/company/fundamental/bank.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/hk/company/fundamental/insurance.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/hk/company/fundamental/non_financial.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/hk/company/fundamental/other_financial.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/hk/company/fundamental/reit.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/hk/company/fundamental/security.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/hk/company/hot/capita.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/hk/company/hot/director_equity_change.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/hk/company/hot/mm_ah.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/hk/company/hot/npd.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/hk/company/hot/rep.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/hk/company/hot/ss.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/hk/company/hot/ss_ha.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/hk/company/hot/tr.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/hk/company/hot/tr_dri.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/hk/company/indices.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/hk/company/industries.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/hk/company/latest-shareholders.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/hk/company/mutual-market.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/hk/company/operation-revenue-constitution.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/hk/company/profile.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/hk/company/repurchase.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/hk/company/shareholders-equity-change.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/hk/company/short-selling.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/hk/company/split.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/hk/company/volatility.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/hk/company.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/hk/index/candlestick.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/hk/index/constituents.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/hk/index/drawdown.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/hk/index/fs/hybrid.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/hk/index/fs/non_financial.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/hk/index/fundamental.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/hk/index/hot/cp.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/hk/index/hot/ic.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/hk/index/hot/ifet_sni.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/hk/index/hot/mm_ah.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/hk/index/mutual-market.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/hk/index/tracking-fund.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/hk/index/volatility.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/hk/index.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/hk/industry/constituents/hsi.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/hk/industry/fs/hsi/hybrid.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/hk/industry/fs/hsi/non_financial.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/hk/industry/fundamental/hsi.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/hk/industry/hot/mm_ah/hsi.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/hk/industry/mutual-market/hsi.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/hk/industry.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/macro/bop.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/macro/central-bank-balance-sheet.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/macro/credit-securities-account.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/macro/crude-oil.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/macro/currency-exchange-rate.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/macro/domestic-debt-securities.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/macro/domestic-trade.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/macro/energy.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/macro/foreign-assets.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/macro/foreign-trade.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/macro/gdp.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/macro/gold-price.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/macro/industrialization.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/macro/interest-rates.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/macro/investment-in-fixed-assets.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/macro/investor.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/macro/leverage-ratio.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/macro/money-supply.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/macro/national-debt.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/macro/national-finance.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/macro/natural-gas.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/macro/non-ferrous-metals.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/macro/official-reserve-assets.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/macro/platinum-price.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/macro/population.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/macro/price-index.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/macro/real-estate.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/macro/required-reserves.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/macro/rmb-deposits.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/macro/rmb-loans.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/macro/rmbidx.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/macro/silver-price.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/macro/social-financing.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/macro/stamp-duty.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/macro/traffic-transportation.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/macro/unemployment-rate.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/macro/usdx.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/macro/vix-fear-index.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/us/index/candlestick.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/us/index/constituents.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/us/index/drawdown.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/us/index/fs/non_financial.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/us/index/fundamental.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/us/index/hot/cp.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/us/index/hot/ifet_sni.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/us/index/tracking-fund.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/us/index/volatility.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/lixinger-api/us/index.md +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/mkdocs.yml +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/mypy.ini +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/scripts/explore_api.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/scripts/generate_docs.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/scripts/publish.sh +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/tests/api/cn/company/test_announcement.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/tests/api/cn/company/test_dividend.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/tests/api/cn/index/test_constituents.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/tests/conftest.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/tests/test_bank_statements.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/tests/test_candlestick.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/tests/test_client.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/tests/test_cn_index_candlestick.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/tests/test_cn_index_constituent_weightings.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/tests/test_company.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/tests/test_company_profile.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/tests/test_equity_change.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/tests/test_fund.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/tests/test_fund_announcement.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/tests/test_fund_asset_combination.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/tests/test_fund_asset_industry_combination.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/tests/test_fund_candlestick.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/tests/test_fund_profile.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/tests/test_fund_shareholdings.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/tests/test_fundamental.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/tests/test_fundamental_bank.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/tests/test_fundamental_security.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/tests/test_index.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/tests/test_index_constituents.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/tests/test_index_drawdown.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/tests/test_index_fs_bank.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/tests/test_index_fs_hybrid.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/tests/test_index_fs_non_financial.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/tests/test_index_fs_security.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/tests/test_index_fundamental.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/tests/test_index_margin_trading.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/tests/test_indices.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/tests/test_industry_margin_trading.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/tests/test_insurance_statements.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/tests/test_integration.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/tests/test_non_financial_statements.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/tests/test_other_financial_statements.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/tests/test_security_statements.py +0 -0
- {lixinger_python-0.3.11 → lixinger_python-0.3.12}/tests/test_tracking_fund.py +0 -0
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"permissions": {
|
|
3
|
+
"allow": [
|
|
4
|
+
"Bash(uv run *)",
|
|
5
|
+
"Bash(git add *)",
|
|
6
|
+
"Bash(git commit -m ' *)",
|
|
7
|
+
"Bash(git commit *)",
|
|
8
|
+
"Bash(python -c ' *)",
|
|
9
|
+
"Bash(git stash *)",
|
|
10
|
+
"Bash(gh run *)",
|
|
11
|
+
"Bash(git tag *)",
|
|
12
|
+
"Bash(git push *)",
|
|
13
|
+
"Bash(uv sync *)",
|
|
14
|
+
"Bash(curl -s https://pypi.org/pypi/lixinger-python/0.3.11/json)",
|
|
15
|
+
"Bash(python3 -c \"import sys, json; d = json.load\\(sys.stdin\\); print\\('Name:', d['info']['name']\\); print\\('Version:', d['info']['version']\\); print\\('Files:', len\\(d['urls']\\)\\)\")"
|
|
16
|
+
]
|
|
17
|
+
}
|
|
18
|
+
}
|
|
@@ -40,11 +40,12 @@ Layer 1 Infrastructure lixinger/utils/*
|
|
|
40
40
|
lixinger-python/
|
|
41
41
|
├── lixinger/ # SDK 主包(client / config / exceptions / __init__)
|
|
42
42
|
│ ├── api/ # Layer 2+3:base.py + 按 REST 路径组织的端点模块
|
|
43
|
-
│ │
|
|
44
|
-
│ │
|
|
45
|
-
│ │
|
|
46
|
-
│ │
|
|
47
|
-
│ │
|
|
43
|
+
│ │ ├── cn/ # 中国大陆市场
|
|
44
|
+
│ │ │ ├── company/ # /cn/company/*(含 fs/ 与 fundamental/ 按公司类型细分)
|
|
45
|
+
│ │ │ ├── index/ # /cn/index/*(含 fs/ 按指数类型细分)
|
|
46
|
+
│ │ │ ├── industry/ # /cn/industry/*(含 margin_trading/ 按行业分类系统细分)
|
|
47
|
+
│ │ │ └── fund/ # /cn/fund/*
|
|
48
|
+
│ │ └── macro/ # /macro/*(宏观数据:national_debt / rmb_deposits / rmb_loans / social_financing / ...)
|
|
48
49
|
│ ├── models/ # Pandera DataFrame Schema(结构镜像 api/)
|
|
49
50
|
│ └── utils/ # rate_limiter / retry / dataframe / dict / api 装饰器
|
|
50
51
|
│
|
|
@@ -0,0 +1,204 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
|
|
5
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
|
+
|
|
8
|
+
## [Unreleased]
|
|
9
|
+
|
|
10
|
+
### Planned
|
|
11
|
+
- Add support for US stock market APIs
|
|
12
|
+
- Add caching mechanism for API responses
|
|
13
|
+
|
|
14
|
+
## [0.3.12] - 2026-07-05
|
|
15
|
+
|
|
16
|
+
### Added
|
|
17
|
+
- 宏观数据 API 家族 (`/macro/*`) —— 新增顶级 `client.macro` namespace:
|
|
18
|
+
- `POST /macro/national-debt` — 国债收益率 (cn / us, 三月~三十年期), flat metrics —
|
|
19
|
+
`client.macro.national_debt.get_national_debt()` / `get_national_debt()`
|
|
20
|
+
- `POST /macro/rmb-deposits` — 人民币存款 (含住户/非金融企业/机关/财政等分项;
|
|
21
|
+
支持 y/m 粒度与 t/c/y2y/c2c 等表达式), 嵌套 metrics 自动 flatten 为 `y.rmb_d.t` 列 —
|
|
22
|
+
`client.macro.rmb_deposits.get_rmb_deposits()` / `get_rmb_deposits()`
|
|
23
|
+
- `POST /macro/rmb-loans` — 人民币贷款 (含住户/企事业单位/票据融资等分项) —
|
|
24
|
+
`client.macro.rmb_loans.get_rmb_loans()` / `get_rmb_loans()`
|
|
25
|
+
- `POST /macro/social-financing` — 社会融资规模 (含 rmbl/fl/el/tl/ubc/nf_cb/gb 等分项) —
|
|
26
|
+
`client.macro.social_financing.get_social_financing()` / `get_social_financing()`
|
|
27
|
+
|
|
28
|
+
## [0.3.11] - 2026-07-05
|
|
29
|
+
|
|
30
|
+
### Added
|
|
31
|
+
- 行业融资融券 API (`/cn/industry/margin-trading-and-securities-lending/*`)
|
|
32
|
+
covering three industry classification systems:
|
|
33
|
+
- `sw`: 申万行业 — `client.cn_industry.margin_trading.sw.get_margin_trading()`
|
|
34
|
+
/ `get_industry_sw_margin_trading()`
|
|
35
|
+
- `sw_2021`: 申万2021版行业 — `client.cn_industry.margin_trading.sw_2021.get_margin_trading()`
|
|
36
|
+
/ `get_industry_sw_2021_margin_trading()`
|
|
37
|
+
- `cni`: 国证行业 — `client.cn_industry.margin_trading.cni.get_margin_trading()`
|
|
38
|
+
/ `get_industry_cni_margin_trading()`
|
|
39
|
+
- `IndustryNamespace` grouped under `client.cn_industry` (with `client.industry` alias)
|
|
40
|
+
|
|
41
|
+
## [0.3.10] - 2026-07-05
|
|
42
|
+
|
|
43
|
+
### Fixed
|
|
44
|
+
- Add missing return / argument type annotations to satisfy ANN rules
|
|
45
|
+
|
|
46
|
+
### Changed
|
|
47
|
+
- Rewrite architecture / dev docs and enforce style via lint
|
|
48
|
+
|
|
49
|
+
## [0.3.9] - 2026-07-03
|
|
50
|
+
|
|
51
|
+
### Added
|
|
52
|
+
- 指数融资融券 API (`/cn/index/margin-trading-and-securities-lending`) —
|
|
53
|
+
`client.cn_index.margin_trading.get_margin_trading()` /
|
|
54
|
+
`get_index_margin_trading()`
|
|
55
|
+
|
|
56
|
+
## [0.3.8] - 2026-06-29
|
|
57
|
+
|
|
58
|
+
### Added
|
|
59
|
+
- 大陆公司财务报表 (fs) 数据 by company type:
|
|
60
|
+
bank / insurance / security / other_financial
|
|
61
|
+
(`/cn/company/fs/{bank,insurance,security,other_financial}`)
|
|
62
|
+
|
|
63
|
+
## [0.3.7] - 2026-06-28
|
|
64
|
+
|
|
65
|
+
### Added
|
|
66
|
+
- 大陆指数财务报表 (fs) 数据 by index type:
|
|
67
|
+
non_financial / bank / security / hybrid
|
|
68
|
+
(`/cn/index/fs/{non_financial,bank,security,hybrid}`)
|
|
69
|
+
|
|
70
|
+
## [0.3.6] - 2026-06-13
|
|
71
|
+
|
|
72
|
+
### Fixed
|
|
73
|
+
- Allow null / missing `types` field in announcement schema
|
|
74
|
+
|
|
75
|
+
## [0.3.5] - 2026-04-17
|
|
76
|
+
|
|
77
|
+
### Changed
|
|
78
|
+
- Pin strict version dependencies in `pyproject.toml`
|
|
79
|
+
|
|
80
|
+
## [0.3.4] - 2026-04-17
|
|
81
|
+
|
|
82
|
+
### Changed
|
|
83
|
+
- Update candlestick API
|
|
84
|
+
|
|
85
|
+
## [0.3.3] - 2026-04-01
|
|
86
|
+
|
|
87
|
+
### Added
|
|
88
|
+
- Append `status` field to dividend response
|
|
89
|
+
|
|
90
|
+
## [0.3.2] - 2026-03-17
|
|
91
|
+
|
|
92
|
+
### Fixed
|
|
93
|
+
- Fix index info API
|
|
94
|
+
- Fix constituent_weighting API
|
|
95
|
+
- Fix index constituents API
|
|
96
|
+
|
|
97
|
+
## [0.3.1] - 2026-03-10
|
|
98
|
+
|
|
99
|
+
### Fixed
|
|
100
|
+
- Fix dividend API
|
|
101
|
+
|
|
102
|
+
## [0.3.0] - 2026-02-26
|
|
103
|
+
|
|
104
|
+
### Added
|
|
105
|
+
- Implement `/cn/company/fundamental/security` API endpoint
|
|
106
|
+
- Implement `/cn/company/fundamental/bank` API endpoint
|
|
107
|
+
- Documentation updates
|
|
108
|
+
|
|
109
|
+
## [0.2.0] - 2026-02-26
|
|
110
|
+
|
|
111
|
+
### ⚠️ BREAKING CHANGES
|
|
112
|
+
|
|
113
|
+
This release completely migrates the SDK to async/await. All existing code must be updated.
|
|
114
|
+
|
|
115
|
+
**Migration Guide:**
|
|
116
|
+
|
|
117
|
+
```python
|
|
118
|
+
# v0.1.x (old - blocking)
|
|
119
|
+
from lixinger import LixingerClient
|
|
120
|
+
|
|
121
|
+
with LixingerClient() as client:
|
|
122
|
+
df = client.company.company.get_company(["000001"])
|
|
123
|
+
|
|
124
|
+
# v0.2.0 (new - async)
|
|
125
|
+
import asyncio
|
|
126
|
+
from lixinger import AsyncLixingerClient
|
|
127
|
+
|
|
128
|
+
async def main():
|
|
129
|
+
async with AsyncLixingerClient() as client:
|
|
130
|
+
df = await client.company.company.get_company(["000001"])
|
|
131
|
+
|
|
132
|
+
asyncio.run(main())
|
|
133
|
+
```
|
|
134
|
+
|
|
135
|
+
### Changed
|
|
136
|
+
- **BREAKING**: `LixingerClient` renamed to `AsyncLixingerClient`
|
|
137
|
+
- **BREAKING**: All API methods now return coroutines and must be awaited
|
|
138
|
+
- **BREAKING**: Context manager now requires `async with` instead of `with`
|
|
139
|
+
- **BREAKING**: `client.close()` is now async and must be awaited
|
|
140
|
+
- **BREAKING**: All functional APIs (e.g., `get_company()`) are now async
|
|
141
|
+
- Replaced `httpx.Client` with `httpx.AsyncClient`
|
|
142
|
+
- Replaced `time.sleep` with `asyncio.sleep` in rate limiter and retry logic
|
|
143
|
+
|
|
144
|
+
### Added
|
|
145
|
+
- ✨ Full async/await support throughout the SDK
|
|
146
|
+
- ✨ Concurrent request capability - query multiple stocks in parallel
|
|
147
|
+
- ✨ Native Jupyter Notebook support (top-level await)
|
|
148
|
+
- ✨ Perfect integration with AI Agent frameworks (LangChain, LlamaIndex)
|
|
149
|
+
- ✨ Compatible with async web frameworks (FastAPI, Sanic, Quart)
|
|
150
|
+
|
|
151
|
+
### Benefits
|
|
152
|
+
- Non-blocking I/O for better performance in async contexts
|
|
153
|
+
- Ability to query multiple stocks concurrently using `asyncio.gather()`
|
|
154
|
+
- Seamless integration with modern Python async ecosystem
|
|
155
|
+
- Ideal for AI agents that need to fetch financial data without blocking
|
|
156
|
+
|
|
157
|
+
## [0.1.0] - 2026-02-24
|
|
158
|
+
|
|
159
|
+
### Added
|
|
160
|
+
- Initial release of lixinger-python SDK
|
|
161
|
+
- Support for company fundamental data APIs (`/cn/company/fundamental/*`)
|
|
162
|
+
- Support for company profile data API (`/cn/company`)
|
|
163
|
+
- Support for company candlestick (OHLC) data API (`/cn/company/fs/non_financial`)
|
|
164
|
+
- Support for index data APIs (`/cn/index`)
|
|
165
|
+
- Environment-based configuration via `.env` file
|
|
166
|
+
- Rate limiting (1000 requests/minute)
|
|
167
|
+
- Automatic retry mechanism for failed requests
|
|
168
|
+
- SOCKS proxy support
|
|
169
|
+
- Full type hints and mypy support
|
|
170
|
+
- Comprehensive test suite with pytest
|
|
171
|
+
- Auto-generated documentation with MkDocs
|
|
172
|
+
- Pre-commit hooks for code quality
|
|
173
|
+
|
|
174
|
+
### Features
|
|
175
|
+
- **LixingerClient**: Main client class with context manager support
|
|
176
|
+
- **Data Models**: Pydantic models for type-safe API responses
|
|
177
|
+
- **DataFrame Support**: All API responses return pandas DataFrame
|
|
178
|
+
- **Error Handling**: Custom exception classes for better error handling
|
|
179
|
+
- **Rate Limiting**: Built-in rate limiter to prevent API throttling
|
|
180
|
+
- **Retry Logic**: Automatic retry with exponential backoff
|
|
181
|
+
|
|
182
|
+
### Developer Tools
|
|
183
|
+
- Ruff for linting and formatting
|
|
184
|
+
- Mypy for type checking
|
|
185
|
+
- Pytest for testing
|
|
186
|
+
- Pre-commit hooks
|
|
187
|
+
- MkDocs for documentation
|
|
188
|
+
|
|
189
|
+
[unreleased]: https://github.com/TedaLIEz/lixinger-python/compare/v0.3.12...HEAD
|
|
190
|
+
[0.3.12]: https://github.com/TedaLIEz/lixinger-python/compare/v0.3.11...v0.3.12
|
|
191
|
+
[0.3.11]: https://github.com/TedaLIEz/lixinger-python/compare/v0.3.10...v0.3.11
|
|
192
|
+
[0.3.10]: https://github.com/TedaLIEz/lixinger-python/compare/v0.3.9...v0.3.10
|
|
193
|
+
[0.3.9]: https://github.com/TedaLIEz/lixinger-python/compare/v0.3.8...v0.3.9
|
|
194
|
+
[0.3.8]: https://github.com/TedaLIEz/lixinger-python/compare/v0.3.7...v0.3.8
|
|
195
|
+
[0.3.7]: https://github.com/TedaLIEz/lixinger-python/compare/v0.3.6...v0.3.7
|
|
196
|
+
[0.3.6]: https://github.com/TedaLIEz/lixinger-python/compare/v0.3.5...v0.3.6
|
|
197
|
+
[0.3.5]: https://github.com/TedaLIEz/lixinger-python/compare/v0.3.4...v0.3.5
|
|
198
|
+
[0.3.4]: https://github.com/TedaLIEz/lixinger-python/compare/v0.3.3...v0.3.4
|
|
199
|
+
[0.3.3]: https://github.com/TedaLIEz/lixinger-python/compare/v0.3.2...v0.3.3
|
|
200
|
+
[0.3.2]: https://github.com/TedaLIEz/lixinger-python/compare/v0.3.1...v0.3.2
|
|
201
|
+
[0.3.1]: https://github.com/TedaLIEz/lixinger-python/compare/v0.3.0...v0.3.1
|
|
202
|
+
[0.3.0]: https://github.com/TedaLIEz/lixinger-python/compare/v0.2.0...v0.3.0
|
|
203
|
+
[0.2.0]: https://github.com/TedaLIEz/lixinger-python/compare/v0.1.0...v0.2.0
|
|
204
|
+
[0.1.0]: https://github.com/TedaLIEz/lixinger-python/releases/tag/v0.1.0
|
|
@@ -47,6 +47,12 @@ from lixinger.api.cn.industry import (
|
|
|
47
47
|
get_industry_sw_2021_margin_trading,
|
|
48
48
|
get_industry_sw_margin_trading,
|
|
49
49
|
)
|
|
50
|
+
from lixinger.api.macro import (
|
|
51
|
+
get_national_debt,
|
|
52
|
+
get_rmb_deposits,
|
|
53
|
+
get_rmb_loans,
|
|
54
|
+
get_social_financing,
|
|
55
|
+
)
|
|
50
56
|
from lixinger.client import AsyncLixingerClient
|
|
51
57
|
from lixinger.config import set_token
|
|
52
58
|
from lixinger.exceptions import (
|
|
@@ -104,4 +110,9 @@ __all__ = [
|
|
|
104
110
|
"get_industry_sw_margin_trading",
|
|
105
111
|
"get_industry_sw_2021_margin_trading",
|
|
106
112
|
"get_industry_cni_margin_trading",
|
|
113
|
+
# Macro
|
|
114
|
+
"get_national_debt",
|
|
115
|
+
"get_rmb_deposits",
|
|
116
|
+
"get_rmb_loans",
|
|
117
|
+
"get_social_financing",
|
|
107
118
|
]
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
"""Macro APIs.
|
|
2
|
+
|
|
3
|
+
This module provides access to macroeconomic data APIs:
|
|
4
|
+
|
|
5
|
+
- national_debt: 国债收益率 (/macro/national-debt)
|
|
6
|
+
- rmb_deposits: 人民币存款 (/macro/rmb-deposits)
|
|
7
|
+
- rmb_loans: 人民币贷款 (/macro/rmb-loans)
|
|
8
|
+
- social_financing: 社会融资规模 (/macro/social-financing)
|
|
9
|
+
"""
|
|
10
|
+
|
|
11
|
+
from lixinger.api.macro.national_debt import NationalDebtAPI, get_national_debt
|
|
12
|
+
from lixinger.api.macro.rmb_deposits import RmbDepositsAPI, get_rmb_deposits
|
|
13
|
+
from lixinger.api.macro.rmb_loans import RmbLoansAPI, get_rmb_loans
|
|
14
|
+
from lixinger.api.macro.social_financing import (
|
|
15
|
+
SocialFinancingAPI,
|
|
16
|
+
get_social_financing,
|
|
17
|
+
)
|
|
18
|
+
|
|
19
|
+
__all__ = [
|
|
20
|
+
# API Classes
|
|
21
|
+
"NationalDebtAPI",
|
|
22
|
+
"RmbDepositsAPI",
|
|
23
|
+
"RmbLoansAPI",
|
|
24
|
+
"SocialFinancingAPI",
|
|
25
|
+
# Functional APIs
|
|
26
|
+
"get_national_debt",
|
|
27
|
+
"get_rmb_deposits",
|
|
28
|
+
"get_rmb_loans",
|
|
29
|
+
"get_social_financing",
|
|
30
|
+
]
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
"""Macro namespace for grouping related APIs."""
|
|
2
|
+
|
|
3
|
+
from typing import Any
|
|
4
|
+
|
|
5
|
+
import pandas as pd
|
|
6
|
+
|
|
7
|
+
from lixinger.api.macro.national_debt import NationalDebtAPI
|
|
8
|
+
from lixinger.api.macro.rmb_deposits import RmbDepositsAPI
|
|
9
|
+
from lixinger.api.macro.rmb_loans import RmbLoansAPI
|
|
10
|
+
from lixinger.api.macro.social_financing import SocialFinancingAPI
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
class MacroNamespace:
|
|
14
|
+
"""Namespace for macroeconomic APIs.
|
|
15
|
+
|
|
16
|
+
This class groups all macro APIs under a single namespace.
|
|
17
|
+
Access APIs via their specific attributes:
|
|
18
|
+
|
|
19
|
+
- national_debt: 国债收益率 API
|
|
20
|
+
- rmb_deposits: 人民币存款 API
|
|
21
|
+
- rmb_loans: 人民币贷款 API
|
|
22
|
+
- social_financing: 社会融资 API
|
|
23
|
+
|
|
24
|
+
"""
|
|
25
|
+
|
|
26
|
+
def __init__(
|
|
27
|
+
self,
|
|
28
|
+
national_debt: NationalDebtAPI,
|
|
29
|
+
rmb_deposits: RmbDepositsAPI,
|
|
30
|
+
rmb_loans: RmbLoansAPI,
|
|
31
|
+
social_financing: SocialFinancingAPI,
|
|
32
|
+
) -> None:
|
|
33
|
+
"""Initialize the macro namespace.
|
|
34
|
+
|
|
35
|
+
Args:
|
|
36
|
+
national_debt: 国债 API
|
|
37
|
+
rmb_deposits: 人民币存款 API
|
|
38
|
+
rmb_loans: 人民币贷款 API
|
|
39
|
+
social_financing: 社会融资 API
|
|
40
|
+
|
|
41
|
+
"""
|
|
42
|
+
self.national_debt = national_debt
|
|
43
|
+
self.rmb_deposits = rmb_deposits
|
|
44
|
+
self.rmb_loans = rmb_loans
|
|
45
|
+
self.social_financing = social_financing
|
|
46
|
+
|
|
47
|
+
# Convenience aliases for shorter access
|
|
48
|
+
async def get_national_debt(self, *args: Any, **kwargs: Any) -> pd.DataFrame:
|
|
49
|
+
"""Alias for national_debt.get_national_debt."""
|
|
50
|
+
return await self.national_debt.get_national_debt(*args, **kwargs)
|
|
51
|
+
|
|
52
|
+
async def get_rmb_deposits(self, *args: Any, **kwargs: Any) -> pd.DataFrame:
|
|
53
|
+
"""Alias for rmb_deposits.get_rmb_deposits."""
|
|
54
|
+
return await self.rmb_deposits.get_rmb_deposits(*args, **kwargs)
|
|
55
|
+
|
|
56
|
+
async def get_rmb_loans(self, *args: Any, **kwargs: Any) -> pd.DataFrame:
|
|
57
|
+
"""Alias for rmb_loans.get_rmb_loans."""
|
|
58
|
+
return await self.rmb_loans.get_rmb_loans(*args, **kwargs)
|
|
59
|
+
|
|
60
|
+
async def get_social_financing(self, *args: Any, **kwargs: Any) -> pd.DataFrame:
|
|
61
|
+
"""Alias for social_financing.get_social_financing."""
|
|
62
|
+
return await self.social_financing.get_social_financing(*args, **kwargs)
|
|
@@ -0,0 +1,122 @@
|
|
|
1
|
+
"""国债 API."""
|
|
2
|
+
|
|
3
|
+
from typing import Any
|
|
4
|
+
|
|
5
|
+
import pandas as pd
|
|
6
|
+
|
|
7
|
+
from lixinger.api.base import BaseAPI
|
|
8
|
+
from lixinger.models.macro.national_debt import NationalDebt
|
|
9
|
+
from lixinger.utils.api import api
|
|
10
|
+
from lixinger.utils.dataframe import get_response_df
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
class NationalDebtAPI(BaseAPI):
|
|
14
|
+
"""国债 API."""
|
|
15
|
+
|
|
16
|
+
async def get_national_debt(
|
|
17
|
+
self,
|
|
18
|
+
area_code: str,
|
|
19
|
+
start_date: str,
|
|
20
|
+
end_date: str,
|
|
21
|
+
metrics_list: list[str],
|
|
22
|
+
limit: int | None = None,
|
|
23
|
+
) -> pd.DataFrame:
|
|
24
|
+
"""获取国债数据.
|
|
25
|
+
|
|
26
|
+
获取国债收益率数据. 可按时间范围获取大陆和美国各期限国债的收益率数据,
|
|
27
|
+
包括三月期/六月期/一年期/二年期/三年期/五年期/七年期/十年期/二十年期/
|
|
28
|
+
三十年期收益率. 当用户想了解无风险利率水平或利率期限结构时, 调用此接口.
|
|
29
|
+
|
|
30
|
+
API Endpoint: /macro/national-debt
|
|
31
|
+
API Method: POST
|
|
32
|
+
API Doc: https://www.lixinger.com/open/api/doc?api-key=macro/national-debt
|
|
33
|
+
|
|
34
|
+
Args:
|
|
35
|
+
area_code: 地区代码, ``cn`` 或 ``us``.
|
|
36
|
+
start_date: 信息起始时间 (YYYY-MM-DD, 北京时间), 开始和结束的时间间隔不超过10年.
|
|
37
|
+
end_date: 信息结束时间 (YYYY-MM-DD, 北京时间).
|
|
38
|
+
metrics_list: 指标列表, 例如 ``["tcm_m3", "tcm_y10"]``.
|
|
39
|
+
支持的指标: ``tcm_m3``, ``tcm_m6``, ``tcm_y1``, ``tcm_y2``, ``tcm_y3``,
|
|
40
|
+
``tcm_y5``, ``tcm_y7``, ``tcm_y10``, ``tcm_y20``, ``tcm_y30``.
|
|
41
|
+
limit: 返回最近数据的数量.
|
|
42
|
+
|
|
43
|
+
Returns:
|
|
44
|
+
DataFrame 包含以下列:
|
|
45
|
+
|
|
46
|
+
- date: 数据时间
|
|
47
|
+
- area_code: 地区代码
|
|
48
|
+
- 各请求指标 (如 tcm_m3, tcm_y10 等)
|
|
49
|
+
|
|
50
|
+
Example:
|
|
51
|
+
获取大陆三月期国债收益率::
|
|
52
|
+
|
|
53
|
+
from lixinger import AsyncLixingerClient
|
|
54
|
+
|
|
55
|
+
async with AsyncLixingerClient() as client:
|
|
56
|
+
df = await client.macro.national_debt.get_national_debt(
|
|
57
|
+
area_code="cn",
|
|
58
|
+
start_date="2025-06-13",
|
|
59
|
+
end_date="2026-06-13",
|
|
60
|
+
metrics_list=["tcm_m3"],
|
|
61
|
+
)
|
|
62
|
+
print(df)
|
|
63
|
+
|
|
64
|
+
"""
|
|
65
|
+
payload: dict[str, Any] = {
|
|
66
|
+
"areaCode": area_code,
|
|
67
|
+
"startDate": start_date,
|
|
68
|
+
"endDate": end_date,
|
|
69
|
+
"metricsList": metrics_list,
|
|
70
|
+
}
|
|
71
|
+
if limit is not None:
|
|
72
|
+
payload["limit"] = limit
|
|
73
|
+
|
|
74
|
+
data = await self._request("POST", "/macro/national-debt", json=payload)
|
|
75
|
+
return get_response_df(data, NationalDebt)
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
# Functional API instance
|
|
79
|
+
_api_instance = NationalDebtAPI()
|
|
80
|
+
|
|
81
|
+
|
|
82
|
+
@api
|
|
83
|
+
async def get_national_debt(
|
|
84
|
+
area_code: str,
|
|
85
|
+
start_date: str,
|
|
86
|
+
end_date: str,
|
|
87
|
+
metrics_list: list[str],
|
|
88
|
+
limit: int | None = None,
|
|
89
|
+
) -> pd.DataFrame:
|
|
90
|
+
"""获取国债数据.
|
|
91
|
+
|
|
92
|
+
Args:
|
|
93
|
+
area_code: 地区代码, ``cn`` 或 ``us``.
|
|
94
|
+
start_date: 信息起始时间 (YYYY-MM-DD).
|
|
95
|
+
end_date: 信息结束时间 (YYYY-MM-DD).
|
|
96
|
+
metrics_list: 指标列表, 例如 ``["tcm_m3", "tcm_y10"]``.
|
|
97
|
+
limit: 返回最近数据的数量.
|
|
98
|
+
|
|
99
|
+
Returns:
|
|
100
|
+
DataFrame 包含国债收益率数据.
|
|
101
|
+
|
|
102
|
+
Example:
|
|
103
|
+
获取大陆三月期国债收益率::
|
|
104
|
+
|
|
105
|
+
from lixinger import get_national_debt
|
|
106
|
+
|
|
107
|
+
df = await get_national_debt(
|
|
108
|
+
area_code="cn",
|
|
109
|
+
start_date="2025-06-13",
|
|
110
|
+
end_date="2026-06-13",
|
|
111
|
+
metrics_list=["tcm_m3"],
|
|
112
|
+
)
|
|
113
|
+
print(df)
|
|
114
|
+
|
|
115
|
+
"""
|
|
116
|
+
return await _api_instance.get_national_debt(
|
|
117
|
+
area_code=area_code,
|
|
118
|
+
start_date=start_date,
|
|
119
|
+
end_date=end_date,
|
|
120
|
+
metrics_list=metrics_list,
|
|
121
|
+
limit=limit,
|
|
122
|
+
)
|
|
@@ -0,0 +1,126 @@
|
|
|
1
|
+
"""人民币存款 API."""
|
|
2
|
+
|
|
3
|
+
from typing import Any
|
|
4
|
+
|
|
5
|
+
import pandas as pd
|
|
6
|
+
|
|
7
|
+
from lixinger.api.base import BaseAPI
|
|
8
|
+
from lixinger.models.macro.rmb_deposits import RmbDeposits
|
|
9
|
+
from lixinger.utils.api import api
|
|
10
|
+
from lixinger.utils.dataframe import get_response_df
|
|
11
|
+
from lixinger.utils.dict import flatten_dict
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
class RmbDepositsAPI(BaseAPI):
|
|
15
|
+
"""人民币存款 API."""
|
|
16
|
+
|
|
17
|
+
async def get_rmb_deposits(
|
|
18
|
+
self,
|
|
19
|
+
area_code: str,
|
|
20
|
+
start_date: str,
|
|
21
|
+
end_date: str,
|
|
22
|
+
metrics_list: list[str],
|
|
23
|
+
limit: int | None = None,
|
|
24
|
+
) -> pd.DataFrame:
|
|
25
|
+
"""获取人民币存款数据.
|
|
26
|
+
|
|
27
|
+
获取人民币存款数据, 包括人民币存款、境内存款、境外存款、住户存款、
|
|
28
|
+
非金融企业存款、机关团体存款、财政性存款、非银行业金融机构存款、住户活期存款、
|
|
29
|
+
住户定期及其他存款、非金融企业活期存款、非金融企业定期及其他存款等. 支持
|
|
30
|
+
存量及月度新增, 以及同比环比等. 当用户想了解银行负债端结构或居民储蓄意愿时,
|
|
31
|
+
调用此接口.
|
|
32
|
+
|
|
33
|
+
API Endpoint: /macro/rmb-deposits
|
|
34
|
+
API Method: POST
|
|
35
|
+
API Doc: https://www.lixinger.com/open/api/doc?api-key=macro/rmb-deposits
|
|
36
|
+
|
|
37
|
+
Args:
|
|
38
|
+
area_code: 地区代码, 目前仅支持 ``cn``.
|
|
39
|
+
start_date: 信息起始时间 (YYYY-MM-DD, 北京时间), 开始和结束的时间间隔不超过10年.
|
|
40
|
+
end_date: 信息结束时间 (YYYY-MM-DD, 北京时间).
|
|
41
|
+
metrics_list: 指标列表, 格式为
|
|
42
|
+
``[granularity].[metricsName].[expressionCalculateType]``,
|
|
43
|
+
例如 ``["y.rmb_d.t", "m.rmb_d.c_y2y"]``.
|
|
44
|
+
limit: 返回最近数据的数量.
|
|
45
|
+
|
|
46
|
+
Returns:
|
|
47
|
+
DataFrame 包含以下列:
|
|
48
|
+
|
|
49
|
+
- date: 数据时间
|
|
50
|
+
- 各请求指标 (点号分隔, 例如 ``y.rmb_d.t``)
|
|
51
|
+
|
|
52
|
+
Example:
|
|
53
|
+
获取大陆人民币存款年度累积值::
|
|
54
|
+
|
|
55
|
+
from lixinger import AsyncLixingerClient
|
|
56
|
+
|
|
57
|
+
async with AsyncLixingerClient() as client:
|
|
58
|
+
df = await client.macro.rmb_deposits.get_rmb_deposits(
|
|
59
|
+
area_code="cn",
|
|
60
|
+
start_date="2023-06-13",
|
|
61
|
+
end_date="2026-06-13",
|
|
62
|
+
metrics_list=["y.rmb_d.t"],
|
|
63
|
+
)
|
|
64
|
+
print(df)
|
|
65
|
+
|
|
66
|
+
"""
|
|
67
|
+
payload: dict[str, Any] = {
|
|
68
|
+
"areaCode": area_code,
|
|
69
|
+
"startDate": start_date,
|
|
70
|
+
"endDate": end_date,
|
|
71
|
+
"metricsList": metrics_list,
|
|
72
|
+
}
|
|
73
|
+
if limit is not None:
|
|
74
|
+
payload["limit"] = limit
|
|
75
|
+
|
|
76
|
+
data = await self._request("POST", "/macro/rmb-deposits", json=payload)
|
|
77
|
+
# Flatten nested metrics (e.g. {"y": {"rmb_d": {"t": ...}}})
|
|
78
|
+
flattened_data = [flatten_dict(item) for item in data]
|
|
79
|
+
return get_response_df(flattened_data, RmbDeposits)
|
|
80
|
+
|
|
81
|
+
|
|
82
|
+
# Functional API instance
|
|
83
|
+
_api_instance = RmbDepositsAPI()
|
|
84
|
+
|
|
85
|
+
|
|
86
|
+
@api
|
|
87
|
+
async def get_rmb_deposits(
|
|
88
|
+
area_code: str,
|
|
89
|
+
start_date: str,
|
|
90
|
+
end_date: str,
|
|
91
|
+
metrics_list: list[str],
|
|
92
|
+
limit: int | None = None,
|
|
93
|
+
) -> pd.DataFrame:
|
|
94
|
+
"""获取人民币存款数据.
|
|
95
|
+
|
|
96
|
+
Args:
|
|
97
|
+
area_code: 地区代码, 目前仅支持 ``cn``.
|
|
98
|
+
start_date: 信息起始时间 (YYYY-MM-DD).
|
|
99
|
+
end_date: 信息结束时间 (YYYY-MM-DD).
|
|
100
|
+
metrics_list: 指标列表, 例如 ``["y.rmb_d.t"]``.
|
|
101
|
+
limit: 返回最近数据的数量.
|
|
102
|
+
|
|
103
|
+
Returns:
|
|
104
|
+
DataFrame 包含人民币存款数据.
|
|
105
|
+
|
|
106
|
+
Example:
|
|
107
|
+
获取大陆人民币存款年度累积值::
|
|
108
|
+
|
|
109
|
+
from lixinger import get_rmb_deposits
|
|
110
|
+
|
|
111
|
+
df = await get_rmb_deposits(
|
|
112
|
+
area_code="cn",
|
|
113
|
+
start_date="2023-06-13",
|
|
114
|
+
end_date="2026-06-13",
|
|
115
|
+
metrics_list=["y.rmb_d.t"],
|
|
116
|
+
)
|
|
117
|
+
print(df)
|
|
118
|
+
|
|
119
|
+
"""
|
|
120
|
+
return await _api_instance.get_rmb_deposits(
|
|
121
|
+
area_code=area_code,
|
|
122
|
+
start_date=start_date,
|
|
123
|
+
end_date=end_date,
|
|
124
|
+
metrics_list=metrics_list,
|
|
125
|
+
limit=limit,
|
|
126
|
+
)
|