当前位置:首页>python>量化系列(九十八) Python 获取 A 股历史股票池完整行情数据|附可直接运行完整源码

量化系列(九十八) Python 获取 A 股历史股票池完整行情数据|附可直接运行完整源码

  • 2026-08-18 23:11:41
量化系列(九十八) Python 获取 A 股历史股票池完整行情数据|附可直接运行完整源码

一. 认真学完这一章节,你可以做什么?

这一章节,我们来获取历史的股票池数据信息,并且将其友好的展示出来, 方便后续的统计处理。

可以将其存在这段时间内的数据展示出来,并且标记展示出来。

这样可以很方便的看到 涨停的股票 前几天的涨幅是什么样子的,后几天的涨幅是什么样子的。

这个功能,是非常强大的,大家一定要学会应用。

本文含系统自动匹配的广告,广告收入用于支持持续创作,感谢理解

二.    数据源和响应信息

获取历史的股票池数据信息,可以调用   POST

https://www.yueshushu.top/StockApi/stockPool/listPool?sign=stock

请求参数是:

{    "pageNum": 1,    "pageSize": 10,    "keywords":null,    "poolType": "1",    "startDate": "2026-07-27",    "endDate": "2026-08-03"}

其中 keywords 为 股票的编码关键词。

响应参数形式是:

{    "code": 20000,    "success": true,    "message": null,    "timestamp": 1785736242053,    "traceId": "18d1f200-ecf5-4271-9764-bb216f30cd05",    "timestampStr": "2026-08-03 13:50:42",    "exceptionMessage": null,    "customInfo": "如果你对我的接口感兴趣,请联系我:+v: yueshushu_top",    "data": {        "total": 333,        "list": [            {                "code": "603801",                "name": "志邦家居",                "wxCode": null,                "bkCode": null,                "bkName": null,                "bkUrl": null,                "score": null,                "zt": null,                "predicateScore": null,                "aiScore": null,                "jaiScore": null,                "scoreMessage": null,                "currDate": null,                "amplitudeProportion": null,                "detailList": [                    {                        "currDate": "2026-07-27",                        "type": 1,                        "amplitudeProportion": "2.90",                        "closePrice": "5.33",                        "sign": 0,                        "redShow": 0,                        "totalProportion": null,                        "wxTotalProportion": null                    },                    {                        "currDate": "2026-07-28",                        "type": 1,                        "amplitudeProportion": "1.13",                        "closePrice": "5.39",                        "sign": 0,                        "redShow": 0,                        "totalProportion": null,                        "wxTotalProportion": null                    },                    {                        "currDate": "2026-07-29",                        "type": 1,                        "amplitudeProportion": "10.02",                        "closePrice": "5.93",                        "sign": 1,                        "redShow": 0,                        "totalProportion": null,                        "wxTotalProportion": null                    },                    {                        "currDate": "2026-07-30",                        "type": -1,                        "amplitudeProportion": "-2.70",                        "closePrice": "5.77",                        "sign": 0,                        "redShow": 0,                        "totalProportion": null,                        "wxTotalProportion": null                    },                    {                        "currDate": "2026-07-31",                        "type": 1,                        "amplitudeProportion": "0.69",                        "closePrice": "5.81",                        "sign": 0,                        "redShow": 0,                        "totalProportion": null,                        "wxTotalProportion": null                    },                    {                        "currDate": "2026-08-03",                        "type": null,                        "amplitudeProportion": null,                        "closePrice": null,                        "sign": 0,                        "redShow": 0,                        "totalProportion": null,                        "wxTotalProportion": null                    }                ],                "webUrl": null,                "showCode": null,                "maxGainPercent": null,                "maxGainDate": null,                "finalGainPercent": null,                "maxLossPercent": null,                "maxLossDate": null,                "avgGainPercent": null,                "maxDailyGainPercent": null,                "maxDailyGainDate": null,                "maxDailyLossPercent": null,                "maxDailyLossDate": null,                "dailyReturnList": null,                "dailyDateList": null,                "expiryProfitPercent": null,                "expiryProfitAmount": null,                "buyPrice": null            }        ]    }}

三.   Python 实现获取股票的实时股票池数据信息

为了方便大家理解和使用, 小亥将采用 streamlit  进行编写相关的脚本, 这样有页面,也方便点击

大家可以通过 AI 自行实现,  小亥这儿提供一个简单的版本。

脚本名称为   stock_pool_history.py

直接复制粘贴即可

import streamlit as stimport requestsimport pandas as pdfrom datetime import date, timedelta# ===================== 全局配置 =====================HEADERS = {    "Authorization": "stock",    "Content-Type": "application/json",    "Accept": "*/*",    "Host": "www.yueshushu.top",    "Connection": "keep-alive"}API_URL = "https://www.yueshushu.top/StockApi/stockPool/listPool"# 股票池类型枚举POOL_TYPES = [    {"code": "1", "name": "涨停"},    {"code": "2", "name": "跌停"},    {"code": "3", "name": "昨日涨停"},    {"code": "4", "name": "强势"},    {"code": "5", "name": "次新"},    {"code": "6", "name": "炸板"},    {"code": "7", "name": "热门股"},]# 页面初始化st.set_page_config(    page_title="金亥跃江_股票池历史矩阵表格查询",    page_icon="📊",    layout="wide")# ===================== 接口请求函数(携带起止日期) =====================def request_stock_data(page_num: int, page_size: int, pool_type: str, keywords: str, start_dt: date, end_dt: date):    payload = {        "pageNum": page_num,        "pageSize": page_size,        "poolType": pool_type,        "keywords": keywords.strip(),        "startDate": start_dt.strftime("%Y-%m-%d"),        "endDate": end_dt.strftime("%Y-%m-%d")    }    try:        resp = requests.post(API_URL, headers=HEADERS, json=payload, timeout=25)        res = resp.json()        if res["success"] and res["code"] == 20000:            total = res["data"]["total"]            stock_list = res["data"]["list"]            update_time = res["timestampStr"]            return stock_list, total, update_time        else:            st.warning(f"接口返回异常:{res.get('message','无数据')}")            return [], 0, ""    except Exception as e:        st.error(f"请求失败:{str(e)}")        return [], 0, ""# ===================== 生成HTML表格 + 空值容错 =====================def build_html_table(stock_raw_list, start_dt: date, end_dt: date):    # 生成区间内所有日期    date_range = pd.date_range(start=start_dt, end=end_dt, freq="D")    date_str_list = [d.strftime("%Y-%m-%d") for d in date_range]    # 表格样式    html = '''    <style>        table {border-collapse: collapse; width:100%; font-size:14px;}        th,td {border:1px solid #ddd; padding:8px; text-align:center;}        th {background-color:#f5f7fa; white-space:nowrap;}        td {white-space:nowrap;}    </style>    <table>    <thead>    <tr>        <th>股票编码</th>        <th>名称</th>    '''    # 拼接日期表头    for day in date_str_list:        html += f"<th>{day}(%)</th>"    html += "</tr></thead><tbody>"    # 逐只股票遍历    for stock in stock_raw_list:        code = stock["code"]        name = stock["name"]        daily_map = {}        for day_info in stock["detailList"]:            d = day_info["currDate"]            # 空值兼容:None则赋值0或者横线标识            close_raw = day_info.get("closePrice")            pct_raw = day_info.get("amplitudeProportion")            if close_raw is None or pct_raw is None:                content = "-"                daily_map[d] = content                continue            close = float(close_raw)            pct = float(pct_raw)            content = f"{close:.2f}({pct:.2f})"            # 涨跌幅超±9.95%标红加粗            if abs(pct) >= 9.95:                content = f'<span style="color:red;font-weight:bold">{content}</span>'            daily_map[d] = content        # 拼装一行tr        html += f"<tr><td>{code}</td><td>{name}</td>"        for day in date_str_list:            cell_content = daily_map.get(day, "")            html += f"<td>{cell_content}</td>"        html += "</tr>"    html += "</tbody></table>"    return html# ===================== 页面主体 =====================def main():    st.title("📊 金亥跃江_股票池历史行情矩阵")    st.divider()    # 默认时间区间:近7天    today = date.today()    week_before = today - timedelta(days=7)    with st.container(border=True):        c1, c2, c3, c4 = st.columns([2, 3, 2, 2])        pool_map = {item["name"]: item["code"] for item in POOL_TYPES}        with c1:            pool_name = st.selectbox("股票池类型", list(pool_map.keys()))            pool_code = pool_map[pool_name]        with c2:            search_key = st.text_input("股票编码搜索", placeholder="输入000975可精准查找个股")        with c3:            s_date = st.date_input("开始日期", value=week_before)        with c4:            e_date = st.date_input("结束日期", value=today)    col_q1, col_q2, col_q3 = st.columns([1,1,2])    with col_q1:        page = st.number_input("页码", min_value=1, value=1)    with col_q2:        page_size = st.selectbox("每页数量", [10,20,30,50], index=1)    with col_q3:        query_btn = st.button("🔍 生成矩阵表格", type="primary")    st.divider()    if query_btn:        with st.spinner("正在拉取数据并生成日期矩阵表格..."):            stock_list, total_count, update_time = request_stock_data(                page_num=page,                page_size=page_size,                pool_type=pool_code,                keywords=search_key,                start_dt=s_date,                end_dt=e_date            )        if not stock_list:            st.info("暂无匹配数据,请修改筛选条件(日期区间/股票池/股票代码)重试")            return        st.success(f"✅ 查询完成 | 日期范围:{s_date} ~ {e_date} | 总计匹配股票:{total_count}只 | 数据更新时间:{update_time}")        st.divider()        table_html = build_html_table(stock_list, s_date, e_date)        st.markdown(table_html, unsafe_allow_html=True)    st.caption("说明:单元格格式=收盘价(涨跌幅%),±10%涨跌停文字标红;无数据单元格显示横线")if __name__ == "__main__":    main()

运行前 需要先安装一下 依赖

pip install streamlit requests pandas -i https://pypi.tuna.tsinghua.edu.cn/simple

运行方式是:

streamlit run stock_pool_history.py

Google 浏览器会自动打开

免责声明:本文仅供技术交流,不构成任何投资建议。股市有风险,投资需谨慎。

如果你觉得这篇文章说到了心坎里,请点个“在看”,点个关注,并转发给身边的朋友,让更多人支持小亥!

#Python量化   #股票量化  #股票池 #历史股票池数据  #金亥跃江聊量化 #金亥跃江

最新文章

随机文章

基本 文件 流程 错误 SQL 调试
  1. 请求信息 : 2026-08-21 19:57:59 HTTP/2.0 GET : https://f.mffb.com.cn/a/508679.html
  2. 运行时间 : 0.197984s [ 吞吐率:5.05req/s ] 内存消耗:4,402.30kb 文件加载:140
  3. 缓存信息 : 0 reads,0 writes
  4. 会话信息 : SESSION_ID=9a4df0c615a6a11fd5ba16b9ed168347
  1. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/public/index.php ( 0.79 KB )
  2. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/autoload.php ( 0.17 KB )
  3. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/composer/autoload_real.php ( 2.49 KB )
  4. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/composer/platform_check.php ( 0.90 KB )
  5. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/composer/ClassLoader.php ( 14.03 KB )
  6. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/composer/autoload_static.php ( 4.90 KB )
  7. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-helper/src/helper.php ( 8.34 KB )
  8. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-validate/src/helper.php ( 2.19 KB )
  9. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/helper.php ( 1.47 KB )
  10. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/stubs/load_stubs.php ( 0.16 KB )
  11. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Exception.php ( 1.69 KB )
  12. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-container/src/Facade.php ( 2.71 KB )
  13. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/symfony/deprecation-contracts/function.php ( 0.99 KB )
  14. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/symfony/polyfill-mbstring/bootstrap.php ( 8.26 KB )
  15. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/symfony/polyfill-mbstring/bootstrap80.php ( 9.78 KB )
  16. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/symfony/var-dumper/Resources/functions/dump.php ( 1.49 KB )
  17. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-dumper/src/helper.php ( 0.18 KB )
  18. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/symfony/var-dumper/VarDumper.php ( 4.30 KB )
  19. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/App.php ( 15.30 KB )
  20. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-container/src/Container.php ( 15.76 KB )
  21. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/psr/container/src/ContainerInterface.php ( 1.02 KB )
  22. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/app/provider.php ( 0.19 KB )
  23. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Http.php ( 6.04 KB )
  24. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-helper/src/helper/Str.php ( 7.29 KB )
  25. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Env.php ( 4.68 KB )
  26. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/app/common.php ( 0.03 KB )
  27. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/helper.php ( 18.78 KB )
  28. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Config.php ( 5.54 KB )
  29. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/app.php ( 0.95 KB )
  30. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/cache.php ( 0.78 KB )
  31. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/console.php ( 0.23 KB )
  32. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/cookie.php ( 0.56 KB )
  33. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/database.php ( 2.48 KB )
  34. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/facade/Env.php ( 1.67 KB )
  35. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/filesystem.php ( 0.61 KB )
  36. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/lang.php ( 0.91 KB )
  37. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/log.php ( 1.35 KB )
  38. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/middleware.php ( 0.19 KB )
  39. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/route.php ( 1.89 KB )
  40. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/session.php ( 0.57 KB )
  41. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/trace.php ( 0.34 KB )
  42. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/view.php ( 0.82 KB )
  43. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/app/event.php ( 0.25 KB )
  44. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Event.php ( 7.67 KB )
  45. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/app/service.php ( 0.13 KB )
  46. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/app/AppService.php ( 0.26 KB )
  47. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Service.php ( 1.64 KB )
  48. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Lang.php ( 7.35 KB )
  49. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/lang/zh-cn.php ( 13.70 KB )
  50. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/initializer/Error.php ( 3.31 KB )
  51. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/initializer/RegisterService.php ( 1.33 KB )
  52. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/services.php ( 0.14 KB )
  53. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/service/PaginatorService.php ( 1.52 KB )
  54. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/service/ValidateService.php ( 0.99 KB )
  55. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/service/ModelService.php ( 2.04 KB )
  56. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-trace/src/Service.php ( 0.77 KB )
  57. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Middleware.php ( 6.72 KB )
  58. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/initializer/BootService.php ( 0.77 KB )
  59. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/Paginator.php ( 11.86 KB )
  60. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-validate/src/Validate.php ( 63.20 KB )
  61. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/Model.php ( 23.55 KB )
  62. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/model/concern/Attribute.php ( 21.05 KB )
  63. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/model/concern/AutoWriteData.php ( 4.21 KB )
  64. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/model/concern/Conversion.php ( 6.44 KB )
  65. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/model/concern/DbConnect.php ( 5.16 KB )
  66. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/model/concern/ModelEvent.php ( 2.33 KB )
  67. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/model/concern/RelationShip.php ( 28.29 KB )
  68. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-helper/src/contract/Arrayable.php ( 0.09 KB )
  69. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-helper/src/contract/Jsonable.php ( 0.13 KB )
  70. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/model/contract/Modelable.php ( 0.09 KB )
  71. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Db.php ( 2.88 KB )
  72. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/DbManager.php ( 8.52 KB )
  73. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Log.php ( 6.28 KB )
  74. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Manager.php ( 3.92 KB )
  75. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/psr/log/src/LoggerTrait.php ( 2.69 KB )
  76. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/psr/log/src/LoggerInterface.php ( 2.71 KB )
  77. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Cache.php ( 4.92 KB )
  78. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/psr/simple-cache/src/CacheInterface.php ( 4.71 KB )
  79. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-helper/src/helper/Arr.php ( 16.63 KB )
  80. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/cache/driver/File.php ( 7.84 KB )
  81. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/cache/Driver.php ( 9.03 KB )
  82. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/contract/CacheHandlerInterface.php ( 1.99 KB )
  83. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/app/Request.php ( 0.09 KB )
  84. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Request.php ( 55.78 KB )
  85. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/app/middleware.php ( 0.25 KB )
  86. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Pipeline.php ( 2.61 KB )
  87. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-trace/src/TraceDebug.php ( 3.40 KB )
  88. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/middleware/SessionInit.php ( 1.94 KB )
  89. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Session.php ( 1.80 KB )
  90. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/session/driver/File.php ( 6.27 KB )
  91. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/contract/SessionHandlerInterface.php ( 0.87 KB )
  92. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/session/Store.php ( 7.12 KB )
  93. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Route.php ( 23.73 KB )
  94. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/route/RuleName.php ( 5.75 KB )
  95. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/route/Domain.php ( 2.53 KB )
  96. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/route/RuleGroup.php ( 22.43 KB )
  97. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/route/Rule.php ( 26.95 KB )
  98. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/route/RuleItem.php ( 9.78 KB )
  99. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/route/app.php ( 1.72 KB )
  100. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/facade/Route.php ( 4.70 KB )
  101. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/route/dispatch/Controller.php ( 4.74 KB )
  102. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/route/Dispatch.php ( 10.44 KB )
  103. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/app/controller/Index.php ( 4.81 KB )
  104. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/app/BaseController.php ( 2.05 KB )
  105. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/facade/Db.php ( 0.93 KB )
  106. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/connector/Mysql.php ( 5.44 KB )
  107. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/PDOConnection.php ( 52.47 KB )
  108. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/Connection.php ( 8.39 KB )
  109. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/ConnectionInterface.php ( 4.57 KB )
  110. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/builder/Mysql.php ( 16.58 KB )
  111. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/Builder.php ( 24.06 KB )
  112. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/BaseBuilder.php ( 27.50 KB )
  113. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/Query.php ( 15.71 KB )
  114. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/BaseQuery.php ( 45.13 KB )
  115. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/concern/TimeFieldQuery.php ( 7.43 KB )
  116. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/concern/AggregateQuery.php ( 3.26 KB )
  117. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/concern/ModelRelationQuery.php ( 20.07 KB )
  118. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/concern/ParamsBind.php ( 3.66 KB )
  119. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/concern/ResultOperation.php ( 7.01 KB )
  120. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/concern/WhereQuery.php ( 19.37 KB )
  121. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/concern/JoinAndViewQuery.php ( 7.11 KB )
  122. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/concern/TableFieldInfo.php ( 2.63 KB )
  123. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/concern/Transaction.php ( 2.77 KB )
  124. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/log/driver/File.php ( 5.96 KB )
  125. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/contract/LogHandlerInterface.php ( 0.86 KB )
  126. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/log/Channel.php ( 3.89 KB )
  127. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/event/LogRecord.php ( 1.02 KB )
  128. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-helper/src/Collection.php ( 16.47 KB )
  129. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/facade/View.php ( 1.70 KB )
  130. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/View.php ( 4.39 KB )
  131. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Response.php ( 8.81 KB )
  132. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/response/View.php ( 3.29 KB )
  133. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Cookie.php ( 6.06 KB )
  134. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-view/src/Think.php ( 8.38 KB )
  135. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/contract/TemplateHandlerInterface.php ( 1.60 KB )
  136. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-template/src/Template.php ( 46.61 KB )
  137. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-template/src/template/driver/File.php ( 2.41 KB )
  138. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-template/src/template/contract/DriverInterface.php ( 0.86 KB )
  139. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/runtime/temp/067d451b9a0c665040f3f1bdd3293d68.php ( 11.98 KB )
  140. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-trace/src/Html.php ( 4.42 KB )
  1. CONNECT:[ UseTime:0.000903s ] mysql:host=127.0.0.1;port=3306;dbname=f_mffb;charset=utf8mb4
  2. SHOW FULL COLUMNS FROM `fenlei` [ RunTime:0.001513s ]
  3. SELECT * FROM `fenlei` WHERE `fid` = 0 [ RunTime:0.000690s ]
  4. SELECT * FROM `fenlei` WHERE `fid` = 63 [ RunTime:0.000653s ]
  5. SHOW FULL COLUMNS FROM `set` [ RunTime:0.001371s ]
  6. SELECT * FROM `set` [ RunTime:0.000541s ]
  7. SHOW FULL COLUMNS FROM `article` [ RunTime:0.001459s ]
  8. SELECT * FROM `article` WHERE `id` = 508679 LIMIT 1 [ RunTime:0.001260s ]
  9. UPDATE `article` SET `lasttime` = 1787313479 WHERE `id` = 508679 [ RunTime:0.005079s ]
  10. SELECT * FROM `fenlei` WHERE `id` = 66 LIMIT 1 [ RunTime:0.000695s ]
  11. SELECT * FROM `article` WHERE `id` < 508679 ORDER BY `id` DESC LIMIT 1 [ RunTime:0.001281s ]
  12. SELECT * FROM `article` WHERE `id` > 508679 ORDER BY `id` ASC LIMIT 1 [ RunTime:0.001671s ]
  13. SELECT * FROM `article` WHERE `id` < 508679 ORDER BY `id` DESC LIMIT 10 [ RunTime:0.010231s ]
  14. SELECT * FROM `article` WHERE `id` < 508679 ORDER BY `id` DESC LIMIT 10,10 [ RunTime:0.001906s ]
  15. SELECT * FROM `article` WHERE `id` < 508679 ORDER BY `id` DESC LIMIT 20,10 [ RunTime:0.007675s ]
0.201798s